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 CHANGED
@@ -13,7 +13,7 @@
13
13
 
14
14
  **[한국어 문서 (Korean)](./README_ko.md)**
15
15
 
16
- 48 agents. 106 skills. 22 rules. One command.
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 (106)
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/ # 106 skill modules
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
@@ -2334,7 +2334,7 @@ var init_package = __esm(() => {
2334
2334
  workspaces: [
2335
2335
  "packages/*"
2336
2336
  ],
2337
- version: "0.99.0",
2337
+ version: "0.99.1",
2338
2338
  description: "Batteries-included agent harness for Claude Code",
2339
2339
  type: "module",
2340
2340
  bin: {
package/dist/index.js CHANGED
@@ -2007,7 +2007,7 @@ var package_default = {
2007
2007
  workspaces: [
2008
2008
  "packages/*"
2009
2009
  ],
2010
- version: "0.99.0",
2010
+ version: "0.99.1",
2011
2011
  description: "Batteries-included agent harness for Claude Code",
2012
2012
  type: "module",
2013
2013
  bin: {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "workspaces": [
4
4
  "packages/*"
5
5
  ],
6
- "version": "0.99.0",
6
+ "version": "0.99.1",
7
7
  "description": "Batteries-included agent harness for Claude Code",
8
8
  "type": "module",
9
9
  "bin": {
@@ -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.
@@ -114,7 +114,7 @@ project/
114
114
  +-- CLAUDE.md # 진입점
115
115
  +-- .claude/
116
116
  | +-- agents/ # 서브에이전트 정의 (48 파일)
117
- | +-- skills/ # 스킬 (106 디렉토리)
117
+ | +-- skills/ # 스킬 (107 디렉토리)
118
118
  | +-- rules/ # 전역 규칙 (R000-R022)
119
119
  | +-- hooks/ # 훅 스크립트 (보안, 검증, HUD)
120
120
  | +-- contexts/ # 컨텍스트 파일 (ecomode)
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.99.0",
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": 106
21
+ "files": 107
22
22
  },
23
23
  {
24
24
  "name": "guides",