oh-my-customcodex 0.5.6 → 0.5.7
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 +4 -3
- package/dist/cli/index.js +14 -5
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/templates/.claude/agents/scholastic.md +60 -0
- package/templates/.claude/ontology/agents.yaml +15 -0
- package/templates/AGENTS.md.en +3 -2
- package/templates/AGENTS.md.ko +3 -2
- package/templates/CLAUDE.md +3 -2
- package/templates/CLAUDE.md.en +3 -2
- package/templates/CLAUDE.md.ko +3 -2
- package/templates/README.md +2 -2
- 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
|
-
|
|
16
|
+
50 agents. 123 skills. 22 rules. One command.
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
19
|
npm install -g oh-my-customcodex && cd your-project && omcustomcodex init
|
|
@@ -112,7 +112,7 @@ Agent(arch-documenter):haiku ┘
|
|
|
112
112
|
|
|
113
113
|
---
|
|
114
114
|
|
|
115
|
-
### Agents (
|
|
115
|
+
### Agents (50)
|
|
116
116
|
|
|
117
117
|
| Category | Count | Agents |
|
|
118
118
|
|----------|-------|--------|
|
|
@@ -129,6 +129,7 @@ Agent(arch-documenter):haiku ┘
|
|
|
129
129
|
| Managers | 6 | mgr-creator, mgr-updater, mgr-supplier, mgr-gitnerd, mgr-sauron, mgr-claude-code-bible |
|
|
130
130
|
| System | 3 | sys-memory-keeper, sys-naggy, tracker-checkpoint |
|
|
131
131
|
| Auxiliary | 2 | slack-cli, wiki-curator |
|
|
132
|
+
| Review/Reasoning | 1 | scholastic |
|
|
132
133
|
|
|
133
134
|
Each agent declares its tools, model, memory scope, and limitations in YAML frontmatter. Tool budgets are enforced per agent type for accuracy.
|
|
134
135
|
|
|
@@ -279,7 +280,7 @@ omcustomcodex serve-stop # Stop Web UI
|
|
|
279
280
|
your-project/
|
|
280
281
|
├── AGENTS.md # Entry point
|
|
281
282
|
├── .codex/
|
|
282
|
-
│ ├── agents/ #
|
|
283
|
+
│ ├── agents/ # 50 agent definitions
|
|
283
284
|
│ ├── rules/ # 22 governance rules (R000-R021)
|
|
284
285
|
│ ├── hooks/ # 15 lifecycle hook scripts
|
|
285
286
|
│ ├── schemas/ # Tool input validation schemas
|
package/dist/cli/index.js
CHANGED
|
@@ -3091,7 +3091,7 @@ var init_package = __esm(() => {
|
|
|
3091
3091
|
workspaces: [
|
|
3092
3092
|
"packages/*"
|
|
3093
3093
|
],
|
|
3094
|
-
version: "0.5.
|
|
3094
|
+
version: "0.5.7",
|
|
3095
3095
|
requiresCC: ">=2.1.121",
|
|
3096
3096
|
claudeCode: {
|
|
3097
3097
|
minimumVersion: "2.1.121",
|
|
@@ -30166,8 +30166,17 @@ function parseYamlMetadata(content) {
|
|
|
30166
30166
|
}
|
|
30167
30167
|
return result;
|
|
30168
30168
|
}
|
|
30169
|
+
function translateListMessage(key, options, fallback) {
|
|
30170
|
+
const translated = i18n.t(key, options);
|
|
30171
|
+
return translated && translated !== key ? translated : fallback;
|
|
30172
|
+
}
|
|
30169
30173
|
function extractAgentTypeFromFilename(filename) {
|
|
30170
30174
|
const name = basename6(filename, ".md");
|
|
30175
|
+
const exactNameMap = {
|
|
30176
|
+
scholastic: "coordination"
|
|
30177
|
+
};
|
|
30178
|
+
if (exactNameMap[name])
|
|
30179
|
+
return exactNameMap[name];
|
|
30171
30180
|
const prefixMap = {
|
|
30172
30181
|
lang: "language",
|
|
30173
30182
|
be: "backend",
|
|
@@ -30405,11 +30414,11 @@ async function getRules(targetDir, rootDir = ".codex", config) {
|
|
|
30405
30414
|
}
|
|
30406
30415
|
function formatAsTable(components, type) {
|
|
30407
30416
|
if (components.length === 0) {
|
|
30408
|
-
console.log(
|
|
30417
|
+
console.log(translateListMessage("cli.list.empty", { type }, `No ${type} found.`));
|
|
30409
30418
|
return;
|
|
30410
30419
|
}
|
|
30411
30420
|
console.log("");
|
|
30412
|
-
console.log(
|
|
30421
|
+
console.log(translateListMessage("cli.list.header", { type, count: components.length }, `${type} (${components.length} installed)`));
|
|
30413
30422
|
console.log("─".repeat(80));
|
|
30414
30423
|
const nameWidth = Math.max(20, ...components.map((c) => c.name.length));
|
|
30415
30424
|
const typeWidth = Math.max(15, ...components.map((c) => (c.category || c.type).length));
|
|
@@ -30425,12 +30434,12 @@ function formatAsTable(components, type) {
|
|
|
30425
30434
|
console.log(` ${name} ${typeOrCategory} ${description}`);
|
|
30426
30435
|
}
|
|
30427
30436
|
console.log("─".repeat(80));
|
|
30428
|
-
console.log(
|
|
30437
|
+
console.log(translateListMessage("cli.list.total", { count: components.length, type }, `Total: ${components.length} ${type}`));
|
|
30429
30438
|
console.log("");
|
|
30430
30439
|
}
|
|
30431
30440
|
function formatAsSimple(components, type) {
|
|
30432
30441
|
if (components.length === 0) {
|
|
30433
|
-
console.log(
|
|
30442
|
+
console.log(translateListMessage("cli.list.empty", { type }, `No ${type} found.`));
|
|
30434
30443
|
return;
|
|
30435
30444
|
}
|
|
30436
30445
|
console.log(`
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: scholastic
|
|
3
|
+
description: Ontology-first reasoning reviewer for category mistakes, hidden assumptions, modality separation, scholastic critique, and minimal-repair proposals
|
|
4
|
+
model: sonnet
|
|
5
|
+
domain: universal
|
|
6
|
+
memory: project
|
|
7
|
+
effort: high
|
|
8
|
+
limitations:
|
|
9
|
+
- "read-only reviewer; does not implement code changes"
|
|
10
|
+
- "must distinguish ontology failures from empirical failures"
|
|
11
|
+
tools:
|
|
12
|
+
- Read
|
|
13
|
+
- Grep
|
|
14
|
+
- Glob
|
|
15
|
+
permissionMode: bypassPermissions
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
You are a reasoning assistant grounded in structured inquiry and Greek–scholastic traditions.
|
|
19
|
+
|
|
20
|
+
## Capabilities
|
|
21
|
+
|
|
22
|
+
- Define key terms in scholastic style to remove ambiguity
|
|
23
|
+
- Flag inconsistent term usage and state a normalized definition
|
|
24
|
+
- Validate ontology before logic or implementation details
|
|
25
|
+
- Identify category mistakes and conflicts with concrete examples
|
|
26
|
+
- Surface hidden assumptions, inconsistencies, and salvage-by-trivialization
|
|
27
|
+
- Separate modalities in the text: kinds of possibility and necessity
|
|
28
|
+
- Present structured arguments as premises → steps → conclusion
|
|
29
|
+
- Propose minimal repairs when the ontology fails
|
|
30
|
+
|
|
31
|
+
## Review Protocol
|
|
32
|
+
|
|
33
|
+
1. **Define terms** — normalize key terms before judging the claim.
|
|
34
|
+
2. **Validate ontology** — test whether the framework collapses the subject through a category mistake or conflict with real examples.
|
|
35
|
+
3. **Classify failure** — when the ontology fails, label it as categorical or empirical and provide a concrete counterexample.
|
|
36
|
+
4. **Analyze logic** — identify hidden assumptions, contradictions, and tautological rescues.
|
|
37
|
+
5. **Separate modalities** — distinguish possibility, necessity, actuality, obligation, and capability claims.
|
|
38
|
+
6. **Conclude structurally** — state premises, reasoning steps, and conclusion; distinguish hypotheses from established claims.
|
|
39
|
+
7. **Repair minimally** — restate the problem under a sound ontology and re-run the argument when feasible.
|
|
40
|
+
|
|
41
|
+
## Output Shape
|
|
42
|
+
|
|
43
|
+
```markdown
|
|
44
|
+
## Term Definitions
|
|
45
|
+
- Term: normalized meaning and ambiguity notes
|
|
46
|
+
|
|
47
|
+
## Ontology Check
|
|
48
|
+
- Verdict: sound | categorical failure | empirical failure
|
|
49
|
+
- Evidence: concrete example or counterexample
|
|
50
|
+
|
|
51
|
+
## Argument Review
|
|
52
|
+
- Premises
|
|
53
|
+
- Reasoning steps
|
|
54
|
+
- Hidden assumptions
|
|
55
|
+
- Modality distinctions
|
|
56
|
+
|
|
57
|
+
## Minimal Repair
|
|
58
|
+
- Smallest ontology-safe change
|
|
59
|
+
- Re-run conclusion if applicable
|
|
60
|
+
```
|
|
@@ -35,6 +35,9 @@ classes:
|
|
|
35
35
|
ManagerAgent:
|
|
36
36
|
agents: [mgr-creator, mgr-updater, mgr-supplier, mgr-gitnerd, mgr-sauron, mgr-claude-code-bible]
|
|
37
37
|
description: "System management agents"
|
|
38
|
+
CoordinationAgent:
|
|
39
|
+
agents: [scholastic]
|
|
40
|
+
description: "Reasoning, critique, and coordination specialists"
|
|
38
41
|
SystemAgent:
|
|
39
42
|
agents: [sys-memory-keeper, sys-naggy]
|
|
40
43
|
description: "System utility agents"
|
|
@@ -544,3 +547,15 @@ agents:
|
|
|
544
547
|
summary: "Task tracker with proactive reminders for TODO management"
|
|
545
548
|
keywords: [todo, tasks, reminders, tracking, deadlines, project-momentum]
|
|
546
549
|
file_patterns: ["TODO.md", "*.todo"]
|
|
550
|
+
|
|
551
|
+
scholastic:
|
|
552
|
+
class: CoordinationAgent
|
|
553
|
+
description: "Ontology-first reasoning reviewer for category mistakes, hidden assumptions, modality separation, scholastic critique, and minimal-repair proposals."
|
|
554
|
+
model: sonnet
|
|
555
|
+
memory: project
|
|
556
|
+
effort: high
|
|
557
|
+
skills: []
|
|
558
|
+
tools: [Read, Grep, Glob]
|
|
559
|
+
summary: "Scholastic reviewer for ontology checks, modality separation, and minimal argument repair"
|
|
560
|
+
keywords: [scholastic, ontology, category-mistake, modality, assumptions, critique, reasoning]
|
|
561
|
+
file_patterns: ["*.md", "*.txt"]
|
package/templates/AGENTS.md.en
CHANGED
|
@@ -129,7 +129,7 @@ NO EXCEPTIONS. NO EXCUSES.
|
|
|
129
129
|
project/
|
|
130
130
|
+-- AGENTS.md # Entry point
|
|
131
131
|
+-- .codex/
|
|
132
|
-
| +-- agents/ # Subagent definitions (
|
|
132
|
+
| +-- agents/ # Subagent definitions (50 files)
|
|
133
133
|
| +-- rules/ # Global rules (R000-R020)
|
|
134
134
|
| +-- hooks/ # Hook scripts (security, validation, HUD)
|
|
135
135
|
| +-- contexts/ # Context files (ecomode)
|
|
@@ -176,7 +176,8 @@ This is the core oh-my-customcodex philosophy: **"No expert? CREATE one, connect
|
|
|
176
176
|
| Manager | 6 | mgr-creator, mgr-updater, mgr-supplier, mgr-gitnerd, mgr-sauron, mgr-claude-code-bible |
|
|
177
177
|
| System | 3 | sys-memory-keeper, sys-naggy, tracker-checkpoint |
|
|
178
178
|
| Auxiliary | 2 | slack-cli-expert, wiki-curator |
|
|
179
|
-
|
|
|
179
|
+
| Review/Reasoning | 1 | scholastic |
|
|
180
|
+
| **Total** | **50** | |
|
|
180
181
|
|
|
181
182
|
## Agent Teams (MUST when enabled)
|
|
182
183
|
|
package/templates/AGENTS.md.ko
CHANGED
|
@@ -129,7 +129,7 @@ oh-my-customcodex로 구동됩니다.
|
|
|
129
129
|
project/
|
|
130
130
|
+-- AGENTS.md # 진입점
|
|
131
131
|
+-- .codex/
|
|
132
|
-
| +-- agents/ # 서브에이전트 정의 (
|
|
132
|
+
| +-- agents/ # 서브에이전트 정의 (50 파일)
|
|
133
133
|
| +-- rules/ # 전역 규칙 (R000-R020)
|
|
134
134
|
| +-- hooks/ # 훅 스크립트 (보안, 검증, HUD)
|
|
135
135
|
| +-- contexts/ # 컨텍스트 파일 (ecomode)
|
|
@@ -176,7 +176,8 @@ project/
|
|
|
176
176
|
| Manager | 6 | mgr-creator, mgr-updater, mgr-supplier, mgr-gitnerd, mgr-sauron, mgr-claude-code-bible |
|
|
177
177
|
| System | 3 | sys-memory-keeper, sys-naggy, tracker-checkpoint |
|
|
178
178
|
| Auxiliary | 2 | slack-cli-expert, wiki-curator |
|
|
179
|
-
|
|
|
179
|
+
| Review/Reasoning | 1 | scholastic |
|
|
180
|
+
| **총계** | **50** | |
|
|
180
181
|
|
|
181
182
|
## Agent Teams (MUST when enabled)
|
|
182
183
|
|
package/templates/CLAUDE.md
CHANGED
|
@@ -114,7 +114,7 @@ oh-my-customcodex로 구동됩니다.
|
|
|
114
114
|
project/
|
|
115
115
|
+-- AGENTS.md # 진입점
|
|
116
116
|
+-- .codex/
|
|
117
|
-
| +-- agents/ # 서브에이전트 정의 (
|
|
117
|
+
| +-- agents/ # 서브에이전트 정의 (50 파일)
|
|
118
118
|
| +-- rules/ # 전역 규칙 (R000-R022)
|
|
119
119
|
| +-- hooks/ # 훅 스크립트 (보안, 검증, HUD)
|
|
120
120
|
| +-- contexts/ # 컨텍스트 파일 (ecomode)
|
|
@@ -176,7 +176,8 @@ oh-my-customcodex는 소프트웨어 컴파일과 동일한 구조를 따릅니
|
|
|
176
176
|
| Manager | 6 | mgr-creator, mgr-updater, mgr-supplier, mgr-gitnerd, mgr-sauron, mgr-claude-code-bible |
|
|
177
177
|
| System | 3 | sys-memory-keeper, sys-naggy, tracker-checkpoint |
|
|
178
178
|
| Auxiliary | 2 | slack-cli-expert, wiki-curator |
|
|
179
|
-
|
|
|
179
|
+
| Review/Reasoning | 1 | scholastic |
|
|
180
|
+
| **총계** | **50** | |
|
|
180
181
|
|
|
181
182
|
## Agent Teams (MUST when enabled)
|
|
182
183
|
|
package/templates/CLAUDE.md.en
CHANGED
|
@@ -132,7 +132,7 @@ NO EXCEPTIONS. NO EXCUSES.
|
|
|
132
132
|
project/
|
|
133
133
|
+-- AGENTS.md # Entry point
|
|
134
134
|
+-- .codex/
|
|
135
|
-
| +-- agents/ # Subagent definitions (
|
|
135
|
+
| +-- agents/ # Subagent definitions (50 files)
|
|
136
136
|
| +-- skills/ # Skills (123 directories)
|
|
137
137
|
| +-- rules/ # Global rules (22 files)
|
|
138
138
|
| +-- hooks/ # Hook scripts (security, validation, HUD)
|
|
@@ -178,7 +178,8 @@ This is the core oh-my-customcodex philosophy: **"No expert? CREATE one, connect
|
|
|
178
178
|
| Manager | 6 | mgr-creator, mgr-updater, mgr-supplier, mgr-gitnerd, mgr-sauron, mgr-claude-code-bible |
|
|
179
179
|
| System | 3 | sys-memory-keeper, sys-naggy, tracker-checkpoint |
|
|
180
180
|
| Auxiliary | 2 | slack-cli-expert, wiki-curator |
|
|
181
|
-
|
|
|
181
|
+
| Review/Reasoning | 1 | scholastic |
|
|
182
|
+
| **Total** | **50** | |
|
|
182
183
|
|
|
183
184
|
## Agent Teams (MUST when enabled)
|
|
184
185
|
|
package/templates/CLAUDE.md.ko
CHANGED
|
@@ -132,7 +132,7 @@ oh-my-customcodex로 구동됩니다.
|
|
|
132
132
|
project/
|
|
133
133
|
+-- AGENTS.md # 진입점
|
|
134
134
|
+-- .codex/
|
|
135
|
-
| +-- agents/ # 서브에이전트 정의 (
|
|
135
|
+
| +-- agents/ # 서브에이전트 정의 (50 파일)
|
|
136
136
|
| +-- skills/ # 스킬 (123 디렉토리)
|
|
137
137
|
| +-- rules/ # 전역 규칙 (22 파일)
|
|
138
138
|
| +-- hooks/ # 훅 스크립트 (보안, 검증, HUD)
|
|
@@ -178,7 +178,8 @@ project/
|
|
|
178
178
|
| Manager | 6 | mgr-creator, mgr-updater, mgr-supplier, mgr-gitnerd, mgr-sauron, mgr-claude-code-bible |
|
|
179
179
|
| System | 3 | sys-memory-keeper, sys-naggy, tracker-checkpoint |
|
|
180
180
|
| Auxiliary | 2 | slack-cli-expert, wiki-curator |
|
|
181
|
-
|
|
|
181
|
+
| Review/Reasoning | 1 | scholastic |
|
|
182
|
+
| **총계** | **50** | |
|
|
182
183
|
|
|
183
184
|
## Agent Teams (MUST when enabled)
|
|
184
185
|
|
package/templates/README.md
CHANGED
|
@@ -45,7 +45,7 @@ templates/
|
|
|
45
45
|
+-- manifest.json # packaged component metadata
|
|
46
46
|
+-- workflows/ # project-level pipeline definitions
|
|
47
47
|
+-- .claude/
|
|
48
|
-
| +-- agents/ # agent definitions (
|
|
48
|
+
| +-- agents/ # agent definitions (50 files)
|
|
49
49
|
| +-- skills/ # skill modules (123 SKILL.md files)
|
|
50
50
|
| +-- rules/ # global rules (22 files)
|
|
51
51
|
| +-- hooks/ # hook registry and scripts (40 scripts)
|
|
@@ -59,7 +59,7 @@ templates/
|
|
|
59
59
|
|
|
60
60
|
The counts below should stay aligned with `templates/manifest.json`, README component headings, and CI template validation.
|
|
61
61
|
|
|
62
|
-
### Agents (
|
|
62
|
+
### Agents (50)
|
|
63
63
|
|
|
64
64
|
`templates/.claude/agents/*.md`
|
|
65
65
|
|
package/templates/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.5.
|
|
2
|
+
"version": "0.5.7",
|
|
3
3
|
"requiresCC": ">=2.1.121",
|
|
4
4
|
"claudeCode": {
|
|
5
5
|
"minimumVersion": "2.1.121",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"name": "agents",
|
|
18
18
|
"path": ".codex/agents",
|
|
19
19
|
"description": "AI agent definitions (flat .md files with prefixes)",
|
|
20
|
-
"files":
|
|
20
|
+
"files": 50
|
|
21
21
|
},
|
|
22
22
|
{
|
|
23
23
|
"name": "skills",
|