Pre-configured agent skills for Vibe Coded projects. These skills provide AI coding assistants (Claude Code, Cursor, etc.) with specific guidelines for code quality and design standards.
# Add to your Claude Code skills
git clone https://github.com/wednesday-solutions/ai-agent-skillsPre-configured agent skills for Wednesday Solutions projects. These skills provide AI coding assistants (Claude Code, Cursor, etc.) with project-specific guidelines for code quality and design standards.
| Skill | Description |
|-------|-------------|
| wednesday-dev | Technical development guidelines (imports, complexity, naming) |
| wednesday-design | Design & UX guidelines (tokens, animations, components) |
Install globally to use the wednesday-skills command anywhere:
npm install -g @wednesday-solutions-eng/ai-agent-skills
Then run in your project directory:
wednesday-skills install
Run directly without installing:
npx @wednesday-solutions-eng/ai-agent-skills install
No comments yet. Be the first to share your thoughts!
The CLI does two things:
.wednesday/skills/CLAUDE.md - For Claude Code.cursorrules - For Cursor.github/copilot-instructions.md - For GitHub CopilotThis ensures your AI assistants actively know about the skills and will use them.
# Install skills AND configure all agents (recommended)
wednesday-skills install
# Install skills to a specific directory
wednesday-skills install ./my-project
# Install skills without configuring agents
wednesday-skills install --skip-config
# Configure agents for already-installed skills
wednesday-skills configure
# Configure only a specific agent (claude, cursor, or copilot)
wednesday-skills configure . claude
# List available skills
wednesday-skills list
# Show help
wednesday-skills help
your-project/
├── CLAUDE.md # Claude Code configuration
├── .cursorrules # Cursor configuration
├── .github/
│ └── copilot-instructions.md # GitHub Copilot configuration
├── .wednesday/
│ └── skills/
│ ├── wednesday-dev/
│ │ ├── SKILL.md
│ │ └── references/
│ │ ├── COMPLEXITY.md
│ │ └── NAMING.md
│ └── wednesday-design/
│ ├── SKILL.md
│ └── references/
│ ├── COMPONENT-LIBRARY.md
│ ├── TOKENS.md
│ ├── ANIMATIONS.md
│ └── COMPONENTS.md
├── src/
├── package.json
└── ...
...