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
Copy file name to clipboardExpand all lines: .claude/CLAUDE.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,3 +7,5 @@ This is a Claude Code plugin that provides iterative development with Codex revi
7
7
- Version number must be in format of `X.Y.Z` where X/Y/Z is numeric number. Version MUST NOT include anything other than `X.Y.Z`. For example, a good version is `9.732.42`; Bad version examples (MUST NOT USE): `3.22.7-alpha` (extra "-alpha" string), `9.77.2 (2026-01-07)` (useless date/timestamp).
8
8
- The plan template in `commands/gen-plan.md` (Phase 5 Plan Structure section) and `prompt-template/plan/gen-plan-template.md` are intentionally kept in sync. When modifying either file, ensure both are updated to maintain consistency.
9
9
- Conversely, changes to `prompt-template/plan/gen-plan-template.md` must also be reflected in the Plan Structure section of `commands/gen-plan.md`.
10
+
- The directions.json schema v1 is defined in two places that must stay in sync: the jq validation expression in `scripts/validate-directions-json.sh` and the schema documentation in `commands/gen-idea.md` (Step 4.5). When adding, removing, or renaming a field in either place, update the other.
11
+
- Worker constraints (hard caps, isolation rules, no-push rule, sentinel format) are documented in four places that must stay in sync: `commands/explore-idea.md` (coordinator phases), `prompt-template/explore/worker-prompt.md` (worker instructions), `scripts/validate-explore-idea-io.sh` (cap enforcement), and `docs/usage.md` (user-facing option docs). Any change to a cap value or constraint must be reflected in all four.
Copy file name to clipboardExpand all lines: README.md
+20-7Lines changed: 20 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,37 +45,50 @@ Requires [codex CLI](https://github.com/openai/codex) for review. See the full [
45
45
```bash
46
46
/humanize:gen-idea "add undo/redo to the editor"
47
47
```
48
-
Output goes to `.humanize/ideas/<slug>-<timestamp>.md`by default. Pass a `.md` path to expand existing rough notes. `--n` controls how many parallel directions explore the idea (default 6).
48
+
Output goes to `.humanize/ideas/<slug>-<timestamp>.md`and a companion `directions.json` artifact. Pass a `.md` path to expand existing rough notes. `--n` controls how many parallel directions explore the idea (default 6).
49
49
50
-
2.**Generate a plan**from your draft:
50
+
2.**Explore directions as parallel prototypes**(optional — skip if you want to go straight to planning):
Dispatches bounded parallel prototype workers (one per direction), each running in an isolated git worktree. After all workers complete, writes `.humanize/explore/<run-id>/explore-report.md` for audit/ranking details and `.humanize/explore/<run-id>/final-idea.md` as the plan-ready synthesis. Worker worktrees are optional prototype fast paths; the default follow-up is to generate a clean plan from `final-idea.md`.
54
55
55
-
3.**Refine an annotated plan** before implementation when reviewers add comments (`CMT:` ... `ENDCMT`, `<cmt>` ... `</cmt>`, or `<comment>` ... `</comment>`):
56
+
3.**Generate a plan** from your draft or explored final idea:
4.**Refine an annotated plan** before implementation when reviewers add comments (`CMT:` ... `ENDCMT`, `<cmt>` ... `</cmt>`, or `<comment>` ... `</comment>`):
56
62
```bash
57
63
/humanize:refine-plan --input docs/plan.md
58
64
```
59
65
60
-
4.**Run the loop**:
66
+
5.**Run the loop**:
61
67
```bash
62
68
/humanize:start-rlcr-loop docs/plan.md
63
69
```
64
70
65
-
5.**Consult Gemini** for deep web research (requires Gemini CLI):
71
+
6.**Consult Gemini** for deep web research (requires Gemini CLI):
66
72
```bash
67
73
/humanize:ask-gemini What are the latest best practices for X?
68
74
```
69
75
70
-
6.**Monitor progress (in another terminal, not inside Claude Code)**:
76
+
7.**Monitor progress (in another terminal, not inside Claude Code)**:
71
77
```bash
72
78
source<path/to/humanize>/scripts/humanize.sh # Or just add it into your .bashec or .zshrc
73
79
humanize monitor rlcr # RLCR loop
74
80
humanize monitor skill # All skill invocations (codex + gemini)
75
81
humanize monitor codex # Codex invocations only
76
82
humanize monitor gemini # Gemini invocations only
83
+
humanize monitor web # Browser dashboard for the current project
77
84
```
78
85
86
+
The `humanize monitor web` subcommand launches a per-project browser dashboard
87
+
that layers on top of the same data sources the terminal monitors read. It runs
88
+
in the foreground by default; pass `--daemon` for the background tmux launcher
89
+
and `--host` / `--port` / `--auth-token` to configure remote access. See the
90
+
upgrade note: `/humanize:viz` has been removed in favour of `humanize monitor web`.
0 commit comments