oh-my-customcode 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +287 -0
- package/dist/cli/index.js +13299 -0
- package/dist/index.js +927 -0
- package/package.json +74 -0
- package/templates/.claude/contexts/dev.md +20 -0
- package/templates/.claude/contexts/ecomode.md +63 -0
- package/templates/.claude/contexts/index.yaml +41 -0
- package/templates/.claude/contexts/research.md +28 -0
- package/templates/.claude/contexts/review.md +23 -0
- package/templates/.claude/hooks/hooks.json +185 -0
- package/templates/.claude/hooks/hud/index.yaml +27 -0
- package/templates/.claude/hooks/hud/update-status.sh +32 -0
- package/templates/.claude/hooks/index.yaml +46 -0
- package/templates/.claude/hooks/memory-persistence/pre-compact.sh +37 -0
- package/templates/.claude/hooks/memory-persistence/session-end.sh +64 -0
- package/templates/.claude/hooks/memory-persistence/session-start.sh +41 -0
- package/templates/.claude/hooks/strategic-compact/suggest-compact.sh +50 -0
- package/templates/.claude/install-hooks.sh +100 -0
- package/templates/.claude/rules/MAY-optimization.md +93 -0
- package/templates/.claude/rules/MUST-agent-design.md +107 -0
- package/templates/.claude/rules/MUST-agent-identification.md +108 -0
- package/templates/.claude/rules/MUST-continuous-improvement.md +132 -0
- package/templates/.claude/rules/MUST-intent-transparency.md +199 -0
- package/templates/.claude/rules/MUST-language-policy.md +62 -0
- package/templates/.claude/rules/MUST-orchestrator-coordination.md +266 -0
- package/templates/.claude/rules/MUST-parallel-execution.md +341 -0
- package/templates/.claude/rules/MUST-permissions.md +84 -0
- package/templates/.claude/rules/MUST-safety.md +69 -0
- package/templates/.claude/rules/MUST-sync-verification.md +219 -0
- package/templates/.claude/rules/MUST-tool-identification.md +112 -0
- package/templates/.claude/rules/SHOULD-ecomode.md +145 -0
- package/templates/.claude/rules/SHOULD-error-handling.md +102 -0
- package/templates/.claude/rules/SHOULD-hud-statusline.md +89 -0
- package/templates/.claude/rules/SHOULD-interaction.md +103 -0
- package/templates/.claude/rules/SHOULD-memory-integration.md +114 -0
- package/templates/.claude/rules/SHOULD-pipeline-mode.md +165 -0
- package/templates/.claude/rules/index.yaml +125 -0
- package/templates/.claude/uninstall-hooks.sh +52 -0
- package/templates/CLAUDE.md.en +259 -0
- package/templates/CLAUDE.md.ko +259 -0
- package/templates/agents/index.yaml +237 -0
- package/templates/agents/infra-engineer/aws-expert/AGENT.md +47 -0
- package/templates/agents/infra-engineer/aws-expert/index.yaml +27 -0
- package/templates/agents/infra-engineer/docker-expert/AGENT.md +47 -0
- package/templates/agents/infra-engineer/docker-expert/index.yaml +27 -0
- package/templates/agents/manager/creator/AGENT.md +274 -0
- package/templates/agents/manager/creator/index.yaml +66 -0
- package/templates/agents/manager/gitnerd/AGENT.md +91 -0
- package/templates/agents/manager/gitnerd/index.yaml +55 -0
- package/templates/agents/manager/sauron/AGENT.md +153 -0
- package/templates/agents/manager/sauron/index.yaml +52 -0
- package/templates/agents/manager/supplier/AGENT.md +142 -0
- package/templates/agents/manager/supplier/index.yaml +31 -0
- package/templates/agents/manager/sync-checker/AGENT.md +34 -0
- package/templates/agents/manager/sync-checker/index.yaml +32 -0
- package/templates/agents/manager/updater/AGENT.md +125 -0
- package/templates/agents/manager/updater/index.yaml +31 -0
- package/templates/agents/orchestrator/dev-lead/AGENT.md +116 -0
- package/templates/agents/orchestrator/dev-lead/index.yaml +73 -0
- package/templates/agents/orchestrator/planner/AGENT.md +102 -0
- package/templates/agents/orchestrator/planner/index.yaml +38 -0
- package/templates/agents/orchestrator/qa-lead/AGENT.md +92 -0
- package/templates/agents/orchestrator/qa-lead/index.yaml +40 -0
- package/templates/agents/orchestrator/secretary/AGENT.md +132 -0
- package/templates/agents/orchestrator/secretary/index.yaml +55 -0
- package/templates/agents/qa-team/qa-engineer/AGENT.md +98 -0
- package/templates/agents/qa-team/qa-engineer/index.yaml +59 -0
- package/templates/agents/qa-team/qa-planner/AGENT.md +75 -0
- package/templates/agents/qa-team/qa-planner/index.yaml +47 -0
- package/templates/agents/qa-team/qa-writer/AGENT.md +98 -0
- package/templates/agents/qa-team/qa-writer/index.yaml +44 -0
- package/templates/agents/sw-architect/documenter/AGENT.md +120 -0
- package/templates/agents/sw-architect/documenter/index.yaml +39 -0
- package/templates/agents/sw-architect/speckit-agent/AGENT.md +127 -0
- package/templates/agents/sw-architect/speckit-agent/index.yaml +78 -0
- package/templates/agents/sw-engineer/backend/express-expert/AGENT.md +132 -0
- package/templates/agents/sw-engineer/backend/express-expert/index.yaml +36 -0
- package/templates/agents/sw-engineer/backend/fastapi-expert/AGENT.md +47 -0
- package/templates/agents/sw-engineer/backend/fastapi-expert/index.yaml +27 -0
- package/templates/agents/sw-engineer/backend/go-backend-expert/AGENT.md +47 -0
- package/templates/agents/sw-engineer/backend/go-backend-expert/index.yaml +27 -0
- package/templates/agents/sw-engineer/backend/nestjs-expert/AGENT.md +107 -0
- package/templates/agents/sw-engineer/backend/nestjs-expert/index.yaml +43 -0
- package/templates/agents/sw-engineer/backend/springboot-expert/AGENT.md +103 -0
- package/templates/agents/sw-engineer/backend/springboot-expert/index.yaml +69 -0
- package/templates/agents/sw-engineer/frontend/svelte-agent/AGENT.md +71 -0
- package/templates/agents/sw-engineer/frontend/svelte-agent/index.yaml +41 -0
- package/templates/agents/sw-engineer/frontend/vercel-agent/AGENT.md +67 -0
- package/templates/agents/sw-engineer/frontend/vercel-agent/index.yaml +43 -0
- package/templates/agents/sw-engineer/frontend/vuejs-agent/AGENT.md +71 -0
- package/templates/agents/sw-engineer/frontend/vuejs-agent/index.yaml +48 -0
- package/templates/agents/sw-engineer/language/golang-expert/AGENT.md +47 -0
- package/templates/agents/sw-engineer/language/golang-expert/index.yaml +27 -0
- package/templates/agents/sw-engineer/language/java21-expert/AGENT.md +122 -0
- package/templates/agents/sw-engineer/language/java21-expert/index.yaml +51 -0
- package/templates/agents/sw-engineer/language/kotlin-expert/AGENT.md +47 -0
- package/templates/agents/sw-engineer/language/kotlin-expert/index.yaml +27 -0
- package/templates/agents/sw-engineer/language/python-expert/AGENT.md +47 -0
- package/templates/agents/sw-engineer/language/python-expert/index.yaml +27 -0
- package/templates/agents/sw-engineer/language/rust-expert/AGENT.md +47 -0
- package/templates/agents/sw-engineer/language/rust-expert/index.yaml +27 -0
- package/templates/agents/sw-engineer/language/typescript-expert/AGENT.md +47 -0
- package/templates/agents/sw-engineer/language/typescript-expert/index.yaml +27 -0
- package/templates/agents/sw-engineer/tooling/bun-expert/AGENT.md +73 -0
- package/templates/agents/sw-engineer/tooling/bun-expert/index.yaml +46 -0
- package/templates/agents/sw-engineer/tooling/npm-expert/AGENT.md +160 -0
- package/templates/agents/sw-engineer/tooling/npm-expert/index.yaml +45 -0
- package/templates/agents/sw-engineer/tooling/optimizer/AGENT.md +170 -0
- package/templates/agents/sw-engineer/tooling/optimizer/index.yaml +45 -0
- package/templates/agents/system/memory-keeper/AGENT.md +126 -0
- package/templates/agents/system/memory-keeper/index.yaml +45 -0
- package/templates/agents/system/naggy/AGENT.md +72 -0
- package/templates/agents/system/naggy/index.yaml +35 -0
- package/templates/commands/COMMANDS.md +136 -0
- package/templates/commands/creator/agent.md +121 -0
- package/templates/commands/dev/refactor.md +126 -0
- package/templates/commands/dev/review.md +82 -0
- package/templates/commands/git/branch.yaml +8 -0
- package/templates/commands/git/commit.yaml +4 -0
- package/templates/commands/git/pr.yaml +4 -0
- package/templates/commands/git/status.yaml +4 -0
- package/templates/commands/git/sync.yaml +4 -0
- package/templates/commands/index.yaml +225 -0
- package/templates/commands/intent/explain.md +144 -0
- package/templates/commands/memory/recall.md +164 -0
- package/templates/commands/memory/save.md +128 -0
- package/templates/commands/naggy/add.yaml +8 -0
- package/templates/commands/naggy/done.yaml +8 -0
- package/templates/commands/naggy/list.yaml +4 -0
- package/templates/commands/naggy/priority.yaml +11 -0
- package/templates/commands/naggy/remind.yaml +4 -0
- package/templates/commands/npm/audit.yaml +62 -0
- package/templates/commands/npm/publish.yaml +52 -0
- package/templates/commands/npm/version.yaml +62 -0
- package/templates/commands/optimize/analyze.yaml +34 -0
- package/templates/commands/optimize/bundle.yaml +50 -0
- package/templates/commands/optimize/report.yaml +56 -0
- package/templates/commands/pipeline/list.md +81 -0
- package/templates/commands/pipeline/run.md +127 -0
- package/templates/commands/sauron/quick.yaml +4 -0
- package/templates/commands/sauron/report.yaml +4 -0
- package/templates/commands/sauron/watch.yaml +4 -0
- package/templates/commands/supplier/audit.md +133 -0
- package/templates/commands/supplier/fix.md +121 -0
- package/templates/commands/sync/agents.yaml +4 -0
- package/templates/commands/sync/check.yaml +4 -0
- package/templates/commands/sync/commands.yaml +4 -0
- package/templates/commands/sync/docs.yaml +4 -0
- package/templates/commands/sync/fix.yaml +4 -0
- package/templates/commands/system/help.md +137 -0
- package/templates/commands/system/lists.md +86 -0
- package/templates/commands/system/status.md +163 -0
- package/templates/commands/updater/docs.md +165 -0
- package/templates/commands/updater/external.md +214 -0
- package/templates/guides/aws/common-patterns.md +169 -0
- package/templates/guides/aws/index.yaml +26 -0
- package/templates/guides/aws/well-architected.md +143 -0
- package/templates/guides/claude-code/01-overview.md +42 -0
- package/templates/guides/claude-code/03-tools.md +107 -0
- package/templates/guides/claude-code/04-agent-skills.md +90 -0
- package/templates/guides/claude-code/05-agent-sdk.md +129 -0
- package/templates/guides/claude-code/06-mcp.md +165 -0
- package/templates/guides/claude-code/07-prompt-engineering.md +100 -0
- package/templates/guides/claude-code/08-testing.md +58 -0
- package/templates/guides/claude-code/09-guardrails.md +80 -0
- package/templates/guides/claude-code/10-monitoring.md +89 -0
- package/templates/guides/claude-code/index.yaml +51 -0
- package/templates/guides/docker/compose-best-practices.md +284 -0
- package/templates/guides/docker/dockerfile-best-practices.md +262 -0
- package/templates/guides/docker/index.yaml +26 -0
- package/templates/guides/fastapi/best-practices.md +232 -0
- package/templates/guides/fastapi/index.yaml +21 -0
- package/templates/guides/go-backend/index.yaml +26 -0
- package/templates/guides/go-backend/project-layout.md +243 -0
- package/templates/guides/go-backend/uber-style.md +212 -0
- package/templates/guides/golang/concurrency.md +282 -0
- package/templates/guides/golang/effective-go.md +309 -0
- package/templates/guides/golang/error-handling.md +250 -0
- package/templates/guides/golang/index.yaml +27 -0
- package/templates/guides/index.yaml +101 -0
- package/templates/guides/kotlin/coding-conventions.md +247 -0
- package/templates/guides/kotlin/idioms.md +234 -0
- package/templates/guides/kotlin/index.yaml +26 -0
- package/templates/guides/python/index.yaml +26 -0
- package/templates/guides/python/pep8-style-guide.md +202 -0
- package/templates/guides/python/zen-of-python.md +79 -0
- package/templates/guides/rust/error-handling.md +262 -0
- package/templates/guides/rust/index.yaml +26 -0
- package/templates/guides/rust/ownership.md +180 -0
- package/templates/guides/springboot/best-practices.md +361 -0
- package/templates/guides/springboot/index.yaml +22 -0
- package/templates/guides/typescript/advanced-types.md +225 -0
- package/templates/guides/typescript/index.yaml +26 -0
- package/templates/guides/typescript/type-system.md +219 -0
- package/templates/guides/web-design/accessibility.md +66 -0
- package/templates/guides/web-design/index.yaml +20 -0
- package/templates/guides/web-design/performance.md +102 -0
- package/templates/pipelines/examples/code-review.yaml +66 -0
- package/templates/pipelines/index.yaml +18 -0
- package/templates/pipelines/templates/pipeline-template.yaml +50 -0
- package/templates/skills/backend/fastapi-best-practices/SKILL.md +269 -0
- package/templates/skills/backend/fastapi-best-practices/index.yaml +25 -0
- package/templates/skills/backend/go-backend-best-practices/SKILL.md +337 -0
- package/templates/skills/backend/go-backend-best-practices/index.yaml +26 -0
- package/templates/skills/backend/springboot-best-practices/SKILL.md +356 -0
- package/templates/skills/backend/springboot-best-practices/index.yaml +27 -0
- package/templates/skills/development/go-best-practices/SKILL.md +202 -0
- package/templates/skills/development/go-best-practices/index.yaml +25 -0
- package/templates/skills/development/kotlin-best-practices/SKILL.md +255 -0
- package/templates/skills/development/kotlin-best-practices/index.yaml +27 -0
- package/templates/skills/development/python-best-practices/SKILL.md +221 -0
- package/templates/skills/development/python-best-practices/index.yaml +25 -0
- package/templates/skills/development/react-best-practices/SKILL.md +100 -0
- package/templates/skills/development/react-best-practices/index.yaml +39 -0
- package/templates/skills/development/rust-best-practices/SKILL.md +266 -0
- package/templates/skills/development/rust-best-practices/index.yaml +26 -0
- package/templates/skills/development/typescript-best-practices/SKILL.md +320 -0
- package/templates/skills/development/typescript-best-practices/index.yaml +28 -0
- package/templates/skills/development/vercel-deploy/SKILL.md +73 -0
- package/templates/skills/development/vercel-deploy/index.yaml +30 -0
- package/templates/skills/development/web-design-guidelines/SKILL.md +117 -0
- package/templates/skills/development/web-design-guidelines/index.yaml +34 -0
- package/templates/skills/index.yaml +129 -0
- package/templates/skills/infrastructure/aws-best-practices/SKILL.md +279 -0
- package/templates/skills/infrastructure/aws-best-practices/index.yaml +27 -0
- package/templates/skills/infrastructure/docker-best-practices/SKILL.md +274 -0
- package/templates/skills/infrastructure/docker-best-practices/index.yaml +26 -0
- package/templates/skills/orchestration/intent-detection/SKILL.md +214 -0
- package/templates/skills/orchestration/intent-detection/index.yaml +30 -0
- package/templates/skills/orchestration/intent-detection/patterns/agent-triggers.yaml +333 -0
- package/templates/skills/orchestration/pipeline-execution/SKILL.md +188 -0
- package/templates/skills/orchestration/pipeline-execution/index.yaml +27 -0
- package/templates/skills/system/memory-management/SKILL.md +194 -0
- package/templates/skills/system/memory-management/index.yaml +30 -0
- package/templates/skills/system/result-aggregation/SKILL.md +163 -0
- package/templates/skills/system/result-aggregation/index.yaml +36 -0
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
# Command: supplier:fix
|
|
2
|
+
|
|
3
|
+
> Fix broken references
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
supplier:fix
|
|
9
|
+
supplier:fix <agent-name>
|
|
10
|
+
supplier:fix --all
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Parameters
|
|
14
|
+
|
|
15
|
+
| Name | Type | Required | Description |
|
|
16
|
+
|------|------|----------|-------------|
|
|
17
|
+
| target | string | no | Specific agent to fix |
|
|
18
|
+
|
|
19
|
+
## Options
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
--all, -a Fix all agents
|
|
23
|
+
--dry-run Show what would be fixed
|
|
24
|
+
--verbose, -v Show detailed actions
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Workflow
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
1. Run supplier:audit to identify issues
|
|
31
|
+
|
|
32
|
+
2. Fix issues:
|
|
33
|
+
├── Missing symlinks → Create
|
|
34
|
+
├── Broken symlinks → Recreate
|
|
35
|
+
├── Missing index entries → Add
|
|
36
|
+
└── Orphan refs → Remove
|
|
37
|
+
|
|
38
|
+
3. Validate fixes
|
|
39
|
+
└── Re-run supplier:audit
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Fixable Issues
|
|
43
|
+
|
|
44
|
+
| Issue | Action |
|
|
45
|
+
|-------|--------|
|
|
46
|
+
| Missing symlink | Create symlink in refs/ |
|
|
47
|
+
| Broken symlink | Delete and recreate |
|
|
48
|
+
| Missing skill ref | Add to index.yaml |
|
|
49
|
+
| Missing guide ref | Add to index.yaml |
|
|
50
|
+
| Orphan symlink | Remove from refs/ |
|
|
51
|
+
| Path mismatch | Update path in index.yaml |
|
|
52
|
+
|
|
53
|
+
## Output
|
|
54
|
+
|
|
55
|
+
### Dry Run
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
[supplier:fix kotlin-expert --dry-run]
|
|
59
|
+
|
|
60
|
+
Analyzing: kotlin-expert
|
|
61
|
+
|
|
62
|
+
Issues found:
|
|
63
|
+
1. Missing symlink: refs/kotlin → ../../../guides/kotlin/
|
|
64
|
+
|
|
65
|
+
Proposed fixes:
|
|
66
|
+
1. Create symlink:
|
|
67
|
+
cd agents/sw-engineer/kotlin-expert/refs/
|
|
68
|
+
ln -s ../../../../guides/kotlin kotlin
|
|
69
|
+
|
|
70
|
+
No changes made (dry-run mode).
|
|
71
|
+
Run without --dry-run to apply fixes.
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
### Fix Mode
|
|
75
|
+
|
|
76
|
+
```
|
|
77
|
+
[supplier:fix kotlin-expert]
|
|
78
|
+
|
|
79
|
+
Fixing: kotlin-expert
|
|
80
|
+
|
|
81
|
+
[1/2] Fixing missing symlink...
|
|
82
|
+
Creating: refs/kotlin → ../../../../guides/kotlin
|
|
83
|
+
✓ Symlink created
|
|
84
|
+
|
|
85
|
+
[2/2] Validating...
|
|
86
|
+
Running supplier:audit...
|
|
87
|
+
✓ All dependencies valid
|
|
88
|
+
|
|
89
|
+
Summary:
|
|
90
|
+
Fixed: 1 issue
|
|
91
|
+
Status: HEALTHY
|
|
92
|
+
|
|
93
|
+
Agent kotlin-expert is now healthy.
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
### Fix All
|
|
97
|
+
|
|
98
|
+
```
|
|
99
|
+
[supplier:fix --all]
|
|
100
|
+
|
|
101
|
+
Scanning all agents for issues...
|
|
102
|
+
|
|
103
|
+
Found issues in 2 agents:
|
|
104
|
+
- kotlin-expert: 1 issue
|
|
105
|
+
- new-agent: 2 issues
|
|
106
|
+
|
|
107
|
+
Fixing kotlin-expert...
|
|
108
|
+
✓ Created symlink: refs/kotlin
|
|
109
|
+
|
|
110
|
+
Fixing new-agent...
|
|
111
|
+
✓ Created symlink: refs/skill-a
|
|
112
|
+
✓ Updated index.yaml: added skill-b path
|
|
113
|
+
|
|
114
|
+
Validating all agents...
|
|
115
|
+
✓ supplier:audit --all passed
|
|
116
|
+
|
|
117
|
+
Summary:
|
|
118
|
+
Agents fixed: 2
|
|
119
|
+
Issues resolved: 3
|
|
120
|
+
All agents healthy.
|
|
121
|
+
```
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
# Command: help
|
|
2
|
+
|
|
3
|
+
> Show help information
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
help
|
|
9
|
+
help <command>
|
|
10
|
+
help --agents
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Parameters
|
|
14
|
+
|
|
15
|
+
| Name | Type | Required | Description |
|
|
16
|
+
|------|------|----------|-------------|
|
|
17
|
+
| topic | string | no | Command or topic to get help for |
|
|
18
|
+
|
|
19
|
+
## Options
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
--agents, -a List all available agents
|
|
23
|
+
--commands, -c List all commands (same as 'lists')
|
|
24
|
+
--rules, -r List all rules
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Output
|
|
28
|
+
|
|
29
|
+
### Default Help
|
|
30
|
+
|
|
31
|
+
```
|
|
32
|
+
Baekgom Agents - Help
|
|
33
|
+
|
|
34
|
+
Usage: {command} [arguments] [options]
|
|
35
|
+
|
|
36
|
+
Quick Start:
|
|
37
|
+
lists Show all available commands
|
|
38
|
+
status Show system status
|
|
39
|
+
help <command> Get help for a specific command
|
|
40
|
+
|
|
41
|
+
Common Commands:
|
|
42
|
+
updater:docs Sync documentation with project
|
|
43
|
+
updater:external Update external agents
|
|
44
|
+
supplier:audit Check agent dependencies
|
|
45
|
+
creator:agent Create a new agent
|
|
46
|
+
|
|
47
|
+
Use "lists" to see all available commands.
|
|
48
|
+
Use "help <command>" for detailed help.
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Command Help
|
|
52
|
+
|
|
53
|
+
```
|
|
54
|
+
help updater:docs
|
|
55
|
+
|
|
56
|
+
Command: updater:docs
|
|
57
|
+
|
|
58
|
+
Description:
|
|
59
|
+
Sync documentation with project structure. Ensures all
|
|
60
|
+
documentation accurately reflects the current project state.
|
|
61
|
+
|
|
62
|
+
Usage:
|
|
63
|
+
updater:docs
|
|
64
|
+
updater:docs --check
|
|
65
|
+
updater:docs --target <path>
|
|
66
|
+
|
|
67
|
+
Options:
|
|
68
|
+
--check, -c Check only, don't modify
|
|
69
|
+
--verbose, -v Show detailed changes
|
|
70
|
+
--target, -t Specific target to update
|
|
71
|
+
|
|
72
|
+
Examples:
|
|
73
|
+
updater:docs # Update all documentation
|
|
74
|
+
updater:docs --check # Check for issues
|
|
75
|
+
updater:docs --target agents # Update agents only
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
### Agent List
|
|
79
|
+
|
|
80
|
+
```
|
|
81
|
+
help --agents
|
|
82
|
+
|
|
83
|
+
Available Agents:
|
|
84
|
+
|
|
85
|
+
Orchestrator:
|
|
86
|
+
secretary Manages manager agents
|
|
87
|
+
|
|
88
|
+
Manager:
|
|
89
|
+
creator Creates new agents
|
|
90
|
+
updater Updates external sources and docs
|
|
91
|
+
supplier Validates dependencies
|
|
92
|
+
|
|
93
|
+
SW Engineer:
|
|
94
|
+
golang-expert Go development (Effective Go)
|
|
95
|
+
python-expert Python development (PEP 8)
|
|
96
|
+
rust-expert Rust development (API Guidelines)
|
|
97
|
+
kotlin-expert Kotlin development (JetBrains)
|
|
98
|
+
typescript-expert TypeScript development (Google)
|
|
99
|
+
vercel-agent React/Next.js (Vercel)
|
|
100
|
+
|
|
101
|
+
Backend Engineer:
|
|
102
|
+
fastapi-expert FastAPI (Python async)
|
|
103
|
+
springboot-expert Spring Boot (Java)
|
|
104
|
+
go-backend-expert Go backend (Uber style)
|
|
105
|
+
|
|
106
|
+
Infra Engineer:
|
|
107
|
+
docker-expert Docker containerization
|
|
108
|
+
aws-expert AWS architecture
|
|
109
|
+
|
|
110
|
+
Total: 15 agents
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
### Rules List
|
|
114
|
+
|
|
115
|
+
```
|
|
116
|
+
help --rules
|
|
117
|
+
|
|
118
|
+
Global Rules:
|
|
119
|
+
|
|
120
|
+
MUST (Never violate):
|
|
121
|
+
R000 Language Policy Korean I/O, English files
|
|
122
|
+
R001 Safety Rules Prohibited actions
|
|
123
|
+
R002 Permission Rules Tool tiers, file access
|
|
124
|
+
R006 Agent Design Structure, separation
|
|
125
|
+
|
|
126
|
+
SHOULD (Strongly recommended):
|
|
127
|
+
R003 Interaction Rules Response format
|
|
128
|
+
R004 Error Handling Error levels, recovery
|
|
129
|
+
R007 Agent Identification Display agent in responses
|
|
130
|
+
R008 Tool Identification Display agent when using tools
|
|
131
|
+
|
|
132
|
+
MAY (Optional):
|
|
133
|
+
R005 Optimization Efficiency guidelines
|
|
134
|
+
R009 Parallel Execution Max 4 parallel instances
|
|
135
|
+
|
|
136
|
+
Total: 10 rules
|
|
137
|
+
```
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
# Command: lists
|
|
2
|
+
|
|
3
|
+
> Show all available commands
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
lists
|
|
9
|
+
lists --category <category>
|
|
10
|
+
lists --verbose
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Parameters
|
|
14
|
+
|
|
15
|
+
| Name | Type | Required | Description |
|
|
16
|
+
|------|------|----------|-------------|
|
|
17
|
+
| category | string | no | Filter by category (system, creator, updater, supplier, dev) |
|
|
18
|
+
|
|
19
|
+
## Options
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
--verbose, -v Show detailed descriptions
|
|
23
|
+
--category, -c Filter by category
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Output
|
|
27
|
+
|
|
28
|
+
```
|
|
29
|
+
Baekgom Agents - Available Commands
|
|
30
|
+
|
|
31
|
+
System:
|
|
32
|
+
lists Show all available commands
|
|
33
|
+
status Show system status
|
|
34
|
+
help Show help information
|
|
35
|
+
|
|
36
|
+
Manager:
|
|
37
|
+
creator:agent Create a new agent
|
|
38
|
+
updater:docs Sync documentation with project structure
|
|
39
|
+
updater:external Update agents from external sources
|
|
40
|
+
supplier:audit Audit agent dependencies
|
|
41
|
+
supplier:fix Fix broken references
|
|
42
|
+
|
|
43
|
+
Dev:
|
|
44
|
+
dev:review Review code for best practices
|
|
45
|
+
dev:refactor Refactor code
|
|
46
|
+
|
|
47
|
+
Use "<command> --help" for detailed information.
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Verbose Output
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
lists --verbose
|
|
54
|
+
|
|
55
|
+
Baekgom Agents - Available Commands (Detailed)
|
|
56
|
+
|
|
57
|
+
System Commands:
|
|
58
|
+
┌─────────┬──────────────────────────────────────────────┐
|
|
59
|
+
│ Command │ Description │
|
|
60
|
+
├─────────┼──────────────────────────────────────────────┤
|
|
61
|
+
│ lists │ Show all available commands │
|
|
62
|
+
│ status │ Show system status and health checks │
|
|
63
|
+
│ help │ Show help for commands and agents │
|
|
64
|
+
└─────────┴──────────────────────────────────────────────┘
|
|
65
|
+
|
|
66
|
+
Manager Commands:
|
|
67
|
+
┌──────────────────┬──────────────────────────────────────┐
|
|
68
|
+
│ Command │ Description │
|
|
69
|
+
├──────────────────┼──────────────────────────────────────┤
|
|
70
|
+
│ creator:agent │ Create a new agent with structure │
|
|
71
|
+
│ updater:docs │ Sync all docs with project state │
|
|
72
|
+
│ updater:external │ Update from external sources │
|
|
73
|
+
│ supplier:audit │ Check dependencies and refs │
|
|
74
|
+
│ supplier:fix │ Auto-fix broken references │
|
|
75
|
+
└──────────────────┴──────────────────────────────────────┘
|
|
76
|
+
|
|
77
|
+
Dev Commands:
|
|
78
|
+
┌──────────────┬────────────────────────────────────────┐
|
|
79
|
+
│ Command │ Description │
|
|
80
|
+
├──────────────┼────────────────────────────────────────┤
|
|
81
|
+
│ dev:review │ Review code against best practices │
|
|
82
|
+
│ dev:refactor │ Suggest and apply refactoring │
|
|
83
|
+
└──────────────┴────────────────────────────────────────┘
|
|
84
|
+
|
|
85
|
+
Total: 10 commands available
|
|
86
|
+
```
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
# Command: status
|
|
2
|
+
|
|
3
|
+
> Show system status
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
status
|
|
9
|
+
status --verbose
|
|
10
|
+
status --health
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Options
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
--verbose, -v Detailed status
|
|
17
|
+
--health, -h Health checks only
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Output
|
|
21
|
+
|
|
22
|
+
### Default Status
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
Baekgom Agents - Status
|
|
26
|
+
|
|
27
|
+
System:
|
|
28
|
+
Rules: 10 loaded (R000-R009)
|
|
29
|
+
|
|
30
|
+
Agents:
|
|
31
|
+
Orchestrator: 1 (secretary)
|
|
32
|
+
Manager: 3 (creator, updater, supplier)
|
|
33
|
+
SW Engineer: 6
|
|
34
|
+
Backend Engineer: 3
|
|
35
|
+
Infra Engineer: 2
|
|
36
|
+
Total: 15 agents
|
|
37
|
+
|
|
38
|
+
Skills:
|
|
39
|
+
Development: 8
|
|
40
|
+
Backend: 3
|
|
41
|
+
Infrastructure: 2
|
|
42
|
+
Total: 13 skills
|
|
43
|
+
|
|
44
|
+
Guides: 12 loaded
|
|
45
|
+
Commands: 10 available
|
|
46
|
+
|
|
47
|
+
Health: ✓ OK
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### Verbose Status
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
status --verbose
|
|
54
|
+
|
|
55
|
+
Baekgom Agents - Detailed Status
|
|
56
|
+
|
|
57
|
+
Rules:
|
|
58
|
+
MUST:
|
|
59
|
+
✓ R000 language-policy
|
|
60
|
+
✓ R001 safety
|
|
61
|
+
✓ R002 permissions
|
|
62
|
+
✓ R006 agent-design
|
|
63
|
+
|
|
64
|
+
SHOULD:
|
|
65
|
+
✓ R003 interaction
|
|
66
|
+
✓ R004 error-handling
|
|
67
|
+
✓ R007 agent-identification
|
|
68
|
+
✓ R008 tool-identification
|
|
69
|
+
|
|
70
|
+
MAY:
|
|
71
|
+
✓ R005 optimization
|
|
72
|
+
✓ R009 parallel-execution
|
|
73
|
+
|
|
74
|
+
Agents:
|
|
75
|
+
orchestrator/
|
|
76
|
+
✓ secretary (internal)
|
|
77
|
+
|
|
78
|
+
manager/
|
|
79
|
+
✓ creator (internal)
|
|
80
|
+
✓ updater (internal)
|
|
81
|
+
✓ supplier (internal)
|
|
82
|
+
|
|
83
|
+
sw-engineer/
|
|
84
|
+
✓ golang-expert (internal)
|
|
85
|
+
✓ python-expert (internal)
|
|
86
|
+
✓ rust-expert (internal)
|
|
87
|
+
✓ kotlin-expert (internal)
|
|
88
|
+
✓ typescript-expert (internal)
|
|
89
|
+
✓ vercel-agent (external v1.0.0)
|
|
90
|
+
|
|
91
|
+
sw-engineer/backend/
|
|
92
|
+
✓ fastapi-expert (internal)
|
|
93
|
+
✓ springboot-expert (internal)
|
|
94
|
+
✓ go-backend-expert (internal)
|
|
95
|
+
|
|
96
|
+
infra-engineer/
|
|
97
|
+
✓ docker-expert (internal)
|
|
98
|
+
✓ aws-expert (internal)
|
|
99
|
+
|
|
100
|
+
Skills:
|
|
101
|
+
development/
|
|
102
|
+
✓ go-best-practices
|
|
103
|
+
✓ python-best-practices
|
|
104
|
+
✓ rust-best-practices
|
|
105
|
+
✓ kotlin-best-practices
|
|
106
|
+
✓ typescript-best-practices
|
|
107
|
+
✓ react-best-practices
|
|
108
|
+
✓ web-design-guidelines
|
|
109
|
+
✓ vercel-deploy
|
|
110
|
+
|
|
111
|
+
backend/
|
|
112
|
+
✓ fastapi-best-practices
|
|
113
|
+
✓ springboot-best-practices
|
|
114
|
+
✓ go-backend-best-practices
|
|
115
|
+
|
|
116
|
+
infrastructure/
|
|
117
|
+
✓ docker-best-practices
|
|
118
|
+
✓ aws-best-practices
|
|
119
|
+
|
|
120
|
+
Guides:
|
|
121
|
+
✓ claude-code, web-design
|
|
122
|
+
✓ golang, python, rust, kotlin, typescript
|
|
123
|
+
✓ fastapi, springboot, go-backend
|
|
124
|
+
✓ docker, aws
|
|
125
|
+
|
|
126
|
+
Commands:
|
|
127
|
+
system: lists, status, help
|
|
128
|
+
creator: agent
|
|
129
|
+
updater: docs, external
|
|
130
|
+
supplier: audit, fix
|
|
131
|
+
dev: review, refactor
|
|
132
|
+
|
|
133
|
+
All systems operational.
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
### Health Check
|
|
137
|
+
|
|
138
|
+
```
|
|
139
|
+
status --health
|
|
140
|
+
|
|
141
|
+
Health Checks:
|
|
142
|
+
|
|
143
|
+
Agents:
|
|
144
|
+
✓ 15/15 agents valid
|
|
145
|
+
✓ All paths exist
|
|
146
|
+
✓ All index.yaml valid
|
|
147
|
+
|
|
148
|
+
Dependencies:
|
|
149
|
+
✓ All skill references valid
|
|
150
|
+
✓ All guide references valid
|
|
151
|
+
✓ No broken symlinks
|
|
152
|
+
|
|
153
|
+
External Sources:
|
|
154
|
+
✓ vercel-agent (github: reachable)
|
|
155
|
+
|
|
156
|
+
Documentation:
|
|
157
|
+
✓ CLAUDE.md in sync
|
|
158
|
+
✓ agents/index.yaml in sync
|
|
159
|
+
✓ skills/index.yaml in sync
|
|
160
|
+
✓ guides/index.yaml in sync
|
|
161
|
+
|
|
162
|
+
Result: HEALTHY
|
|
163
|
+
```
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
# Command: updater:docs
|
|
2
|
+
|
|
3
|
+
> Sync documentation with project structure
|
|
4
|
+
|
|
5
|
+
## Purpose
|
|
6
|
+
|
|
7
|
+
Ensures all documentation (AGENT.md, SKILL.md, index.yaml, CLAUDE.md) accurately reflects the current project state and that agents work together organically.
|
|
8
|
+
|
|
9
|
+
## Usage
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
updater:docs
|
|
13
|
+
updater:docs --check
|
|
14
|
+
updater:docs --target <path>
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Parameters
|
|
18
|
+
|
|
19
|
+
| Name | Type | Required | Description |
|
|
20
|
+
|------|------|----------|-------------|
|
|
21
|
+
| target | string | no | Specific path to update |
|
|
22
|
+
|
|
23
|
+
## Options
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
--check, -c Check only, don't modify
|
|
27
|
+
--verbose, -v Show detailed changes
|
|
28
|
+
--target, -t Specific target to update
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Workflow
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
1. Scan project structure
|
|
35
|
+
├── agents/
|
|
36
|
+
├── skills/
|
|
37
|
+
├── guides/
|
|
38
|
+
└── commands/
|
|
39
|
+
|
|
40
|
+
2. Validate consistency
|
|
41
|
+
├── Check agent index.yaml matches folder structure
|
|
42
|
+
├── Check skill references exist
|
|
43
|
+
├── Check guide references exist
|
|
44
|
+
└── Check command definitions match files
|
|
45
|
+
|
|
46
|
+
3. Update documentation
|
|
47
|
+
├── Sync agents/index.yaml
|
|
48
|
+
├── Sync skills/index.yaml
|
|
49
|
+
├── Sync guides/index.yaml
|
|
50
|
+
├── Update CLAUDE.md summary
|
|
51
|
+
└── Update inter-agent references
|
|
52
|
+
|
|
53
|
+
4. Ensure organic integration
|
|
54
|
+
├── Verify agent → skill mappings
|
|
55
|
+
├── Verify agent → guide mappings
|
|
56
|
+
├── Verify command → agent mappings
|
|
57
|
+
└── Check for orphaned resources
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## Output
|
|
61
|
+
|
|
62
|
+
### Check Mode
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
[updater:docs --check]
|
|
66
|
+
|
|
67
|
+
Scanning project structure...
|
|
68
|
+
|
|
69
|
+
agents/index.yaml:
|
|
70
|
+
✓ 15 agents declared
|
|
71
|
+
✓ All paths valid
|
|
72
|
+
✗ Missing: agents/sw-engineer/java-expert (declared but not found)
|
|
73
|
+
|
|
74
|
+
skills/index.yaml:
|
|
75
|
+
✓ 13 skills declared
|
|
76
|
+
✓ All paths valid
|
|
77
|
+
|
|
78
|
+
guides/index.yaml:
|
|
79
|
+
✓ 12 guides declared
|
|
80
|
+
✗ Orphan: guides/old-guide/ (exists but not declared)
|
|
81
|
+
|
|
82
|
+
CLAUDE.md:
|
|
83
|
+
✗ Agent count outdated (shows 14, actual 15)
|
|
84
|
+
|
|
85
|
+
Issues Found: 3
|
|
86
|
+
Run "updater:docs" to fix.
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
### Update Mode
|
|
90
|
+
|
|
91
|
+
```
|
|
92
|
+
[updater:docs]
|
|
93
|
+
|
|
94
|
+
Syncing documentation with project structure...
|
|
95
|
+
|
|
96
|
+
[1/4] Updating agents/index.yaml
|
|
97
|
+
- Removed: java-expert (not found)
|
|
98
|
+
✓ 15 → 14 agents
|
|
99
|
+
|
|
100
|
+
[2/4] Updating skills/index.yaml
|
|
101
|
+
✓ No changes needed
|
|
102
|
+
|
|
103
|
+
[3/4] Updating guides/index.yaml
|
|
104
|
+
- Added: old-guide (found in filesystem)
|
|
105
|
+
✓ 12 → 13 guides
|
|
106
|
+
|
|
107
|
+
[4/4] Updating CLAUDE.md
|
|
108
|
+
- Updated agent count: 14 → 15
|
|
109
|
+
- Updated summary table
|
|
110
|
+
✓ Synced
|
|
111
|
+
|
|
112
|
+
Summary:
|
|
113
|
+
Modified: 3 files
|
|
114
|
+
Added: 1 entry
|
|
115
|
+
Removed: 1 entry
|
|
116
|
+
|
|
117
|
+
All documentation synced successfully.
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
## What Gets Updated
|
|
121
|
+
|
|
122
|
+
### agents/index.yaml
|
|
123
|
+
- Agent list matches actual folders
|
|
124
|
+
- Paths are correct
|
|
125
|
+
- Metadata is consistent
|
|
126
|
+
|
|
127
|
+
### skills/index.yaml
|
|
128
|
+
- Skill categories reflect actual structure
|
|
129
|
+
- All skills in folders are listed
|
|
130
|
+
- References are valid
|
|
131
|
+
|
|
132
|
+
### guides/index.yaml
|
|
133
|
+
- All guide folders are listed
|
|
134
|
+
- Sources are documented
|
|
135
|
+
- Cross-references work
|
|
136
|
+
|
|
137
|
+
### CLAUDE.md
|
|
138
|
+
- Project structure diagram
|
|
139
|
+
- Agent/skill/guide counts
|
|
140
|
+
- Command list
|
|
141
|
+
- Summary tables
|
|
142
|
+
|
|
143
|
+
### Individual Agent/Skill Files
|
|
144
|
+
- Skill references in agent index.yaml
|
|
145
|
+
- Guide references in agent index.yaml
|
|
146
|
+
- Cross-agent references
|
|
147
|
+
|
|
148
|
+
## Organic Integration Checks
|
|
149
|
+
|
|
150
|
+
```yaml
|
|
151
|
+
agent_skill_mapping:
|
|
152
|
+
- Each agent declares valid skills
|
|
153
|
+
- Skills are in correct category
|
|
154
|
+
- No duplicate skill declarations
|
|
155
|
+
|
|
156
|
+
agent_guide_mapping:
|
|
157
|
+
- Each agent declares valid guides
|
|
158
|
+
- Guides exist in guides/
|
|
159
|
+
- Paths are relative and correct
|
|
160
|
+
|
|
161
|
+
command_agent_mapping:
|
|
162
|
+
- Commands reference valid agents
|
|
163
|
+
- Agent capabilities match commands
|
|
164
|
+
- Workflow is documented
|
|
165
|
+
```
|