CSS Modern Features Agent Skill: Enforce Modern CSS Practices in AI Coding Agents

There's a new agent skill on GitHub called css-modern-features that enforces modern CSS practices based on your project's browser targets. It covers 57+ CSS features across color, layout, selectors, animation, typography, positioning, and component patterns.
How It Works
The skill hooks into AI coding agents and restricts CSS output to only modern, browser-target-appropriate features. For example, if your project targets modern browsers, it would prefer display: grid over float-based layouts, clamp() for fluid typography, and :has() for parent selection. You define the browser targets, and the skill adjusts which features are allowed.
Supported Agents
The skill works with:
- Claude Code
- Cursor
- Windsurf
- Codex
- Cline
- GitHub Copilot
Why This Matters
AI coding agents frequently generate outdated CSS (e.g., float, clearfix, vendor prefixes) because their training data includes old code. This skill forces them to stick to modern features, saving you from manual refactoring. It's particularly useful for teams maintaining codebases that must target specific browser versions (e.g., 'last 2 versions' via Browserslist).
Repo: github.com/rushenn/css-modern-features
The Reddit thread (linked below) has additional community discussion on customizing the feature set.
📖 Read the full source: r/ClaudeAI
👀 See Also

Unveiling OpenClaw: How It Empowers AI Coding Agents
Discover how OpenClaw is transforming AI coding agents, driving automation across various domains.

Flue: A TypeScript Framework for Building Autonomous Coding Agents
Flue is a TypeScript framework that provides a programmable harness for building autonomous agents, featuring skills, sessions, sandboxed shell execution, and a built-in virtual sandbox. It can replace tools like Dosu, Greptile, CodeRabbit, Devin, and Claude Code with custom agent logic.

OpenClaw users report planning and review bottlenecks with AI agents
OpenClaw users describe planning and review workflows as 'MS-DOS-like' despite effective code generation, citing manual intervention, document fragmentation, and loss of reasoning during agent collaboration. Some are experimenting with agent-native document editors like comment.io and Proof by Every.

OpenClaw Guild: Multi-user AI agent server for teams
OpenClaw Guild extends single-user OpenClaw into a multi-user AI server with role-based access control, isolated data per agent, and a 4-tier memory system. It includes a web admin dashboard and Docker-compose deployment for 15-minute setup.