Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ You have skills available.

**Identify Your Agent Type:**
You are one of the following AI coding agents:
- **Cline** → config dir: `~/.cline`
- **Codex** (Cursor's AI) → config dir: `~/.codex`
- **Cursor** → config dir: `~/.cursor`
- **Kiro** → config dir: `~/.kiro`
Expand Down Expand Up @@ -113,6 +114,7 @@ When you detect that setup is needed (missing skills/agents directories or `list
### Listing Available Skills

Once setup is complete, list your skills by running the list-skills command with your agent's skills directory:
- **Cline**: `list-skills ~/.cline/skills`
- **Codex**: `list-skills ~/.codex/skills`
- **Cursor**: `list-skills ~/.cursor/skills`
- **Kiro**: `list-skills ~/.kiro/skills`
Expand Down Expand Up @@ -153,6 +155,7 @@ The system supports custom specialized agents stored in agent-specific directori

### Agent Directories by Platform

- **Cline**: `~/.cline/agents/`
- **Codex**: `~/.codex/agents/`
- **Cursor**: `~/.cursor/agents/`
- **Kiro**: `~/.kiro/agents/`
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## [Unreleased]

### Added
- Cross-agent skills support for Claude Code, Codex, Cursor, Windsurf, and GitHub Copilot
- Cross-agent skills support for Claude Code, Codex, Cursor, Windsurf, Cline, and GitHub Copilot
- Universal `list-skills` enumeration script (Node.js)
- Comprehensive SKILLS_SETUP.md with agent-specific installation instructions
- Skills boot sequence in AGENTS.md (root, backend, frontend)
Expand Down
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AI Agent Development System

**Pre-configured toolkit that gives AI agents your project context, proven workflows, and autonomous execution capabilities. Give your AI agents access to sub-agents and skills in minutes. Support for Claude Code, Github Copilot, Cursor, Codex, Windsurf, and Kiro.**
**Pre-configured toolkit that gives AI agents your project context, proven workflows, and autonomous execution capabilities. Give your AI agents access to sub-agents and skills in minutes. Support for Claude Code, Github Copilot, Cursor, Codex, Windsurf, Kiro, and Cline for both Mac and Windows users.**

## Core Components

Expand Down Expand Up @@ -67,6 +67,14 @@ The agent will:

**Note:** Claude Code has native skills support and auto-detects when to install.

**For Cline Users:** After the agent populates AGENTS.md with your project context, you need to add it to Cline's global rules so it's available in every conversation:
- **Via UI**: Click the `+` button in Cline's Rules tab, then copy the contents of AGENTS.md into the new rule file
- **Via CLI**: Copy AGENTS.md to your global rules directory:
- **macOS/Linux**: `cp AGENTS.md ~/Documents/Cline/Rules/`
- **Windows**: `copy AGENTS.md %USERPROFILE%\Documents\Cline\Rules\`

For more details, see [Cline Rules documentation](https://docs.cline.bot/features/cline-rules).

---

## Ralph Wiggum Method: Autonomous Execution
Expand Down Expand Up @@ -163,7 +171,7 @@ Agent auto-generates execution plans:
| **.mcp.json** | Model Context Protocol configuration | Optional |
| **.vscode/** | VSCode settings for AI agents | Optional |

*Use CLAUDE.md for Claude Code OR AGENTS.md for other agents (Cursor, Kiro, Windsurf, GitHub Copilot, Codex)
*Use CLAUDE.md for Claude Code OR AGENTS.md for other agents (Cursor, Kiro, Windsurf, GitHub Copilot, Codex, Cline)

**How specs/ works:**
- Agent auto-generates execution plans in `specs/` when features are complex
Expand Down Expand Up @@ -198,7 +206,7 @@ Agent auto-generates execution plans:
A: Yes! Copy the required files (AGENTS.md/CLAUDE.md and specs/) to your project root, then tell your agent: *"Set up agent instructions, skills, and sub-agent support for this project"*. The agent will analyze your codebase and populate the templates automatically.

**Q: Which file should I use - AGENTS.md or CLAUDE.md?**
A: Use `CLAUDE.md` for Claude Code (includes ExecPlan workflow). Use `AGENTS.md` for other agents (Cursor, Kiro, Windsurf, GitHub Copilot, Codex).
A: Use `CLAUDE.md` for Claude Code (includes ExecPlan workflow). Use `AGENTS.md` for other agents (Cursor, Kiro, Windsurf, GitHub Copilot, Codex, Cline).

**Q: Do I need to write execution plans manually?**
A: No. The agent auto-generates plans in `specs/` only when needed for complex features. Simple tasks execute immediately using TDD. The agent uses `specs/PLANS.md` as a template when creating new execution plans.
Expand Down