oh-my-customcode 0.99.0 → 0.99.1
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/README.md +3 -3
- package/dist/cli/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/templates/.claude/skills/idea/SKILL.md +80 -0
- package/templates/CLAUDE.md +1 -1
- package/templates/manifest.json +2 -2
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
**[한국어 문서 (Korean)](./README_ko.md)**
|
|
15
15
|
|
|
16
|
-
48 agents.
|
|
16
|
+
48 agents. 107 skills. 22 rules. One command.
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
19
|
npm install -g oh-my-customcode && cd your-project && omcustom init
|
|
@@ -132,7 +132,7 @@ Each agent declares its tools, model, memory scope, and limitations in YAML fron
|
|
|
132
132
|
|
|
133
133
|
---
|
|
134
134
|
|
|
135
|
-
### Skills (
|
|
135
|
+
### Skills (107)
|
|
136
136
|
|
|
137
137
|
| Category | Count | Includes |
|
|
138
138
|
|----------|-------|----------|
|
|
@@ -272,7 +272,7 @@ your-project/
|
|
|
272
272
|
├── CLAUDE.md # Entry point
|
|
273
273
|
├── .claude/
|
|
274
274
|
│ ├── agents/ # 48 agent definitions
|
|
275
|
-
│ ├── skills/ #
|
|
275
|
+
│ ├── skills/ # 107 skill modules
|
|
276
276
|
│ ├── rules/ # 22 governance rules (R000-R021)
|
|
277
277
|
│ ├── hooks/ # 15 lifecycle hook scripts
|
|
278
278
|
│ ├── schemas/ # Tool input validation schemas
|
package/dist/cli/index.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: idea
|
|
3
|
+
description: Analyze a natural language idea against the project codebase and return structured issue specs
|
|
4
|
+
scope: core
|
|
5
|
+
version: 1.0.0
|
|
6
|
+
user-invocable: true
|
|
7
|
+
argument-hint: "<idea text>"
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# /idea — Natural Language Idea Analysis
|
|
11
|
+
|
|
12
|
+
Analyze a natural language idea against the current project's codebase, assess feasibility, scope, and return structured JSON for issue creation.
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
/idea Add OAuth login with Google and GitHub providers
|
|
18
|
+
/idea 디스코드 봇에 모니터링 대시보드 추가
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Workflow
|
|
22
|
+
|
|
23
|
+
### Phase 1: Parse Input
|
|
24
|
+
|
|
25
|
+
Extract the core intent from the natural language input.
|
|
26
|
+
|
|
27
|
+
### Phase 2: Codebase Analysis
|
|
28
|
+
|
|
29
|
+
1. `Glob` and `Grep` to understand current project structure
|
|
30
|
+
2. Identify relevant modules, files, and patterns
|
|
31
|
+
3. Check for existing similar functionality or conflicts
|
|
32
|
+
|
|
33
|
+
### Phase 3: Feasibility Analysis
|
|
34
|
+
|
|
35
|
+
Analyze using a sonnet agent (always spawn with `mode: "bypassPermissions"`):
|
|
36
|
+
|
|
37
|
+
- **Scope**: Which modules/files would be affected
|
|
38
|
+
- **Complexity**: XS/S/M/L effort estimate
|
|
39
|
+
- **Dependencies**: What existing code needs to change
|
|
40
|
+
- **Risks**: Potential breaking changes or conflicts
|
|
41
|
+
|
|
42
|
+
### Phase 4: Output
|
|
43
|
+
|
|
44
|
+
Return a JSON block with the analysis:
|
|
45
|
+
|
|
46
|
+
```json
|
|
47
|
+
{
|
|
48
|
+
"title": "concise feature title",
|
|
49
|
+
"scope": "affected modules and files",
|
|
50
|
+
"estimatedIssues": 3,
|
|
51
|
+
"details": "2-3 sentence feasibility analysis",
|
|
52
|
+
"issueSpecs": [
|
|
53
|
+
{
|
|
54
|
+
"title": "issue title",
|
|
55
|
+
"body": "issue description with acceptance criteria",
|
|
56
|
+
"labels": ["enhancement"]
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
}
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
The JSON block MUST be wrapped in triple backtick json fence for parsing.
|
|
63
|
+
|
|
64
|
+
## Model Selection
|
|
65
|
+
|
|
66
|
+
| Phase | Model | Rationale |
|
|
67
|
+
|-------|-------|-----------|
|
|
68
|
+
| Phase 1-2 | orchestrator | Simple read/search |
|
|
69
|
+
| Phase 3 | sonnet | Balanced analysis |
|
|
70
|
+
|
|
71
|
+
## Integration
|
|
72
|
+
|
|
73
|
+
| Rule | How |
|
|
74
|
+
|------|-----|
|
|
75
|
+
| R009 | Single agent for analysis |
|
|
76
|
+
| R010 | Orchestrator manages phases; analysis delegated to agent with `mode: "bypassPermissions"` |
|
|
77
|
+
|
|
78
|
+
## Output Format
|
|
79
|
+
|
|
80
|
+
The output MUST contain a fenced JSON block that can be parsed by the calling system (e.g., builder-factory Discord bot). The JSON structure is the contract — do not change field names.
|
package/templates/CLAUDE.md
CHANGED
|
@@ -114,7 +114,7 @@ project/
|
|
|
114
114
|
+-- CLAUDE.md # 진입점
|
|
115
115
|
+-- .claude/
|
|
116
116
|
| +-- agents/ # 서브에이전트 정의 (48 파일)
|
|
117
|
-
| +-- skills/ # 스킬 (
|
|
117
|
+
| +-- skills/ # 스킬 (107 디렉토리)
|
|
118
118
|
| +-- rules/ # 전역 규칙 (R000-R022)
|
|
119
119
|
| +-- hooks/ # 훅 스크립트 (보안, 검증, HUD)
|
|
120
120
|
| +-- contexts/ # 컨텍스트 파일 (ecomode)
|
package/templates/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.99.
|
|
2
|
+
"version": "0.99.1",
|
|
3
3
|
"lastUpdated": "2026-04-18T00:00:00.000Z",
|
|
4
4
|
"components": [
|
|
5
5
|
{
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"name": "skills",
|
|
19
19
|
"path": ".claude/skills",
|
|
20
20
|
"description": "Reusable skill modules (includes slash commands)",
|
|
21
|
-
"files":
|
|
21
|
+
"files": 107
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "guides",
|