jeo-code 0.1.0 → 0.4.5

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.
Files changed (177) hide show
  1. package/README.ja.md +160 -0
  2. package/README.ko.md +160 -0
  3. package/README.md +115 -297
  4. package/README.zh.md +160 -0
  5. package/package.json +11 -6
  6. package/scripts/install.sh +28 -28
  7. package/scripts/uninstall.sh +17 -15
  8. package/src/AGENTS.md +50 -0
  9. package/src/agent/AGENTS.md +49 -0
  10. package/src/agent/bash-fixups.ts +103 -0
  11. package/src/agent/compaction.ts +410 -19
  12. package/src/agent/config-schema.ts +119 -5
  13. package/src/agent/context-files.ts +314 -17
  14. package/src/agent/dev/AGENTS.md +36 -0
  15. package/src/agent/dev/advanced-analyzer.ts +12 -0
  16. package/src/agent/dev/evolution-bridge.ts +82 -0
  17. package/src/agent/dev/evolution-logger.ts +41 -0
  18. package/src/agent/dev/self-analysis.ts +64 -0
  19. package/src/agent/dev/self-improve.ts +24 -0
  20. package/src/agent/dev/spec-automation.ts +49 -0
  21. package/src/agent/engine.ts +808 -54
  22. package/src/agent/hooks.ts +273 -0
  23. package/src/agent/loop.ts +21 -1
  24. package/src/agent/memory.ts +201 -0
  25. package/src/agent/model-recency.ts +32 -0
  26. package/src/agent/output-minimizer.ts +108 -0
  27. package/src/agent/output-util.ts +64 -0
  28. package/src/agent/plan.ts +187 -0
  29. package/src/agent/seed.ts +52 -0
  30. package/src/agent/session.ts +235 -21
  31. package/src/agent/state.ts +286 -39
  32. package/src/agent/step-budget.ts +232 -0
  33. package/src/agent/subagents.ts +223 -26
  34. package/src/agent/task-tool.ts +272 -0
  35. package/src/agent/todo-tool.ts +87 -0
  36. package/src/agent/tokenizer.ts +117 -0
  37. package/src/agent/tool-registry.ts +54 -0
  38. package/src/agent/tools.ts +624 -103
  39. package/src/agent/web-search.ts +538 -0
  40. package/src/ai/AGENTS.md +44 -0
  41. package/src/ai/index.ts +1 -0
  42. package/src/ai/model-catalog-compat.ts +3 -1
  43. package/src/ai/model-catalog.ts +74 -9
  44. package/src/ai/model-discovery.ts +215 -17
  45. package/src/ai/model-manager.ts +346 -32
  46. package/src/ai/model-picker.ts +1 -1
  47. package/src/ai/model-registry.ts +4 -2
  48. package/src/ai/pricing.ts +84 -0
  49. package/src/ai/provider-registry.ts +23 -0
  50. package/src/ai/provider-status.ts +60 -16
  51. package/src/ai/providers/AGENTS.md +42 -0
  52. package/src/ai/providers/anthropic.ts +250 -31
  53. package/src/ai/providers/antigravity.ts +219 -0
  54. package/src/ai/providers/errors.ts +15 -1
  55. package/src/ai/providers/gemini.ts +196 -13
  56. package/src/ai/providers/ollama.ts +37 -7
  57. package/src/ai/providers/openai-responses.ts +173 -0
  58. package/src/ai/providers/openai.ts +64 -12
  59. package/src/ai/sse.ts +4 -1
  60. package/src/ai/types.ts +18 -1
  61. package/src/auth/AGENTS.md +41 -0
  62. package/src/auth/callback-server.ts +6 -1
  63. package/src/auth/flows/AGENTS.md +32 -0
  64. package/src/auth/flows/antigravity.ts +151 -0
  65. package/src/auth/flows/google-project.ts +190 -0
  66. package/src/auth/flows/google.ts +39 -18
  67. package/src/auth/flows/index.ts +15 -5
  68. package/src/auth/flows/openai.ts +2 -2
  69. package/src/auth/oauth.ts +8 -0
  70. package/src/auth/refresh.ts +44 -27
  71. package/src/auth/storage.ts +149 -26
  72. package/src/auth/types.ts +1 -1
  73. package/src/autopilot.ts +362 -0
  74. package/src/bun-imports.d.ts +4 -0
  75. package/src/cli/AGENTS.md +39 -0
  76. package/src/cli/runner.ts +148 -14
  77. package/src/cli.ts +13 -4
  78. package/src/commands/AGENTS.md +40 -0
  79. package/src/commands/approve.ts +62 -3
  80. package/src/commands/auth.ts +167 -25
  81. package/src/commands/chat.ts +37 -8
  82. package/src/commands/deep-interview.ts +633 -175
  83. package/src/commands/doctor.ts +84 -37
  84. package/src/commands/evolve-core.ts +18 -0
  85. package/src/commands/evolve.ts +2 -1
  86. package/src/commands/export.ts +176 -0
  87. package/src/commands/gjc.ts +52 -0
  88. package/src/commands/launch.ts +3549 -240
  89. package/src/commands/mcp.ts +3 -3
  90. package/src/commands/ooo-seed.ts +19 -0
  91. package/src/commands/ralplan.ts +253 -35
  92. package/src/commands/resume.ts +1 -1
  93. package/src/commands/session.ts +183 -0
  94. package/src/commands/setup-helpers.ts +10 -3
  95. package/src/commands/setup.ts +57 -16
  96. package/src/commands/skills.ts +78 -18
  97. package/src/commands/state.ts +198 -0
  98. package/src/commands/status.ts +84 -0
  99. package/src/commands/team.ts +340 -212
  100. package/src/commands/ultragoal.ts +122 -61
  101. package/src/commands/update.ts +244 -0
  102. package/src/ledger.ts +270 -0
  103. package/src/mcp/AGENTS.md +38 -0
  104. package/src/mcp/server.ts +115 -14
  105. package/src/mcp/tools.ts +42 -22
  106. package/src/md-modules.d.ts +4 -0
  107. package/src/prompts/AGENTS.md +41 -0
  108. package/src/prompts/agents/AGENTS.md +35 -0
  109. package/src/prompts/agents/architect.md +35 -0
  110. package/src/prompts/agents/critic.md +37 -0
  111. package/src/prompts/agents/executor.md +36 -0
  112. package/src/prompts/agents/planner.md +37 -0
  113. package/src/prompts/skills/AGENTS.md +36 -0
  114. package/src/prompts/skills/deep-dive/AGENTS.md +31 -0
  115. package/src/prompts/skills/deep-dive/SKILL.md +13 -0
  116. package/src/prompts/skills/deep-interview/AGENTS.md +31 -0
  117. package/src/prompts/skills/deep-interview/SKILL.md +12 -0
  118. package/src/prompts/skills/gjc/AGENTS.md +31 -0
  119. package/src/prompts/skills/gjc/SKILL.md +15 -0
  120. package/src/prompts/skills/ralplan/AGENTS.md +31 -0
  121. package/src/prompts/skills/ralplan/SKILL.md +11 -0
  122. package/src/prompts/skills/team/AGENTS.md +31 -0
  123. package/src/prompts/skills/team/SKILL.md +11 -0
  124. package/src/prompts/skills/ultragoal/AGENTS.md +31 -0
  125. package/src/prompts/skills/ultragoal/SKILL.md +11 -0
  126. package/src/skills/AGENTS.md +38 -0
  127. package/src/skills/catalog.ts +565 -31
  128. package/src/tui/AGENTS.md +43 -0
  129. package/src/tui/app.ts +1181 -92
  130. package/src/tui/components/AGENTS.md +42 -0
  131. package/src/tui/components/ascii-art.ts +257 -15
  132. package/src/tui/components/autocomplete.ts +98 -16
  133. package/src/tui/components/autopilot-status.ts +65 -0
  134. package/src/tui/components/category-index.ts +49 -0
  135. package/src/tui/components/code-view.ts +54 -11
  136. package/src/tui/components/color.ts +171 -2
  137. package/src/tui/components/config-panel.ts +82 -15
  138. package/src/tui/components/duration.ts +38 -0
  139. package/src/tui/components/evolution.ts +3 -3
  140. package/src/tui/components/footer.ts +91 -42
  141. package/src/tui/components/forge.ts +426 -31
  142. package/src/tui/components/hints.ts +54 -0
  143. package/src/tui/components/hud.ts +73 -0
  144. package/src/tui/components/index.ts +4 -0
  145. package/src/tui/components/input-box.ts +150 -0
  146. package/src/tui/components/layout.ts +11 -3
  147. package/src/tui/components/live-model-picker.ts +108 -0
  148. package/src/tui/components/markdown-table.ts +140 -0
  149. package/src/tui/components/markdown-text.ts +97 -0
  150. package/src/tui/components/meter.ts +4 -1
  151. package/src/tui/components/model-picker.ts +3 -2
  152. package/src/tui/components/provider-picker.ts +3 -2
  153. package/src/tui/components/section.ts +70 -0
  154. package/src/tui/components/select-list.ts +40 -10
  155. package/src/tui/components/skill-picker.ts +25 -0
  156. package/src/tui/components/slash.ts +244 -21
  157. package/src/tui/components/status.ts +272 -11
  158. package/src/tui/components/step-timeline.ts +218 -0
  159. package/src/tui/components/stream.ts +26 -9
  160. package/src/tui/components/themes.ts +212 -6
  161. package/src/tui/components/todo-card.ts +47 -0
  162. package/src/tui/components/tool-list.ts +58 -12
  163. package/src/tui/components/transcript.ts +120 -0
  164. package/src/tui/components/update-box.ts +31 -0
  165. package/src/tui/components/welcome.ts +162 -0
  166. package/src/tui/components/width.ts +163 -0
  167. package/src/tui/monitoring/AGENTS.md +31 -0
  168. package/src/tui/monitoring/hud-view.ts +55 -0
  169. package/src/tui/renderer.ts +112 -3
  170. package/src/tui/terminal.ts +40 -33
  171. package/src/util/AGENTS.md +39 -0
  172. package/src/util/clipboard-image.ts +118 -0
  173. package/src/util/env.ts +12 -0
  174. package/src/util/provider-error.ts +78 -0
  175. package/src/util/retry.ts +91 -6
  176. package/src/util/update-check.ts +64 -0
  177. package/src/commands/models.ts +0 -104
@@ -0,0 +1,35 @@
1
+ <!-- Parent: ../../AGENTS.md -->
2
+ <!-- Generated: 2026-06-11 | Updated: 2026-06-11 -->
3
+
4
+ # agents
5
+
6
+ ## Purpose
7
+ Role-specific system prompts defining the behavior of subagents (executor, planner, architect, critic).
8
+
9
+ ## Key Files
10
+ | File | Description |
11
+ |------|-------------|
12
+ | `executor.md` | Mutating agent for executing bounded tasks |
13
+ | `planner.md` | Read-only agent for sequencing tasks |
14
+ | `architect.md` | Read-only agent for structural review |
15
+ | `critic.md` | Read-only agent for plan critique |
16
+
17
+ ## Subdirectories
18
+ *(None)*
19
+
20
+ ## For AI Agents
21
+
22
+ ### Working In This Directory
23
+ - Prompts must define strict output contracts (e.g., specific `done.reason` JSON structures).
24
+ - Non-mutating agents MUST NOT be given mutating tools.
25
+
26
+ ### Testing Requirements
27
+ - N/A (Plaintext files)
28
+
29
+ ### Common Patterns
30
+ *(None)*
31
+
32
+ ## Dependencies
33
+ *(None)*
34
+
35
+ <!-- MANUAL: -->
@@ -0,0 +1,35 @@
1
+ <identity>
2
+ You are Architect, a read-only architecture and code-review subagent.
3
+ </identity>
4
+
5
+ <goal>
6
+ Assess architecture, maintainability, correctness, and spec compliance with file-backed evidence.
7
+ </goal>
8
+
9
+ <constraints>
10
+ - Read-only: never modify files.
11
+ - Prioritize spec/root-cause correctness before style comments.
12
+ - Rate findings by severity: `CRITICAL`, `HIGH`, `MEDIUM`, `LOW`.
13
+ - Never return `APPROVE` if CRITICAL/HIGH issues remain.
14
+ </constraints>
15
+
16
+ <execution_loop>
17
+ 1. Inspect the relevant files and the assigned scope.
18
+ 2. Check spec/contract fit first.
19
+ 3. Evaluate architecture, failure modes, and maintainability.
20
+ 4. Record severity-rated findings.
21
+ 5. Return a structured verdict in `done.reason`.
22
+ </execution_loop>
23
+
24
+ <tool_protocol>
25
+ {{READONLY_TOOL_PROTOCOL}}
26
+ </tool_protocol>
27
+
28
+ <output_contract>
29
+ Your final `done.reason` MUST be markdown with these sections:
30
+ - `Summary:`
31
+ - `Findings:`
32
+ - `Recommendations:`
33
+ - `Architectural Status:` one of `CLEAR`, `WATCH`, `BLOCK`
34
+ - `Code Review Recommendation:` one of `APPROVE`, `COMMENT`, `REQUEST CHANGES`
35
+ </output_contract>
@@ -0,0 +1,37 @@
1
+ <identity>
2
+ You are Critic, a read-only plan/actionability subagent.
3
+ </identity>
4
+
5
+ <goal>
6
+ Decide whether a plan or approach is actionable before execution proceeds.
7
+ </goal>
8
+
9
+ <constraints>
10
+ - Read-only: never modify files.
11
+ - Do not invent problems; reject only with concrete gaps.
12
+ - Simulate representative tasks against inspected evidence before deciding.
13
+ </constraints>
14
+
15
+ <execution_loop>
16
+ 1. Read the request and inspect referenced files.
17
+ 2. Evaluate clarity, completeness, and verifiability.
18
+ 3. Stress-test representative execution paths mentally against the codebase.
19
+ 4. Decide a verdict.
20
+ 5. Return the structured critique in `done.reason`.
21
+ </execution_loop>
22
+
23
+ <tool_protocol>
24
+ {{READONLY_TOOL_PROTOCOL}}
25
+ </tool_protocol>
26
+
27
+ <output_contract>
28
+ Your final `done.reason` MUST begin with one of:
29
+ - `[OKAY]`
30
+ - `[ITERATE]`
31
+ - `[REJECT]`
32
+
33
+ Then include these sections:
34
+ - `Justification:`
35
+ - `Summary:`
36
+ - `Required Fixes:`
37
+ </output_contract>
@@ -0,0 +1,36 @@
1
+ <identity>
2
+ You are Executor, the write-capable implementation subagent.
3
+ </identity>
4
+
5
+ <goal>
6
+ Turn a bounded task into a working, verified outcome with the smallest correct change.
7
+ </goal>
8
+
9
+ <constraints>
10
+ - Keep diffs small and aligned to existing patterns.
11
+ - Do not broaden scope or invent abstractions unless the task requires them.
12
+ - Verify the task before calling done.
13
+ - Communicate the result through `done.reason` using the required output contract.
14
+ </constraints>
15
+
16
+ <execution_loop>
17
+ 1. Inspect the relevant files and conventions.
18
+ 2. Make the minimum change that satisfies the assigned task.
19
+ 3. Run focused verification with the available tools.
20
+ 4. Remove debug leftovers.
21
+ 5. Call `done` only after verification evidence is available.
22
+ </execution_loop>
23
+
24
+ <tool_protocol>
25
+ {{TOOL_PROTOCOL}}
26
+ </tool_protocol>
27
+
28
+ <output_contract>
29
+ Your final `done.reason` MUST be concise markdown with these sections:
30
+ - `Summary:`
31
+ - `Changed Files:`
32
+ - `Verification:`
33
+ - `Open Risks:`
34
+
35
+ If verification could not be completed, say so explicitly in `Verification:` and `Open Risks:`.
36
+ </output_contract>
@@ -0,0 +1,37 @@
1
+ <identity>
2
+ You are Planner, a read-only planning subagent.
3
+ </identity>
4
+
5
+ <goal>
6
+ Produce an evidence-backed, execution-ready plan without mutating the repository.
7
+ </goal>
8
+
9
+ <constraints>
10
+ - Read-only: inspect, sequence, and clarify; do not modify files.
11
+ - Ground important claims in inspected files or search evidence.
12
+ - Prefer actionable steps, concrete verification, and explicit risks.
13
+ </constraints>
14
+
15
+ <execution_loop>
16
+ 1. Inspect the relevant files and current conventions.
17
+ 2. Identify scope, dependencies, and file-level touch points.
18
+ 3. Sequence the work into concrete steps.
19
+ 4. Define verification and note risks.
20
+ 5. Return a structured planning report in `done.reason`.
21
+ </execution_loop>
22
+
23
+ <tool_protocol>
24
+ {{READONLY_TOOL_PROTOCOL}}
25
+ </tool_protocol>
26
+
27
+ <output_contract>
28
+ Your final `done.reason` MUST be markdown with these sections:
29
+ - `Summary:`
30
+ - `In Scope:`
31
+ - `Out of Scope:`
32
+ - `File-level Changes:`
33
+ - `Sequencing:`
34
+ - `Acceptance Criteria:`
35
+ - `Verification:`
36
+ - `Risks:`
37
+ </output_contract>
@@ -0,0 +1,36 @@
1
+ <!-- Parent: ../../AGENTS.md -->
2
+ <!-- Generated: 2026-06-11 | Updated: 2026-06-11 -->
3
+
4
+ # skills
5
+
6
+ ## Purpose
7
+ Bundled workflow skills offering specialized, multi-step procedures for the agent.
8
+
9
+ ## Key Files
10
+ *(See subdirectories)*
11
+
12
+ ## Subdirectories
13
+ | Directory | Purpose |
14
+ |-----------|---------|
15
+ | `deep-interview/` | Socratic requirements gathering |
16
+ | `ralplan/` | Spec-first planning and consensus building |
17
+ | `team/` | Coordinated multi-agent execution |
18
+ | `ultragoal/` | Durable verification and ledger tracking |
19
+ | `gjc/` | Legacy parity configurations |
20
+
21
+ ## For AI Agents
22
+
23
+ ### Working In This Directory
24
+ - Each skill must have a `SKILL.md` file.
25
+ - Changes to bundled skills directly impact the workflows exposed via `/skill`.
26
+
27
+ ### Testing Requirements
28
+ - e2e tests using mock skill runner.
29
+
30
+ ### Common Patterns
31
+ *(None)*
32
+
33
+ ## Dependencies
34
+ *(None)*
35
+
36
+ <!-- MANUAL: -->
@@ -0,0 +1,31 @@
1
+ <!-- Parent: ../AGENTS.md -->
2
+ <!-- Generated: 2026-06-11 | Updated: 2026-06-11 -->
3
+
4
+ # deep-dive
5
+
6
+ ## Purpose
7
+ Bundled SKILL.md for the `deep-dive` workflow.
8
+
9
+ ## Key Files
10
+ | File | Description |
11
+ |------|-------------|
12
+ | `SKILL.md` | The primary skill definition |
13
+
14
+ ## Subdirectories
15
+ *(None)*
16
+
17
+ ## For AI Agents
18
+
19
+ ### Working In This Directory
20
+ - Do not modify this without understanding the broader workflow implications.
21
+
22
+ ### Testing Requirements
23
+ - N/A
24
+
25
+ ### Common Patterns
26
+ *(None)*
27
+
28
+ ## Dependencies
29
+ *(None)*
30
+
31
+ <!-- MANUAL: -->
@@ -0,0 +1,13 @@
1
+ ---
2
+ description: Cross-runtime 2-stage pipeline: trace causal hypotheses, inject evidence into deep-interview style requirements crystallization.
3
+ command: jeo deep-dive "<problem>"
4
+ when: When you have a problem or bug but don't know the root cause and need investigation before requirements.
5
+ ---
6
+
7
+ # deep-dive
8
+
9
+ Orchestrates a 2-stage pipeline that first investigates WHY something happened (trace) then precisely defines WHAT to do about it (deep-interview).
10
+
11
+ 1. **Trace Stage**: Runs 3 parallel causal investigation lanes to map system areas, identify critical unknowns, and discover root causes.
12
+ 2. **3-Point Injection**: Transfers trace findings directly into the interview's initialization (enriching the starting point, providing system context, and seeding initial questions).
13
+ 3. **Interview Stage**: Initiates a Socratic dialogue to refine requirements, skipping redundant exploration and focusing on unresolved unknowns.
@@ -0,0 +1,31 @@
1
+ <!-- Parent: ../AGENTS.md -->
2
+ <!-- Generated: 2026-06-11 | Updated: 2026-06-11 -->
3
+
4
+ # deep-interview
5
+
6
+ ## Purpose
7
+ Bundled SKILL.md for the `deep-interview` workflow.
8
+
9
+ ## Key Files
10
+ | File | Description |
11
+ |------|-------------|
12
+ | `SKILL.md` | The primary skill definition |
13
+
14
+ ## Subdirectories
15
+ *(None)*
16
+
17
+ ## For AI Agents
18
+
19
+ ### Working In This Directory
20
+ - Do not modify this without understanding the broader workflow implications.
21
+
22
+ ### Testing Requirements
23
+ - N/A
24
+
25
+ ### Common Patterns
26
+ *(None)*
27
+
28
+ ## Dependencies
29
+ *(None)*
30
+
31
+ <!-- MANUAL: -->
@@ -0,0 +1,12 @@
1
+ ---
2
+ description: Socratic ambiguity gate; freezes a seed only when clarity is sufficient, with --auto for non-interactive clarification.
3
+ command: 'jeo deep-interview "<idea>"'
4
+ when: When an idea is vague and needs requirement gathering and refinement before planning.
5
+ ---
6
+
7
+ # deep-interview
8
+
9
+ Initiates a Socratic dialogue to ask clarifying questions about a vague idea.
10
+ Scores the ambiguity of the proposal and iterates until it is under 20%.
11
+ Freezes a structured requirements seed only after concrete acceptance criteria exist.
12
+ Supports an --auto flag for non-interactive clarification without bypassing the ambiguity gate.
@@ -0,0 +1,31 @@
1
+ <!-- Parent: ../AGENTS.md -->
2
+ <!-- Generated: 2026-06-11 | Updated: 2026-06-11 -->
3
+
4
+ # gjc
5
+
6
+ ## Purpose
7
+ Bundled SKILL.md for the `gjc` workflow.
8
+
9
+ ## Key Files
10
+ | File | Description |
11
+ |------|-------------|
12
+ | `SKILL.md` | The primary skill definition |
13
+
14
+ ## Subdirectories
15
+ *(None)*
16
+
17
+ ## For AI Agents
18
+
19
+ ### Working In This Directory
20
+ - Do not modify this without understanding the broader workflow implications.
21
+
22
+ ### Testing Requirements
23
+ - N/A
24
+
25
+ ### Common Patterns
26
+ *(None)*
27
+
28
+ ## Dependencies
29
+ *(None)*
30
+
31
+ <!-- MANUAL: -->
@@ -0,0 +1,15 @@
1
+ ---
2
+ description: Main implementation process using gjc spec-first workflow.
3
+ command: jeo gjc "<request>"
4
+ when: When you need to perform significant code changes, refactoring, or feature development using the core gjc process.
5
+ ---
6
+
7
+ # gjc (Gajae-Code Process)
8
+
9
+ Executes the primary code implementation workflow by leveraging the underlying `gjc` engine (jeo-claw).
10
+ This process manages the heavy lifting of code transformation, while the surrounding `jeo-code` ecosystem handles loop-level orchestration.
11
+
12
+ 1. **Mutation Guard**: Ensures safe code writes by blocking operations until ambiguity is low (≤ 20%).
13
+ 2. **Role Delegation**: Utilizes specialized subagents (architect, planner, executor, critic) for focused tasks.
14
+ 3. **Loop Control**: Maintains a tight feedback loop between planning and execution.
15
+ 4. **Verification**: Automatically runs verification steps after implementation to ensure correctness.
@@ -0,0 +1,31 @@
1
+ <!-- Parent: ../AGENTS.md -->
2
+ <!-- Generated: 2026-06-11 | Updated: 2026-06-11 -->
3
+
4
+ # ralplan
5
+
6
+ ## Purpose
7
+ Bundled SKILL.md for the `ralplan` workflow.
8
+
9
+ ## Key Files
10
+ | File | Description |
11
+ |------|-------------|
12
+ | `SKILL.md` | The primary skill definition |
13
+
14
+ ## Subdirectories
15
+ *(None)*
16
+
17
+ ## For AI Agents
18
+
19
+ ### Working In This Directory
20
+ - Do not modify this without understanding the broader workflow implications.
21
+
22
+ ### Testing Requirements
23
+ - N/A
24
+
25
+ ### Common Patterns
26
+ *(None)*
27
+
28
+ ## Dependencies
29
+ *(None)*
30
+
31
+ <!-- MANUAL: -->
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: Planner/Architect/Critic blueprint from the seed.
3
+ command: jeo ralplan
4
+ when: When requirements are clear (e.g. from deep-interview) and you need a robust execution blueprint.
5
+ ---
6
+
7
+ # ralplan
8
+
9
+ Executes a multi-agent critique and planning process to generate a structured implementation plan.
10
+ Combines views from a Planner, an Architect, and a Critic to identify risks, define tasks, and specify files.
11
+ Saves the blueprint for execution.
@@ -0,0 +1,31 @@
1
+ <!-- Parent: ../AGENTS.md -->
2
+ <!-- Generated: 2026-06-11 | Updated: 2026-06-11 -->
3
+
4
+ # team
5
+
6
+ ## Purpose
7
+ Bundled SKILL.md for the `team` workflow.
8
+
9
+ ## Key Files
10
+ | File | Description |
11
+ |------|-------------|
12
+ | `SKILL.md` | The primary skill definition |
13
+
14
+ ## Subdirectories
15
+ *(None)*
16
+
17
+ ## For AI Agents
18
+
19
+ ### Working In This Directory
20
+ - Do not modify this without understanding the broader workflow implications.
21
+
22
+ ### Testing Requirements
23
+ - N/A
24
+
25
+ ### Common Patterns
26
+ *(None)*
27
+
28
+ ## Dependencies
29
+ *(None)*
30
+
31
+ <!-- MANUAL: -->
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: Per-task executor loop against the plan.
3
+ command: jeo team
4
+ when: When you have a blueprint/plan and need to execute the concrete implementation tasks.
5
+ ---
6
+
7
+ # team
8
+
9
+ Coordinates execution of individual tasks defined in the blueprint.
10
+ Spawns per-task executor subagents or loops to implement code changes.
11
+ Ensures task-level isolation and tracks implementation status.
@@ -0,0 +1,31 @@
1
+ <!-- Parent: ../AGENTS.md -->
2
+ <!-- Generated: 2026-06-11 | Updated: 2026-06-11 -->
3
+
4
+ # ultragoal
5
+
6
+ ## Purpose
7
+ Bundled SKILL.md for the `ultragoal` workflow.
8
+
9
+ ## Key Files
10
+ | File | Description |
11
+ |------|-------------|
12
+ | `SKILL.md` | The primary skill definition |
13
+
14
+ ## Subdirectories
15
+ *(None)*
16
+
17
+ ## For AI Agents
18
+
19
+ ### Working In This Directory
20
+ - Do not modify this without understanding the broader workflow implications.
21
+
22
+ ### Testing Requirements
23
+ - N/A
24
+
25
+ ### Common Patterns
26
+ *(None)*
27
+
28
+ ## Dependencies
29
+ *(None)*
30
+
31
+ <!-- MANUAL: -->
@@ -0,0 +1,11 @@
1
+ ---
2
+ description: Verify acceptance criteria, write report.
3
+ command: jeo ultragoal
4
+ when: When tasks are implemented and you need a final, high-level verification and summary report.
5
+ ---
6
+
7
+ # ultragoal
8
+
9
+ Verifies the implementation against the acceptance criteria specified in the plan.
10
+ Runs checks, tests, or validations to ensure correctness.
11
+ Generates a final completion report outlining the changes and verification evidence.
@@ -0,0 +1,38 @@
1
+ <!-- Parent: ../AGENTS.md -->
2
+ <!-- Generated: 2026-06-11 | Updated: 2026-06-11 -->
3
+
4
+ # skills
5
+
6
+ ## Purpose
7
+ Framework for discovering, loading, and executing workflow skills (both bundled and user-provided).
8
+
9
+ ## Key Files
10
+ | File | Description |
11
+ |------|-------------|
12
+ | `registry.ts` | Discovers and catalogs available skills |
13
+ | `executor.ts` | Mechanism to inject skill prompts into the active session |
14
+
15
+ ## Subdirectories
16
+ *(None)*
17
+
18
+ ## For AI Agents
19
+
20
+ ### Working In This Directory
21
+ - Skills are primarily markdown files (`SKILL.md`).
22
+ - Ensure native workflow routing (e.g., `/skill ralplan` running `src/commands/ralplan.ts`) functions alongside simple prompt injection.
23
+
24
+ ### Testing Requirements
25
+ - Test skill resolution order (user directory vs bundled).
26
+
27
+ ### Common Patterns
28
+ - Direct slash invocation (`/skill deep-interview`) and CLI equivalent (`jeo deep-interview`).
29
+
30
+ ## Dependencies
31
+
32
+ ### Internal
33
+ - Reads from `src/prompts/skills/`.
34
+
35
+ ### External
36
+ *(None)*
37
+
38
+ <!-- MANUAL: -->