Skip to content
Open
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ Skills can be installed to any of these agents:
| Claude Code | `claude-code` | `.claude/skills/` | `~/.claude/skills/` |
| OpenClaw | `openclaw` | `skills/` | `~/.openclaw/skills/` |
| Cline, Warp | `cline`, `warp` | `.agents/skills/` | `~/.agents/skills/` |
| CodeArts Agent | `codearts-agent` | `.codeartsdoer/skills/` | `~/.codeartsdoer/skills/` |
| CodeBuddy | `codebuddy` | `.codebuddy/skills/` | `~/.codebuddy/skills/` |
| Codex | `codex` | `.agents/skills/` | `~/.codex/skills/` |
| Command Code | `command-code` | `.commandcode/skills/` | `~/.commandcode/skills/` |
Expand Down
9 changes: 9 additions & 0 deletions src/agents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,15 @@ export const agents: Record<AgentType, AgentConfig> = {
return existsSync(join(home, '.cline'));
},
},
'codearts-agent': {
name: 'codearts-agent',
displayName: 'CodeArts Agent',
skillsDir: '.codeartsdoer/skills',
globalSkillsDir: join(home, '.codeartsdoer/skills'),
detectInstalled: async () => {
return existsSync(join(home, '.codeartsdoer'));
},
},
codebuddy: {
name: 'codebuddy',
displayName: 'CodeBuddy',
Expand Down
1 change: 1 addition & 0 deletions src/skills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ export async function discoverSkills(
join(searchPath, '.agents/skills'),
join(searchPath, '.claude/skills'),
join(searchPath, '.cline/skills'),
join(searchPath, '.codeartsdoer/skills'),
join(searchPath, '.codebuddy/skills'),
join(searchPath, '.codex/skills'),
join(searchPath, '.commandcode/skills'),
Expand Down
1 change: 1 addition & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export type AgentType =
| 'claude-code'
| 'openclaw'
| 'cline'
| 'codearts-agent'
| 'codebuddy'
| 'codex'
| 'command-code'
Expand Down