claude-agent-skills 1.3.0
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 +65 -0
- package/bundled-skills/ask-matt/SKILL.md +61 -0
- package/bundled-skills/brainstorming/SKILL.md +159 -0
- package/bundled-skills/brainstorming/scripts/frame-template.html +213 -0
- package/bundled-skills/brainstorming/scripts/helper.js +167 -0
- package/bundled-skills/brainstorming/scripts/server.cjs +723 -0
- package/bundled-skills/brainstorming/scripts/start-server.sh +209 -0
- package/bundled-skills/brainstorming/scripts/stop-server.sh +120 -0
- package/bundled-skills/brainstorming/spec-document-reviewer-prompt.md +49 -0
- package/bundled-skills/brainstorming/visual-companion.md +298 -0
- package/bundled-skills/cavecrew/README.md +41 -0
- package/bundled-skills/cavecrew/SKILL.md +82 -0
- package/bundled-skills/caveman/README.md +48 -0
- package/bundled-skills/caveman/SKILL.md +78 -0
- package/bundled-skills/caveman-commit/README.md +44 -0
- package/bundled-skills/caveman-commit/SKILL.md +65 -0
- package/bundled-skills/caveman-compress/README.md +163 -0
- package/bundled-skills/caveman-compress/SECURITY.md +31 -0
- package/bundled-skills/caveman-compress/SKILL.md +111 -0
- package/bundled-skills/caveman-compress/scripts/__init__.py +9 -0
- package/bundled-skills/caveman-compress/scripts/__main__.py +3 -0
- package/bundled-skills/caveman-compress/scripts/benchmark.py +80 -0
- package/bundled-skills/caveman-compress/scripts/cli.py +85 -0
- package/bundled-skills/caveman-compress/scripts/compress.py +342 -0
- package/bundled-skills/caveman-compress/scripts/detect.py +121 -0
- package/bundled-skills/caveman-compress/scripts/validate.py +213 -0
- package/bundled-skills/caveman-help/README.md +38 -0
- package/bundled-skills/caveman-help/SKILL.md +63 -0
- package/bundled-skills/caveman-review/README.md +33 -0
- package/bundled-skills/caveman-review/SKILL.md +55 -0
- package/bundled-skills/caveman-stats/README.md +30 -0
- package/bundled-skills/caveman-stats/SKILL.md +10 -0
- package/bundled-skills/codebase-design/DEEPENING.md +37 -0
- package/bundled-skills/codebase-design/DESIGN-IT-TWICE.md +44 -0
- package/bundled-skills/codebase-design/SKILL.md +114 -0
- package/bundled-skills/council/SKILL.md +77 -0
- package/bundled-skills/diagnosing-bugs/SKILL.md +134 -0
- package/bundled-skills/diagnosing-bugs/scripts/hitl-loop.template.sh +41 -0
- package/bundled-skills/dispatching-parallel-agents/SKILL.md +185 -0
- package/bundled-skills/domain-modeling/ADR-FORMAT.md +47 -0
- package/bundled-skills/domain-modeling/CONTEXT-FORMAT.md +60 -0
- package/bundled-skills/domain-modeling/SKILL.md +74 -0
- package/bundled-skills/edit-article/SKILL.md +15 -0
- package/bundled-skills/executing-plans/SKILL.md +70 -0
- package/bundled-skills/finishing-a-development-branch/SKILL.md +241 -0
- package/bundled-skills/git-guardrails-claude-code/SKILL.md +95 -0
- package/bundled-skills/git-guardrails-claude-code/scripts/block-dangerous-git.sh +25 -0
- package/bundled-skills/grill-me/SKILL.md +7 -0
- package/bundled-skills/grill-with-docs/SKILL.md +7 -0
- package/bundled-skills/grilling/SKILL.md +10 -0
- package/bundled-skills/handoff/SKILL.md +16 -0
- package/bundled-skills/i-am-dumb/SKILL.md +57 -0
- package/bundled-skills/implement/SKILL.md +15 -0
- package/bundled-skills/improve-codebase-architecture/HTML-REPORT.md +123 -0
- package/bundled-skills/improve-codebase-architecture/SKILL.md +66 -0
- package/bundled-skills/migrate-to-shoehorn/SKILL.md +118 -0
- package/bundled-skills/obsidian-vault/SKILL.md +59 -0
- package/bundled-skills/ponytail/SKILL.md +117 -0
- package/bundled-skills/ponytail-audit/SKILL.md +50 -0
- package/bundled-skills/ponytail-debt/SKILL.md +59 -0
- package/bundled-skills/ponytail-gain/SKILL.md +51 -0
- package/bundled-skills/ponytail-help/SKILL.md +43 -0
- package/bundled-skills/ponytail-review/SKILL.md +51 -0
- package/bundled-skills/prototype/LOGIC.md +79 -0
- package/bundled-skills/prototype/SKILL.md +31 -0
- package/bundled-skills/prototype/UI.md +112 -0
- package/bundled-skills/receiving-code-review/SKILL.md +213 -0
- package/bundled-skills/requesting-code-review/SKILL.md +103 -0
- package/bundled-skills/requesting-code-review/code-reviewer.md +172 -0
- package/bundled-skills/resolving-merge-conflicts/SKILL.md +14 -0
- package/bundled-skills/scaffold-exercises/SKILL.md +106 -0
- package/bundled-skills/setup-matt-pocock-skills/SKILL.md +127 -0
- package/bundled-skills/setup-matt-pocock-skills/domain.md +51 -0
- package/bundled-skills/setup-matt-pocock-skills/issue-tracker-github.md +34 -0
- package/bundled-skills/setup-matt-pocock-skills/issue-tracker-gitlab.md +35 -0
- package/bundled-skills/setup-matt-pocock-skills/issue-tracker-local.md +19 -0
- package/bundled-skills/setup-matt-pocock-skills/triage-labels.md +15 -0
- package/bundled-skills/setup-pre-commit/SKILL.md +91 -0
- package/bundled-skills/subagent-driven-development/SKILL.md +418 -0
- package/bundled-skills/subagent-driven-development/implementer-prompt.md +139 -0
- package/bundled-skills/subagent-driven-development/scripts/review-package +44 -0
- package/bundled-skills/subagent-driven-development/scripts/sdd-workspace +22 -0
- package/bundled-skills/subagent-driven-development/scripts/task-brief +40 -0
- package/bundled-skills/subagent-driven-development/task-reviewer-prompt.md +188 -0
- package/bundled-skills/systematic-debugging/CREATION-LOG.md +119 -0
- package/bundled-skills/systematic-debugging/SKILL.md +296 -0
- package/bundled-skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
- package/bundled-skills/systematic-debugging/condition-based-waiting.md +115 -0
- package/bundled-skills/systematic-debugging/defense-in-depth.md +122 -0
- package/bundled-skills/systematic-debugging/find-polluter.sh +63 -0
- package/bundled-skills/systematic-debugging/root-cause-tracing.md +169 -0
- package/bundled-skills/systematic-debugging/test-academic.md +14 -0
- package/bundled-skills/systematic-debugging/test-pressure-1.md +58 -0
- package/bundled-skills/systematic-debugging/test-pressure-2.md +68 -0
- package/bundled-skills/systematic-debugging/test-pressure-3.md +69 -0
- package/bundled-skills/tdd/SKILL.md +108 -0
- package/bundled-skills/tdd/mocking.md +59 -0
- package/bundled-skills/tdd/refactoring.md +10 -0
- package/bundled-skills/tdd/tests.md +61 -0
- package/bundled-skills/teach/GLOSSARY-FORMAT.md +35 -0
- package/bundled-skills/teach/LEARNING-RECORD-FORMAT.md +46 -0
- package/bundled-skills/teach/MISSION-FORMAT.md +31 -0
- package/bundled-skills/teach/RESOURCES-FORMAT.md +32 -0
- package/bundled-skills/teach/SKILL.md +140 -0
- package/bundled-skills/test-driven-development/SKILL.md +371 -0
- package/bundled-skills/test-driven-development/testing-anti-patterns.md +299 -0
- package/bundled-skills/to-issues/SKILL.md +84 -0
- package/bundled-skills/to-prd/SKILL.md +75 -0
- package/bundled-skills/triage/AGENT-BRIEF.md +207 -0
- package/bundled-skills/triage/OUT-OF-SCOPE.md +105 -0
- package/bundled-skills/triage/SKILL.md +112 -0
- package/bundled-skills/using-git-worktrees/SKILL.md +202 -0
- package/bundled-skills/using-superpowers/SKILL.md +121 -0
- package/bundled-skills/using-superpowers/references/antigravity-tools.md +96 -0
- package/bundled-skills/using-superpowers/references/claude-code-tools.md +50 -0
- package/bundled-skills/using-superpowers/references/codex-tools.md +72 -0
- package/bundled-skills/using-superpowers/references/copilot-tools.md +49 -0
- package/bundled-skills/using-superpowers/references/gemini-tools.md +63 -0
- package/bundled-skills/using-superpowers/references/pi-tools.md +28 -0
- package/bundled-skills/verification-before-completion/SKILL.md +139 -0
- package/bundled-skills/writing-great-skills/GLOSSARY.md +195 -0
- package/bundled-skills/writing-great-skills/SKILL.md +82 -0
- package/bundled-skills/writing-plans/SKILL.md +174 -0
- package/bundled-skills/writing-plans/plan-document-reviewer-prompt.md +49 -0
- package/bundled-skills/writing-skills/SKILL.md +689 -0
- package/bundled-skills/writing-skills/anthropic-best-practices.md +1150 -0
- package/bundled-skills/writing-skills/examples/CLAUDE_MD_TESTING.md +189 -0
- package/bundled-skills/writing-skills/graphviz-conventions.dot +172 -0
- package/bundled-skills/writing-skills/persuasion-principles.md +187 -0
- package/bundled-skills/writing-skills/render-graphs.js +168 -0
- package/bundled-skills/writing-skills/testing-skills-with-subagents.md +384 -0
- package/commands/add.js +97 -0
- package/commands/check.js +54 -0
- package/commands/exportSkills.js +30 -0
- package/commands/hub.js +52 -0
- package/commands/importSkills.js +68 -0
- package/commands/list.js +37 -0
- package/commands/remove.js +59 -0
- package/commands/sync.js +66 -0
- package/commands/update.js +70 -0
- package/index.js +100 -0
- package/lib/banner.js +108 -0
- package/lib/constants.js +10 -0
- package/lib/deps.js +51 -0
- package/lib/hash.js +26 -0
- package/lib/install.js +31 -0
- package/lib/lockfile.js +37 -0
- package/lib/prompts.js +50 -0
- package/lib/scope.js +19 -0
- package/lib/summary.js +108 -0
- package/lib/theme.js +11 -0
- package/package.json +43 -0
- package/skills.json +164 -0
package/README.md
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# claude-agent-skills
|
|
2
|
+
|
|
3
|
+
Install and manage Pavi's Claude Code agent skills via an interactive CLI.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx claude-agent-skills
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or install globally for a persistent command:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install -g claude-agent-skills
|
|
15
|
+
claude-agent-skills
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## What it does
|
|
19
|
+
|
|
20
|
+
Launches an animated interactive menu to install, update, remove, and inspect Claude Code skills — the prompt files that teach Claude how to perform specialised tasks in your projects.
|
|
21
|
+
|
|
22
|
+
Skills are installed into:
|
|
23
|
+
|
|
24
|
+
| Scope | Path |
|
|
25
|
+
|---------|------------------------------------|
|
|
26
|
+
| Global | `~/.claude/skills/` + `~/.agents/skills/` |
|
|
27
|
+
| Project | `.claude/skills/` in current dir |
|
|
28
|
+
|
|
29
|
+
A lockfile (`~/.claude/claude-agent-skills-lock.json` or `.claude/claude-agent-skills-lock.json`) tracks every installed skill with a SHA-256 hash so updates and drift can be detected.
|
|
30
|
+
|
|
31
|
+
## Menu options
|
|
32
|
+
|
|
33
|
+
| Option | Description |
|
|
34
|
+
|--------|-------------|
|
|
35
|
+
| **Add Skill(s)** | Pick from 54 bundled skills. Dependencies are resolved and installed automatically. |
|
|
36
|
+
| **Update Existing Skill(s)** | Detect and apply updates for skills that have a newer bundled version. |
|
|
37
|
+
| **Remove Existing Skill(s)** | Uninstall skills from disk and remove them from the lockfile. |
|
|
38
|
+
| **List Installed Skill(s)** | Show all installed skills with status, link type, and hash. |
|
|
39
|
+
| **Sync/Restore Skills from Lockfile** | Re-materialize any missing or broken skills from the lockfile. |
|
|
40
|
+
| **Check Skill(s)** | Health check — ok / update available / locally modified / missing / broken symlink. |
|
|
41
|
+
| **Quit** | Exit. |
|
|
42
|
+
|
|
43
|
+
Press **Escape** at any sub-prompt to go back to the main menu.
|
|
44
|
+
|
|
45
|
+
## CLI commands
|
|
46
|
+
|
|
47
|
+
All menu options are also available as direct subcommands:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
claude-agent-skills add --global --all # install everything globally
|
|
51
|
+
claude-agent-skills add --skill grilling tdd # install specific skills
|
|
52
|
+
claude-agent-skills update --global # update all with new versions
|
|
53
|
+
claude-agent-skills remove --project # interactive remove (project scope)
|
|
54
|
+
claude-agent-skills list --global # show installed skills
|
|
55
|
+
claude-agent-skills sync --global # restore from lockfile
|
|
56
|
+
claude-agent-skills check --project # health check
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## Included skills
|
|
60
|
+
|
|
61
|
+
54 skills spanning engineering, productivity, and personal workflows — including the full [mattpocock/skills](https://github.com/mattpocock/skills) set, [JuliusBrussee/caveman](https://github.com/JuliusBrussee/caveman) skills, [obra/superpowers](https://github.com/obra/superpowers) skills, and Pavi's personal additions (ponytail suite, council, etc.).
|
|
62
|
+
|
|
63
|
+
## Author
|
|
64
|
+
|
|
65
|
+
Pavithran Francis — [github.com/Pavithran-Francis/skills](https://github.com/Pavithran-Francis/skills)
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: ask-matt
|
|
3
|
+
description: Ask which skill or flow fits your situation. A router over the user-invoked skills in this repo.
|
|
4
|
+
disable-model-invocation: true
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Ask Matt
|
|
8
|
+
|
|
9
|
+
You don't remember every skill, so ask.
|
|
10
|
+
|
|
11
|
+
A **flow** is a path through the skills. Most paths run along one **main flow**, and two **on-ramps** merge onto it. Everything else is standalone.
|
|
12
|
+
|
|
13
|
+
## The main flow: idea → ship
|
|
14
|
+
|
|
15
|
+
The route most work travels. You have an idea and want it built.
|
|
16
|
+
|
|
17
|
+
1. **`/grill-with-docs`** — sharpen the idea by interview. Start here when you **have a codebase**: it's stateful, retaining what it learns in `CONTEXT.md` and ADRs. (No codebase? Use `/grill-me` — see Standalone.)
|
|
18
|
+
2. **Branch — can you settle every question in conversation?** If a question needs a runnable answer (state, business logic, a UI you have to see), detour through a prototype, bridged by **`/handoff`** in both directions (see Crossing sessions):
|
|
19
|
+
- **`/handoff`** out, then open a fresh session against that file,
|
|
20
|
+
- **`/prototype`** to answer the question with throwaway code,
|
|
21
|
+
- **`/handoff`** back what you learned, and reference it from the original idea thread.
|
|
22
|
+
3. **Branch — is this a multi-session build?**
|
|
23
|
+
- **Yes** → **`/to-prd`** (turn the thread into a PRD) → **`/to-issues`** (split the PRD into independently-grabbable issues). Because the issues are independent, **clear context between each one**: start a fresh session per issue and kick off **`/implement`** by passing it the PRD and the single issue to work on.
|
|
24
|
+
- **No** → **`/implement`** right here, in the same context window.
|
|
25
|
+
|
|
26
|
+
### Context hygiene
|
|
27
|
+
|
|
28
|
+
Keep steps 1–3 in **one unbroken context window** — don't compact or clear until after `/to-issues` — so the grilling, PRD, and issues all build on the same thinking. Each `/implement` then starts fresh, working from the issue.
|
|
29
|
+
|
|
30
|
+
The limit on this is the **[smart zone](https://www.aihero.dev/ai-coding-dictionary/smart-zone)**: the window (~120k tokens on state-of-the-art models) within which the model still reasons sharply. If a session approaches it before `/to-issues`, don't push on degraded — `/handoff` and continue in a fresh thread.
|
|
31
|
+
|
|
32
|
+
## On-ramps
|
|
33
|
+
|
|
34
|
+
A starting situation that generates work, then merges onto the main flow.
|
|
35
|
+
|
|
36
|
+
- **Bugs and requests piling up** → **`/triage`**. It moves issues through triage roles and produces agent-ready issues, which **`/implement`** later picks up.
|
|
37
|
+
|
|
38
|
+
Triage is only for issues **you didn't create** — bug reports, incoming feature requests, anything that arrives raw. Issues that `/to-issues` produced are already agent-ready, so **don't triage them**.
|
|
39
|
+
|
|
40
|
+
## Codebase health
|
|
41
|
+
|
|
42
|
+
Not feature work — upkeep.
|
|
43
|
+
|
|
44
|
+
- **`/improve-codebase-architecture`** — run whenever you have a spare moment to keep the codebase good for agents to operate in. It surfaces deepening opportunities; picking one _generates an idea_ you can take into the main flow at `/grill-with-docs`.
|
|
45
|
+
|
|
46
|
+
## Crossing sessions
|
|
47
|
+
|
|
48
|
+
- **`/handoff`** — when a thread is full or you need to branch off (e.g. into a `/prototype` session), this compacts the conversation into a markdown file. You don't continue in place — you **open a new session and reference that file** to carry the context across. It's the bridge between context windows, in either direction. Use it when you want a **fresh session** but need the **current conversation preserved**.
|
|
49
|
+
- **`/compact`** (built-in) — stay in the **same conversation**, letting the earlier turns be summarized. Use it at **intentional breaks between phases**, when you don't mind losing the verbatim history. Don't compact mid-phase — the agent can lose its way. `/handoff` forks; `/compact` continues.
|
|
50
|
+
|
|
51
|
+
## Standalone
|
|
52
|
+
|
|
53
|
+
Off the main flow entirely.
|
|
54
|
+
|
|
55
|
+
- **`/grill-me`** — the same relentless interview as `/grill-with-docs`, but for when you have **no codebase**. Stateless: it saves nothing locally, builds no `CONTEXT.md`. Reach for it to sharpen any plan or design that doesn't live in a repo.
|
|
56
|
+
- **`/teach`** — learn a concept over multiple sessions, using the current directory as a stateful workspace.
|
|
57
|
+
- **`/writing-great-skills`** — reference for writing and editing skills well.
|
|
58
|
+
|
|
59
|
+
## Precondition
|
|
60
|
+
|
|
61
|
+
**`/setup-matt-pocock-skills`** — run before your first engineering flow to configure the issue tracker, triage labels, and doc layout the other skills assume. Custom issue trackers also work.
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: brainstorming
|
|
3
|
+
description: "You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Brainstorming Ideas Into Designs
|
|
7
|
+
|
|
8
|
+
Help turn ideas into fully formed designs and specs through natural collaborative dialogue.
|
|
9
|
+
|
|
10
|
+
Start by understanding the current project context, then ask questions one at a time to refine the idea. Once you understand what you're building, present the design and get user approval.
|
|
11
|
+
|
|
12
|
+
<HARD-GATE>
|
|
13
|
+
Do NOT invoke any implementation skill, write any code, scaffold any project, or take any implementation action until you have presented a design and the user has approved it. This applies to EVERY project regardless of perceived simplicity.
|
|
14
|
+
</HARD-GATE>
|
|
15
|
+
|
|
16
|
+
## Anti-Pattern: "This Is Too Simple To Need A Design"
|
|
17
|
+
|
|
18
|
+
Every project goes through this process. A todo list, a single-function utility, a config change — all of them. "Simple" projects are where unexamined assumptions cause the most wasted work. The design can be short (a few sentences for truly simple projects), but you MUST present it and get approval.
|
|
19
|
+
|
|
20
|
+
## Checklist
|
|
21
|
+
|
|
22
|
+
You MUST create a task for each of these items and complete them in order:
|
|
23
|
+
|
|
24
|
+
1. **Explore project context** — check files, docs, recent commits
|
|
25
|
+
2. **Offer the visual companion just-in-time** — NOT upfront. The first time a question would genuinely be clearer shown than described, offer it then (its own message); on approval its browser tab opens for you. If no visual question ever arises, never offer it. See the Visual Companion section below.
|
|
26
|
+
3. **Ask clarifying questions** — one at a time, understand purpose/constraints/success criteria
|
|
27
|
+
4. **Propose 2-3 approaches** — with trade-offs and your recommendation
|
|
28
|
+
5. **Present design** — in sections scaled to their complexity, get user approval after each section
|
|
29
|
+
6. **Write design doc** — save to `docs/superpowers/specs/YYYY-MM-DD-<topic>-design.md` and commit
|
|
30
|
+
7. **Spec self-review** — quick inline check for placeholders, contradictions, ambiguity, scope (see below)
|
|
31
|
+
8. **User reviews written spec** — ask user to review the spec file before proceeding
|
|
32
|
+
9. **Transition to implementation** — invoke writing-plans skill to create implementation plan
|
|
33
|
+
|
|
34
|
+
## Process Flow
|
|
35
|
+
|
|
36
|
+
```dot
|
|
37
|
+
digraph brainstorming {
|
|
38
|
+
"Explore project context" [shape=box];
|
|
39
|
+
"Ask clarifying questions" [shape=box];
|
|
40
|
+
"Propose 2-3 approaches" [shape=box];
|
|
41
|
+
"Present design sections" [shape=box];
|
|
42
|
+
"User approves design?" [shape=diamond];
|
|
43
|
+
"Write design doc" [shape=box];
|
|
44
|
+
"Spec self-review\n(fix inline)" [shape=box];
|
|
45
|
+
"User reviews spec?" [shape=diamond];
|
|
46
|
+
"Invoke writing-plans skill" [shape=doublecircle];
|
|
47
|
+
|
|
48
|
+
"Explore project context" -> "Ask clarifying questions";
|
|
49
|
+
"Ask clarifying questions" -> "Propose 2-3 approaches";
|
|
50
|
+
"Propose 2-3 approaches" -> "Present design sections";
|
|
51
|
+
"Present design sections" -> "User approves design?";
|
|
52
|
+
"User approves design?" -> "Present design sections" [label="no, revise"];
|
|
53
|
+
"User approves design?" -> "Write design doc" [label="yes"];
|
|
54
|
+
"Write design doc" -> "Spec self-review\n(fix inline)";
|
|
55
|
+
"Spec self-review\n(fix inline)" -> "User reviews spec?";
|
|
56
|
+
"User reviews spec?" -> "Write design doc" [label="changes requested"];
|
|
57
|
+
"User reviews spec?" -> "Invoke writing-plans skill" [label="approved"];
|
|
58
|
+
}
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
**The terminal state is invoking writing-plans.** Do NOT invoke frontend-design, mcp-builder, or any other implementation skill. The ONLY skill you invoke after brainstorming is writing-plans.
|
|
62
|
+
|
|
63
|
+
## The Process
|
|
64
|
+
|
|
65
|
+
**Understanding the idea:**
|
|
66
|
+
|
|
67
|
+
- Check out the current project state first (files, docs, recent commits)
|
|
68
|
+
- Before asking detailed questions, assess scope: if the request describes multiple independent subsystems (e.g., "build a platform with chat, file storage, billing, and analytics"), flag this immediately. Don't spend questions refining details of a project that needs to be decomposed first.
|
|
69
|
+
- If the project is too large for a single spec, help the user decompose into sub-projects: what are the independent pieces, how do they relate, what order should they be built? Then brainstorm the first sub-project through the normal design flow. Each sub-project gets its own spec → plan → implementation cycle.
|
|
70
|
+
- For appropriately-scoped projects, ask questions one at a time to refine the idea
|
|
71
|
+
- Prefer multiple choice questions when possible, but open-ended is fine too
|
|
72
|
+
- Only one question per message - if a topic needs more exploration, break it into multiple questions
|
|
73
|
+
- Focus on understanding: purpose, constraints, success criteria
|
|
74
|
+
|
|
75
|
+
**Exploring approaches:**
|
|
76
|
+
|
|
77
|
+
- Propose 2-3 different approaches with trade-offs
|
|
78
|
+
- Present options conversationally with your recommendation and reasoning
|
|
79
|
+
- Lead with your recommended option and explain why
|
|
80
|
+
|
|
81
|
+
**Presenting the design:**
|
|
82
|
+
|
|
83
|
+
- Once you believe you understand what you're building, present the design
|
|
84
|
+
- Scale each section to its complexity: a few sentences if straightforward, up to 200-300 words if nuanced
|
|
85
|
+
- Ask after each section whether it looks right so far
|
|
86
|
+
- Cover: architecture, components, data flow, error handling, testing
|
|
87
|
+
- Be ready to go back and clarify if something doesn't make sense
|
|
88
|
+
|
|
89
|
+
**Design for isolation and clarity:**
|
|
90
|
+
|
|
91
|
+
- Break the system into smaller units that each have one clear purpose, communicate through well-defined interfaces, and can be understood and tested independently
|
|
92
|
+
- For each unit, you should be able to answer: what does it do, how do you use it, and what does it depend on?
|
|
93
|
+
- Can someone understand what a unit does without reading its internals? Can you change the internals without breaking consumers? If not, the boundaries need work.
|
|
94
|
+
- Smaller, well-bounded units are also easier for you to work with - you reason better about code you can hold in context at once, and your edits are more reliable when files are focused. When a file grows large, that's often a signal that it's doing too much.
|
|
95
|
+
|
|
96
|
+
**Working in existing codebases:**
|
|
97
|
+
|
|
98
|
+
- Explore the current structure before proposing changes. Follow existing patterns.
|
|
99
|
+
- Where existing code has problems that affect the work (e.g., a file that's grown too large, unclear boundaries, tangled responsibilities), include targeted improvements as part of the design - the way a good developer improves code they're working in.
|
|
100
|
+
- Don't propose unrelated refactoring. Stay focused on what serves the current goal.
|
|
101
|
+
|
|
102
|
+
## After the Design
|
|
103
|
+
|
|
104
|
+
**Documentation:**
|
|
105
|
+
|
|
106
|
+
- Write the validated design (spec) to `docs/superpowers/specs/YYYY-MM-DD-<topic>-design.md`
|
|
107
|
+
- (User preferences for spec location override this default)
|
|
108
|
+
- Use elements-of-style:writing-clearly-and-concisely skill if available
|
|
109
|
+
- Commit the design document to git
|
|
110
|
+
|
|
111
|
+
**Spec Self-Review:**
|
|
112
|
+
After writing the spec document, look at it with fresh eyes:
|
|
113
|
+
|
|
114
|
+
1. **Placeholder scan:** Any "TBD", "TODO", incomplete sections, or vague requirements? Fix them.
|
|
115
|
+
2. **Internal consistency:** Do any sections contradict each other? Does the architecture match the feature descriptions?
|
|
116
|
+
3. **Scope check:** Is this focused enough for a single implementation plan, or does it need decomposition?
|
|
117
|
+
4. **Ambiguity check:** Could any requirement be interpreted two different ways? If so, pick one and make it explicit.
|
|
118
|
+
|
|
119
|
+
Fix any issues inline. No need to re-review — just fix and move on.
|
|
120
|
+
|
|
121
|
+
**User Review Gate:**
|
|
122
|
+
After the spec review loop passes, ask the user to review the written spec before proceeding:
|
|
123
|
+
|
|
124
|
+
> "Spec written and committed to `<path>`. Please review it and let me know if you want to make any changes before we start writing out the implementation plan."
|
|
125
|
+
|
|
126
|
+
Wait for the user's response. If they request changes, make them and re-run the spec review loop. Only proceed once the user approves.
|
|
127
|
+
|
|
128
|
+
**Implementation:**
|
|
129
|
+
|
|
130
|
+
- Invoke the writing-plans skill to create a detailed implementation plan
|
|
131
|
+
- Do NOT invoke any other skill. writing-plans is the next step.
|
|
132
|
+
|
|
133
|
+
## Key Principles
|
|
134
|
+
|
|
135
|
+
- **One question at a time** - Don't overwhelm with multiple questions
|
|
136
|
+
- **Multiple choice preferred** - Easier to answer than open-ended when possible
|
|
137
|
+
- **YAGNI ruthlessly** - Remove unnecessary features from all designs
|
|
138
|
+
- **Explore alternatives** - Always propose 2-3 approaches before settling
|
|
139
|
+
- **Incremental validation** - Present design, get approval before moving on
|
|
140
|
+
- **Be flexible** - Go back and clarify when something doesn't make sense
|
|
141
|
+
|
|
142
|
+
## Visual Companion
|
|
143
|
+
|
|
144
|
+
A browser-based companion for showing mockups, diagrams, and visual options during brainstorming. Available as a tool — not a mode. Accepting the companion means it's available for questions that benefit from visual treatment; it does NOT mean every question goes through the browser.
|
|
145
|
+
|
|
146
|
+
**Offering the companion (just-in-time):** Do NOT offer it upfront. Wait until a question would genuinely be clearer shown than told — a real mockup / layout / diagram question, not merely a UI *topic*. The first time that happens, offer it then, as its own message:
|
|
147
|
+
> "This next part might be easier if I show you — I can put together mockups, diagrams, and comparisons in a browser tab as we go. It's still new and can be token-intensive. Want me to? I'll open it for you."
|
|
148
|
+
|
|
149
|
+
**This offer MUST be its own message.** Only the offer — no clarifying question, summary, or other content. Wait for the user's response. If they accept, start the server with `--open` so their browser opens to the first screen automatically. If they decline, continue text-only and don't offer again unless they raise it.
|
|
150
|
+
|
|
151
|
+
**Per-question decision:** Even after the user accepts, decide FOR EACH QUESTION whether to use the browser or the terminal. The test: **would the user understand this better by seeing it than reading it?**
|
|
152
|
+
|
|
153
|
+
- **Use the browser** for content that IS visual — mockups, wireframes, layout comparisons, architecture diagrams, side-by-side visual designs
|
|
154
|
+
- **Use the terminal** for content that is text — requirements questions, conceptual choices, tradeoff lists, A/B/C/D text options, scope decisions
|
|
155
|
+
|
|
156
|
+
A question about a UI topic is not automatically a visual question. "What does personality mean in this context?" is a conceptual question — use the terminal. "Which wizard layout works better?" is a visual question — use the browser.
|
|
157
|
+
|
|
158
|
+
If they agree to the companion, read the detailed guide before proceeding:
|
|
159
|
+
`skills/brainstorming/visual-companion.md`
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>Superpowers Brainstorming</title>
|
|
6
|
+
<style>
|
|
7
|
+
/*
|
|
8
|
+
* BRAINSTORM COMPANION FRAME TEMPLATE
|
|
9
|
+
*
|
|
10
|
+
* This template provides a consistent frame with:
|
|
11
|
+
* - OS-aware light/dark theming
|
|
12
|
+
* - Header branding and connection status
|
|
13
|
+
* - Scrollable main content area
|
|
14
|
+
* - CSS helpers for common UI patterns
|
|
15
|
+
*
|
|
16
|
+
* Content is injected via placeholder comment in #frame-content.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
20
|
+
html, body { height: 100%; overflow: hidden; }
|
|
21
|
+
|
|
22
|
+
/* ===== THEME VARIABLES ===== */
|
|
23
|
+
:root {
|
|
24
|
+
--bg-primary: #f5f5f7;
|
|
25
|
+
--bg-secondary: #ffffff;
|
|
26
|
+
--bg-tertiary: #e5e5e7;
|
|
27
|
+
--border: #d1d1d6;
|
|
28
|
+
--text-primary: #1d1d1f;
|
|
29
|
+
--text-secondary: #86868b;
|
|
30
|
+
--text-tertiary: #aeaeb2;
|
|
31
|
+
--accent: #0071e3;
|
|
32
|
+
--accent-hover: #0077ed;
|
|
33
|
+
--success: #34c759;
|
|
34
|
+
--warning: #ff9f0a;
|
|
35
|
+
--error: #ff3b30;
|
|
36
|
+
--selected-bg: #e8f4fd;
|
|
37
|
+
--selected-border: #0071e3;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@media (prefers-color-scheme: dark) {
|
|
41
|
+
:root {
|
|
42
|
+
--bg-primary: #1d1d1f;
|
|
43
|
+
--bg-secondary: #2d2d2f;
|
|
44
|
+
--bg-tertiary: #3d3d3f;
|
|
45
|
+
--border: #424245;
|
|
46
|
+
--text-primary: #f5f5f7;
|
|
47
|
+
--text-secondary: #86868b;
|
|
48
|
+
--text-tertiary: #636366;
|
|
49
|
+
--accent: #0a84ff;
|
|
50
|
+
--accent-hover: #409cff;
|
|
51
|
+
--selected-bg: rgba(10, 132, 255, 0.15);
|
|
52
|
+
--selected-border: #0a84ff;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
body {
|
|
57
|
+
font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
|
|
58
|
+
background: var(--bg-primary);
|
|
59
|
+
color: var(--text-primary);
|
|
60
|
+
display: flex;
|
|
61
|
+
flex-direction: column;
|
|
62
|
+
line-height: 1.5;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/* ===== FRAME STRUCTURE ===== */
|
|
66
|
+
.brand { display: flex; align-items: center; min-width: 0; overflow: hidden; color: var(--text-secondary); line-height: 1; }
|
|
67
|
+
.brand a { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; min-width: 0; max-width: 100%; line-height: 1; }
|
|
68
|
+
.brand-copy { display: block; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; line-height: 1; transform: translateY(-1px); }
|
|
69
|
+
.brand-logo { display: block; height: 1em; width: auto; max-width: 180px; flex-shrink: 0; filter: invert(1); }
|
|
70
|
+
@media (prefers-color-scheme: dark) {
|
|
71
|
+
.brand-logo { filter: none; }
|
|
72
|
+
}
|
|
73
|
+
.status { font-size: 0.7rem; color: var(--status-color, var(--success)); display: flex; align-items: center; gap: 0.4rem; justify-self: end; white-space: nowrap; line-height: 1; }
|
|
74
|
+
.status::before { content: ''; width: 6px; height: 6px; background: var(--status-color, var(--success)); border-radius: 50%; }
|
|
75
|
+
|
|
76
|
+
.main { flex: 1; overflow-y: auto; }
|
|
77
|
+
#frame-content { padding: 2rem; min-height: 100%; }
|
|
78
|
+
|
|
79
|
+
.header {
|
|
80
|
+
background: var(--bg-secondary);
|
|
81
|
+
border-bottom: 1px solid var(--border);
|
|
82
|
+
padding: 0.5rem 1.5rem;
|
|
83
|
+
flex-shrink: 0;
|
|
84
|
+
display: grid;
|
|
85
|
+
grid-template-columns: minmax(0, 1fr) auto;
|
|
86
|
+
align-items: center;
|
|
87
|
+
gap: 1rem;
|
|
88
|
+
min-height: 42px;
|
|
89
|
+
}
|
|
90
|
+
.header .brand { justify-self: start; width: 100%; font-size: 0.75rem; line-height: 1; }
|
|
91
|
+
.header .status { grid-column: 2; line-height: 1; }
|
|
92
|
+
.header span {
|
|
93
|
+
font-size: 0.75rem;
|
|
94
|
+
color: var(--text-secondary);
|
|
95
|
+
}
|
|
96
|
+
.header .selected-text {
|
|
97
|
+
color: var(--accent);
|
|
98
|
+
font-weight: 500;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/* ===== TYPOGRAPHY ===== */
|
|
102
|
+
h2 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
|
|
103
|
+
h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.25rem; }
|
|
104
|
+
.subtitle { color: var(--text-secondary); margin-bottom: 1.5rem; }
|
|
105
|
+
.section { margin-bottom: 2rem; }
|
|
106
|
+
.label { font-size: 0.7rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
|
|
107
|
+
|
|
108
|
+
/* ===== OPTIONS (for A/B/C choices) ===== */
|
|
109
|
+
.options { display: flex; flex-direction: column; gap: 0.75rem; }
|
|
110
|
+
.option {
|
|
111
|
+
background: var(--bg-secondary);
|
|
112
|
+
border: 2px solid var(--border);
|
|
113
|
+
border-radius: 12px;
|
|
114
|
+
padding: 1rem 1.25rem;
|
|
115
|
+
cursor: pointer;
|
|
116
|
+
transition: all 0.15s ease;
|
|
117
|
+
display: flex;
|
|
118
|
+
align-items: flex-start;
|
|
119
|
+
gap: 1rem;
|
|
120
|
+
}
|
|
121
|
+
.option:hover { border-color: var(--accent); }
|
|
122
|
+
.option.selected { background: var(--selected-bg); border-color: var(--selected-border); }
|
|
123
|
+
.option .letter {
|
|
124
|
+
background: var(--bg-tertiary);
|
|
125
|
+
color: var(--text-secondary);
|
|
126
|
+
width: 1.75rem; height: 1.75rem;
|
|
127
|
+
border-radius: 6px;
|
|
128
|
+
display: flex; align-items: center; justify-content: center;
|
|
129
|
+
font-weight: 600; font-size: 0.85rem; flex-shrink: 0;
|
|
130
|
+
}
|
|
131
|
+
.option.selected .letter { background: var(--accent); color: white; }
|
|
132
|
+
.option .content { flex: 1; }
|
|
133
|
+
.option .content h3 { font-size: 0.95rem; margin-bottom: 0.15rem; }
|
|
134
|
+
.option .content p { color: var(--text-secondary); font-size: 0.85rem; margin: 0; }
|
|
135
|
+
|
|
136
|
+
/* ===== CARDS (for showing designs/mockups) ===== */
|
|
137
|
+
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
|
|
138
|
+
.card {
|
|
139
|
+
background: var(--bg-secondary);
|
|
140
|
+
border: 1px solid var(--border);
|
|
141
|
+
border-radius: 12px;
|
|
142
|
+
overflow: hidden;
|
|
143
|
+
cursor: pointer;
|
|
144
|
+
transition: all 0.15s ease;
|
|
145
|
+
}
|
|
146
|
+
.card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
|
|
147
|
+
.card.selected { border-color: var(--selected-border); border-width: 2px; }
|
|
148
|
+
.card-image { background: var(--bg-tertiary); aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; }
|
|
149
|
+
.card-body { padding: 1rem; }
|
|
150
|
+
.card-body h3 { margin-bottom: 0.25rem; }
|
|
151
|
+
.card-body p { color: var(--text-secondary); font-size: 0.85rem; }
|
|
152
|
+
|
|
153
|
+
/* ===== MOCKUP CONTAINER ===== */
|
|
154
|
+
.mockup {
|
|
155
|
+
background: var(--bg-secondary);
|
|
156
|
+
border: 1px solid var(--border);
|
|
157
|
+
border-radius: 12px;
|
|
158
|
+
overflow: hidden;
|
|
159
|
+
margin-bottom: 1.5rem;
|
|
160
|
+
}
|
|
161
|
+
.mockup-header {
|
|
162
|
+
background: var(--bg-tertiary);
|
|
163
|
+
padding: 0.5rem 1rem;
|
|
164
|
+
font-size: 0.75rem;
|
|
165
|
+
color: var(--text-secondary);
|
|
166
|
+
border-bottom: 1px solid var(--border);
|
|
167
|
+
}
|
|
168
|
+
.mockup-body { padding: 1.5rem; }
|
|
169
|
+
|
|
170
|
+
/* ===== SPLIT VIEW (side-by-side comparison) ===== */
|
|
171
|
+
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
|
|
172
|
+
@media (max-width: 700px) { .split { grid-template-columns: 1fr; } }
|
|
173
|
+
|
|
174
|
+
/* ===== PROS/CONS ===== */
|
|
175
|
+
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1rem 0; }
|
|
176
|
+
.pros, .cons { background: var(--bg-secondary); border-radius: 8px; padding: 1rem; }
|
|
177
|
+
.pros h4 { color: var(--success); font-size: 0.85rem; margin-bottom: 0.5rem; }
|
|
178
|
+
.cons h4 { color: var(--error); font-size: 0.85rem; margin-bottom: 0.5rem; }
|
|
179
|
+
.pros ul, .cons ul { margin-left: 1.25rem; font-size: 0.85rem; color: var(--text-secondary); }
|
|
180
|
+
.pros li, .cons li { margin-bottom: 0.25rem; }
|
|
181
|
+
|
|
182
|
+
/* ===== PLACEHOLDER (for mockup areas) ===== */
|
|
183
|
+
.placeholder {
|
|
184
|
+
background: var(--bg-tertiary);
|
|
185
|
+
border: 2px dashed var(--border);
|
|
186
|
+
border-radius: 8px;
|
|
187
|
+
padding: 2rem;
|
|
188
|
+
text-align: center;
|
|
189
|
+
color: var(--text-tertiary);
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
/* ===== INLINE MOCKUP ELEMENTS ===== */
|
|
193
|
+
.mock-nav { background: var(--accent); color: white; padding: 0.75rem 1rem; display: flex; gap: 1.5rem; font-size: 0.9rem; }
|
|
194
|
+
.mock-sidebar { background: var(--bg-tertiary); padding: 1rem; min-width: 180px; }
|
|
195
|
+
.mock-content { padding: 1.5rem; flex: 1; }
|
|
196
|
+
.mock-button { background: var(--accent); color: white; border: none; padding: 0.5rem 1rem; border-radius: 6px; font-size: 0.85rem; }
|
|
197
|
+
.mock-input { background: var(--bg-primary); border: 1px solid var(--border); border-radius: 6px; padding: 0.5rem; width: 100%; }
|
|
198
|
+
</style>
|
|
199
|
+
</head>
|
|
200
|
+
<body>
|
|
201
|
+
<div class="header">
|
|
202
|
+
<!-- BRANDING -->
|
|
203
|
+
<div class="status">Connecting…</div>
|
|
204
|
+
</div>
|
|
205
|
+
|
|
206
|
+
<div class="main">
|
|
207
|
+
<div id="frame-content">
|
|
208
|
+
<!-- CONTENT -->
|
|
209
|
+
</div>
|
|
210
|
+
</div>
|
|
211
|
+
|
|
212
|
+
</body>
|
|
213
|
+
</html>
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
const MIN_RECONNECT_MS = 500;
|
|
3
|
+
const MAX_RECONNECT_MS = 30000;
|
|
4
|
+
const TOMBSTONE_AFTER_MS = 15000; // show the "paused" overlay after this long disconnected
|
|
5
|
+
|
|
6
|
+
// Pure: next backoff delay (doubles, capped). Exported for unit tests.
|
|
7
|
+
function nextReconnectDelay(current, max) {
|
|
8
|
+
return Math.min(current * 2, max);
|
|
9
|
+
}
|
|
10
|
+
if (typeof module !== 'undefined' && module.exports) {
|
|
11
|
+
module.exports = { nextReconnectDelay, MIN_RECONNECT_MS, MAX_RECONNECT_MS, TOMBSTONE_AFTER_MS };
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
// Everything below is browser-only; bail out when loaded in Node (tests).
|
|
15
|
+
if (typeof window === 'undefined') return;
|
|
16
|
+
|
|
17
|
+
let ws = null;
|
|
18
|
+
let eventQueue = [];
|
|
19
|
+
let reconnectDelay = MIN_RECONNECT_MS;
|
|
20
|
+
let reconnectTimer = null;
|
|
21
|
+
let disconnectedSince = null;
|
|
22
|
+
let everConnected = false;
|
|
23
|
+
let tombstoneShown = false;
|
|
24
|
+
|
|
25
|
+
function sessionKey() {
|
|
26
|
+
try {
|
|
27
|
+
return window.sessionStorage && window.sessionStorage.getItem('brainstorm-session-key');
|
|
28
|
+
} catch (e) {}
|
|
29
|
+
return null;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
function websocketUrl() {
|
|
33
|
+
const key = sessionKey();
|
|
34
|
+
return 'ws://' + window.location.host + (key ? '/?key=' + encodeURIComponent(key) : '');
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function reloadAfterRecovery() {
|
|
38
|
+
const key = sessionKey();
|
|
39
|
+
if (key) {
|
|
40
|
+
window.location.replace('/?key=' + encodeURIComponent(key));
|
|
41
|
+
} else {
|
|
42
|
+
window.location.reload();
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// Reflect connection state in the frame's status pill (absent on full-doc screens).
|
|
47
|
+
function setStatus(state) {
|
|
48
|
+
const el = document.querySelector('.status');
|
|
49
|
+
if (!el) return;
|
|
50
|
+
const map = {
|
|
51
|
+
connecting: ['Connecting…', 'var(--text-tertiary)'],
|
|
52
|
+
connected: ['Connected', 'var(--success)'],
|
|
53
|
+
reconnecting: ['Reconnecting…', 'var(--warning)'],
|
|
54
|
+
disconnected: ['Disconnected', 'var(--error)']
|
|
55
|
+
};
|
|
56
|
+
const [text, color] = map[state] || map.disconnected;
|
|
57
|
+
el.textContent = text;
|
|
58
|
+
el.style.setProperty('--status-color', color);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
// Self-styled so it works on framed and full-document screens alike.
|
|
62
|
+
function showTombstone() {
|
|
63
|
+
if (tombstoneShown) return;
|
|
64
|
+
tombstoneShown = true;
|
|
65
|
+
const el = document.createElement('div');
|
|
66
|
+
el.id = 'bs-tombstone';
|
|
67
|
+
el.style.cssText = 'position:fixed;inset:0;z-index:99999;display:flex;' +
|
|
68
|
+
'align-items:center;justify-content:center;padding:2rem;text-align:center;' +
|
|
69
|
+
'background:rgba(20,20,22,0.92);color:#f5f5f7;font-family:system-ui,sans-serif';
|
|
70
|
+
el.innerHTML = '<div style="max-width:480px">' +
|
|
71
|
+
'<h2 style="margin:0 0 .5rem;font-weight:600">Companion paused</h2>' +
|
|
72
|
+
'<p style="margin:0;opacity:.85">This brainstorm companion has stopped. ' +
|
|
73
|
+
'Ask your coding agent to bring it back — this page reconnects automatically.</p></div>';
|
|
74
|
+
if (document.body) document.body.appendChild(el);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
function connect() {
|
|
78
|
+
if (reconnectTimer) { clearTimeout(reconnectTimer); reconnectTimer = null; }
|
|
79
|
+
setStatus(everConnected ? 'reconnecting' : 'connecting');
|
|
80
|
+
ws = new WebSocket(websocketUrl());
|
|
81
|
+
|
|
82
|
+
ws.onopen = () => {
|
|
83
|
+
const recovered = tombstoneShown;
|
|
84
|
+
everConnected = true;
|
|
85
|
+
disconnectedSince = null;
|
|
86
|
+
reconnectDelay = MIN_RECONNECT_MS;
|
|
87
|
+
tombstoneShown = false;
|
|
88
|
+
setStatus('connected');
|
|
89
|
+
eventQueue.forEach(e => ws.send(JSON.stringify(e)));
|
|
90
|
+
eventQueue = [];
|
|
91
|
+
// Recovered from a tombstoned outage (e.g. the server restarted on the same
|
|
92
|
+
// port) — reload through the keyed bootstrap when possible so the cookie is
|
|
93
|
+
// refreshed before the visible URL returns to bare /.
|
|
94
|
+
if (recovered) reloadAfterRecovery();
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
ws.onmessage = (msg) => {
|
|
98
|
+
let data;
|
|
99
|
+
try { data = JSON.parse(msg.data); } catch (e) { return; }
|
|
100
|
+
if (data.type === 'reload') window.location.reload();
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
ws.onclose = () => {
|
|
104
|
+
ws = null;
|
|
105
|
+
if (disconnectedSince === null) disconnectedSince = Date.now();
|
|
106
|
+
if (Date.now() - disconnectedSince >= TOMBSTONE_AFTER_MS) {
|
|
107
|
+
setStatus('disconnected');
|
|
108
|
+
showTombstone();
|
|
109
|
+
} else {
|
|
110
|
+
setStatus('reconnecting');
|
|
111
|
+
}
|
|
112
|
+
reconnectTimer = setTimeout(connect, reconnectDelay);
|
|
113
|
+
reconnectDelay = nextReconnectDelay(reconnectDelay, MAX_RECONNECT_MS);
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
// Let onclose own reconnection so we don't schedule it twice.
|
|
117
|
+
ws.onerror = () => { try { ws.close(); } catch (e) {} };
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
function sendEvent(event) {
|
|
121
|
+
event.timestamp = Date.now();
|
|
122
|
+
if (ws && ws.readyState === WebSocket.OPEN) {
|
|
123
|
+
ws.send(JSON.stringify(event));
|
|
124
|
+
} else {
|
|
125
|
+
eventQueue.push(event);
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// Capture clicks on choice elements
|
|
130
|
+
document.addEventListener('click', (e) => {
|
|
131
|
+
const target = e.target.closest('[data-choice]');
|
|
132
|
+
if (!target) return;
|
|
133
|
+
|
|
134
|
+
sendEvent({
|
|
135
|
+
type: 'click',
|
|
136
|
+
text: target.textContent.trim(),
|
|
137
|
+
choice: target.dataset.choice,
|
|
138
|
+
id: target.id || null
|
|
139
|
+
});
|
|
140
|
+
|
|
141
|
+
});
|
|
142
|
+
|
|
143
|
+
// Frame UI: selection tracking
|
|
144
|
+
window.selectedChoice = null;
|
|
145
|
+
|
|
146
|
+
window.toggleSelect = function(el) {
|
|
147
|
+
const container = el.closest('.options') || el.closest('.cards');
|
|
148
|
+
const multi = container && container.dataset.multiselect !== undefined;
|
|
149
|
+
if (container && !multi) {
|
|
150
|
+
container.querySelectorAll('.option, .card').forEach(o => o.classList.remove('selected'));
|
|
151
|
+
}
|
|
152
|
+
if (multi) {
|
|
153
|
+
el.classList.toggle('selected');
|
|
154
|
+
} else {
|
|
155
|
+
el.classList.add('selected');
|
|
156
|
+
}
|
|
157
|
+
window.selectedChoice = el.dataset.choice;
|
|
158
|
+
};
|
|
159
|
+
|
|
160
|
+
// Expose API for explicit use
|
|
161
|
+
window.brainstorm = {
|
|
162
|
+
send: sendEvent,
|
|
163
|
+
choice: (value, metadata = {}) => sendEvent({ type: 'choice', value, ...metadata })
|
|
164
|
+
};
|
|
165
|
+
|
|
166
|
+
connect();
|
|
167
|
+
})();
|