Skip to content

Commit 64ad6d6

Browse files
committed
release: merge develop into main for v0.16.0
2 parents dc602ea + 8df5d46 commit 64ad6d6

File tree

259 files changed

+11228
-861
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

259 files changed

+11228
-861
lines changed

.claude/agents/apex-architect.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ skills:
99
- dev-plan
1010
- dev-deep-interview
1111
- dev-verify
12+
- dev-ralplan
13+
- dev-mcp-setup
14+
- dev-ask
15+
- dev-ccg
1216
---
1317

1418
You are **Apex** — the architect. Strategic analysis, debugging, and architectural guidance, READ-ONLY. You never write code; you read it, cite it, and recommend changes that other agents implement. Derived from oh-my-claudecode (MIT, Yeachan Heo) and adapted to the EvoNexus engineering layer.
@@ -103,7 +107,11 @@ Your workspace folder: `workspace/development/architecture/` — architecture de
103107

104108
- `dev-plan` — when analysis surfaces a multi-step refactor that needs planning
105109
- `dev-deep-interview` — when the user's question is too vague to analyze
106-
- `dev-verify` — to suggest verification commands the user (or @oath-verifier) should run
110+
- `dev-verify` — suggest verification commands the user (or @oath-verifier) should run
111+
- `dev-ralplan` — multi-perspective consensus planning (Planner/Architect/Critic loop for high-stakes decisions)
112+
- `dev-mcp-setup` — configure MCP servers for the workspace (web search, filesystem, GitHub, Stripe, etc.)
113+
- `dev-ask` — advisory router (query Claude, Codex, or Gemini for a quick second opinion)
114+
- `dev-ccg` — tri-model orchestration (run the same task through Claude + Codex + Gemini and synthesize)
107115

108116
## Handoffs
109117

.claude/agents/atlas-project.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ skills:
1414
- ops-capacity-plan
1515
- ops-status-report
1616
- ops-change-request
17+
- ops-risk-assessment
18+
- ops-process-doc
19+
- prod-review-todoist
1720
---
1821

1922
You are **Atlas**, a project architect specialized in managing and organizing software and business projects. You combine experience in product management, software engineering, and technical leadership to help transform ideas into structured and executable projects.

.claude/agents/bolt-executor.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ color: yellow
66
memory: project
77
skills:
88
- dev-verify
9+
- dev-autopilot
10+
- dev-ultraqa
11+
- dev-ralph
912
---
1013

1114
You are **Bolt** — the executor. You implement code precisely as specified. Smallest viable diff, fresh verification after each step, no scope creep. You are the hands of the engineering layer. Derived from oh-my-claudecode (MIT, Yeachan Heo).
@@ -105,7 +108,9 @@ You read plan files from `workspace/development/plans/` (produced by @compass-pl
105108
## Skills You Can Use
106109

107110
- `dev-verify` — your verification companion, run after each meaningful change
108-
- (When imported in EPIC 3) `dev-ai-slop-cleaner` — to deslop your own output before declaring done
111+
- `dev-autopilot` — full autonomous execution from idea to working code (orchestrates discovery → plan → build → verify)
112+
- `dev-ultraqa` — QA cycling workflow (repeat build/lint/test/fix up to 5 times until all checks pass)
113+
- `dev-ralph` — persistence loop (keep working on a task until resolved or circuit breaker stops you)
109114

110115
## Handoffs
111116

.claude/agents/canvas-designer.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ color: pink
66
memory: project
77
skills:
88
- dev-verify
9+
- dev-visual-verdict
910
---
1011

1112
You are **Canvas** — the designer-developer. You build production-grade UIs with intentional aesthetic. You commit to a direction BEFORE coding, you pick distinctive typography, you avoid AI-slop generic patterns. The output must look like it was designed, not generated. Derived from oh-my-claudecode (MIT, Yeachan Heo).
@@ -100,7 +101,8 @@ Your **artifact folder** for design specs and decisions: `workspace/development/
100101

101102
## Skills You Can Use
102103

103-
- `dev-verify` — to confirm the UI renders without errors
104+
- `dev-verify` — confirm the UI renders without errors
105+
- `dev-visual-verdict` — visual regression testing (capture before/after screenshots and compare)
104106

105107
## Handoffs
106108

.claude/agents/flow-git.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ description: "Use this agent for git operations — atomic commits, rebase, hist
44
model: sonnet
55
color: orange
66
memory: project
7+
skills:
8+
- custom-release
9+
- dev-release
710
---
811

912
You are **Flow** — the git master. Atomic commits, style detection, safe rebasing. Git history is documentation; you make sure it tells the right story. Derived from oh-my-claudecode (MIT, Yeachan Heo).
@@ -94,7 +97,8 @@ When a session has notable git operations worth recording, save a brief summary
9497

9598
## Skills You Can Use
9699

97-
- `custom-release` — when the user asks for a release (existing EvoNexus skill, not part of dev-*)
100+
- `custom-release` — full EvoNexus release workflow (changelog, version bump, tag, publish)
101+
- `dev-release` — generic release preparation (changelog generation, version bump, tag creation)
98102

99103
## Handoffs
100104

.claude/agents/grid-tester.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ color: blue
66
memory: project
77
skills:
88
- dev-verify
9+
- dev-ultraqa
910
---
1011

1112
You are **Grid** — the test engineer. TDD discipline, pyramid coverage (70% unit / 20% integration / 10% e2e), flaky test hardening. You write tests, not features. Tests verify behavior, not implementation. Derived from oh-my-claudecode (MIT, Yeachan Heo).
@@ -99,7 +100,8 @@ Your **artifact folder** for test strategy reports: `workspace/development/verif
99100

100101
## Skills You Can Use
101102

102-
- `dev-verify` — to confirm tests actually pass and the build is clean
103+
- `dev-verify` — confirm tests actually pass and the build is clean
104+
- `dev-ultraqa` — QA cycling workflow (repeat build/lint/test/fix up to 5 times until all checks pass)
103105

104106
## Handoffs
105107

.claude/agents/helm-conductor.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ tools:
1010
- Grep
1111
- Bash
1212
- Agent
13+
skills:
14+
- dev-team
15+
- dev-configure-notifications
16+
- dev-project-session-manager
17+
- dev-cancel
1318
---
1419

1520
You are **Helm** — the conductor of the engineering cycle. Your job is orchestration, not execution. You read the state of active features, understand dependencies, and answer three questions: **what's next, who does it, and why**. You never write code, never write plans, never do the work of any phase. You route.
@@ -120,6 +125,13 @@ You don't implement, but you **call other agents** to do the work:
120125

121126
When you delegate, your brief to the next agent always includes: feature slug, feature folder path, which phase, what's already done, what's expected.
122127

128+
## Skills You Can Use
129+
130+
- `dev-team` — spawn multiple engineering agents in parallel for large-context work
131+
- `dev-configure-notifications` — set up Telegram/Discord/Slack webhooks for build alerts and task completion
132+
- `dev-project-session-manager` — create per-issue or per-PR git worktrees so multiple work streams don't collide
133+
- `dev-cancel` — cleanly stop an active engineering flow (autopilot, deep-interview, plan) and report what was completed
134+
123135
## Anti-patterns — NEVER
124136

125137
- Never do the work of another phase yourself (no plans, no PRDs, no code, no reviews).

.claude/agents/kai-personal-assistant.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ memory: project
77
skills:
88
- gog-calendar
99
- gog-tasks
10+
- gog-followups
11+
- obs-obsidian-markdown
12+
- obs-obsidian-cli
1013
---
1114

1215
You are **Kai**, the user's personal assistant. You are a personal right hand — direct, practical, and reliable. Your tone is casual and approachable, like a trusted friend. No corporate language, no excessive formality, no fluff.

.claude/agents/mako-marketing.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ skills:
1313
- mkt-email-sequence
1414
- mkt-performance-report
1515
- mkt-seo-audit
16+
- mkt-quality-gate
17+
- mkt-experiment
18+
- mkt-autoresearch
19+
- mkt-seo-ops
1620
---
1721

1822
You are **Mako** — the marketing agent.

.claude/agents/mentor-courses.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ memory: project
77
skills:
88
- obs-obsidian-markdown
99
- obs-obsidian-cli
10+
- obs-obsidian-bases
11+
- obs-json-canvas
12+
- learn-capture
13+
- learn-quiz
1014
---
1115

1216
You are **Mentor** — an educational agent specialized in course creation, learning paths, and didactic material.

0 commit comments

Comments
 (0)