You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+29Lines changed: 29 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,6 +80,35 @@ Features:
80
80
- Supports `extended` flag on columns for optional fields
81
81
- Use `TableRenderer` class directly for column validation helpers (e.g., `--columns` flag support)
82
82
83
+
## Claude Code Skills Plugin
84
+
85
+
The `./plugins/b2c-cli/skills/` directory contains Claude Code skills that teach Claude about the CLI commands. Each skill has a `SKILL.md` file with examples and documentation.
86
+
87
+
**When modifying CLI commands:**
88
+
- Update the corresponding skill in `plugins/b2c-cli/skills/b2c-<topic>/SKILL.md` if it exists
89
+
- For breaking changes (renamed flags, removed arguments, changed behavior), update all affected examples
90
+
91
+
**Skill format:**
92
+
```markdown
93
+
---
94
+
name: b2c-<topic>
95
+
description: Brief description of what the skill teaches
96
+
---
97
+
98
+
# B2C <Topic> Skill
99
+
100
+
Overview of the command topic.
101
+
102
+
## Examples
103
+
104
+
### <UseCase>
105
+
106
+
\`\`\`bash
107
+
# comment explaining the command
108
+
b2c <topic> <command> [args][flags]
109
+
\`\`\`
110
+
```
111
+
83
112
## Testing
84
113
85
114
Tests use Mocha + Chai with c8 for coverage. HTTP mocking uses MSW (Mock Service Worker).
0 commit comments