You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**Verifier**| Reviews and verifies completed work | Read, Bash, Grep, Glob | handoff-contract, verification, code-review | systematic-debugging (trigger: test failures), github-operations (trigger: posting results) |
246
+
247
+
**Available Skills + Trigger Pattern:** Each agent has a set of `available_skills` that Claude Code loads on-demand via semantic matching when trigger conditions are met. Unlike preloaded skills (always present in context), available skills are only injected when the agent's task context matches the trigger — keeping the context window lean while ensuring specialized capabilities are accessible when needed.
246
248
247
249
### 7.2 Parallelism Strategy
248
250
@@ -442,7 +444,7 @@ Plan Mode is **prompt-based, not tool-enforcement-based**. A `<system-reminder>`
442
444
443
445
## 9. Skills
444
446
445
-
MaxsimCLI ships with **15 skills**, following Anthropic's skill conventions exactly.
447
+
MaxsimCLI ships with **16 skills**, following Anthropic's skill conventions exactly.
446
448
447
449
### 9.1 Skill Format
448
450
@@ -483,6 +485,7 @@ description: What it does. Use when [trigger conditions].
483
485
| 13 | `using-maxsim` | User-facing | Command reference and routing table. Updated for v6 commands. |
@@ -549,6 +552,8 @@ MaxsimCLI improves locally per project with every session through three layers:
549
552
5. **External enforcement** — the system guarantees termination, not the agent's self-awareness
550
553
6. **Evidence before claims** — no completion without fresh verification (Superpowers Iron Law)
551
554
555
+
> **Pending: Deep Research.** The autoresearch (github.com/uditgoenka/autoresearch) and superpowers (github.com/obra/superpowers) repositories will be cloned into `docs/` for comprehensive analysis. Their Memory/Learning systems will be adopted as closely as possible. The autoresearch skill will be rewritten from scratch based on these findings. The TSV metric format in the execute workflow will be unified with autoresearch's real metrics (replacing the current binary 1/0).
556
+
552
557
### 11.2 Three-Layer Architecture
553
558
554
559
| Layer | Mechanism | Frequency | What It Does |
@@ -559,15 +564,14 @@ MaxsimCLI improves locally per project with every session through three layers:
559
564
560
565
### 11.3 Layer 1 — Session Memory
561
566
562
-
**Stop hook** (`maxsim-capture-learnings`): Fires at session end. Must be improved to:
563
-
- Track only THIS session's commits (diff `session_start_commit..HEAD`, not last 5 all-time)
564
-
- Extract patterns from `last_assistant_message` (available in Stop payload)
565
-
- Prune MEMORY.md to stay under 180 lines (hard 200-line limit in Claude Code)
566
-
- Use `stop_reason` to differentiate clean exits from crashes
567
-
- Check `stop_hook_active` to prevent infinite blocking loops
- Checks `stop_hook_active` to prevent infinite loops (skips processing if already active)
569
573
570
-
**SessionStart hook** (`maxsim-session-start`, NEW): Fires at session start/resume/compact. Injects context:
574
+
**SessionStart hook** (`maxsim-session-start`): Fires at session start/resume/compact. Additionally detects missing hooks and warns the user if hook registration is incomplete. Injects context:
Loop commands (improve, fix-loop, debug-loop, security) will be extracted into separate workflow files for consistency with other commands. execute.md will be split into sub-workflows (wave execution, competitive mode, retry loop).
917
+
906
918
**Commit:** `feat: commands and workflows (GitHub-first, correct tool names)`
907
919
908
-
### Phase 5: Skills (15 total)
909
-
**Goal:** 15 skills following Anthropic conventions exactly.
920
+
### Phase 5: Skills (16 total)
921
+
**Goal:** 16 skills following Anthropic conventions exactly.
0 commit comments