@runchr/gstack-antigravity 0.1.1 → 0.1.3
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.
Potentially problematic release.
This version of @runchr/gstack-antigravity might be problematic. Click here for more details.
- package/.agents/skills/gstack/.agents/skills/gstack/SKILL.md +651 -0
- package/.agents/skills/gstack/.agents/skills/gstack-autoplan/SKILL.md +678 -0
- package/.agents/skills/gstack/.agents/skills/gstack-benchmark/SKILL.md +482 -0
- package/.agents/skills/gstack/.agents/skills/gstack-browse/SKILL.md +511 -0
- package/.agents/skills/gstack/.agents/skills/gstack-canary/SKILL.md +486 -0
- package/.agents/skills/gstack/.agents/skills/gstack-careful/SKILL.md +50 -0
- package/.agents/skills/gstack/.agents/skills/gstack-cso/SKILL.md +607 -0
- package/.agents/skills/gstack/.agents/skills/gstack-design-consultation/SKILL.md +615 -0
- package/.agents/skills/gstack/.agents/skills/gstack-design-review/SKILL.md +988 -0
- package/.agents/skills/gstack/.agents/skills/gstack-document-release/SKILL.md +604 -0
- package/.agents/skills/gstack/.agents/skills/gstack-freeze/SKILL.md +67 -0
- package/.agents/skills/gstack/.agents/skills/gstack-guard/SKILL.md +62 -0
- package/.agents/skills/gstack/.agents/skills/gstack-investigate/SKILL.md +415 -0
- package/.agents/skills/gstack/.agents/skills/gstack-land-and-deploy/SKILL.md +873 -0
- package/.agents/skills/gstack/.agents/skills/gstack-office-hours/SKILL.md +986 -0
- package/.agents/skills/gstack/.agents/skills/gstack-plan-ceo-review/SKILL.md +1268 -0
- package/.agents/skills/gstack/.agents/skills/gstack-plan-design-review/SKILL.md +668 -0
- package/.agents/skills/gstack/.agents/skills/gstack-plan-eng-review/SKILL.md +826 -0
- package/.agents/skills/gstack/.agents/skills/gstack-qa/SKILL.md +1006 -0
- package/.agents/skills/gstack/.agents/skills/gstack-qa-only/SKILL.md +626 -0
- package/.agents/skills/gstack/.agents/skills/gstack-retro/SKILL.md +1065 -0
- package/.agents/skills/gstack/.agents/skills/gstack-review/SKILL.md +704 -0
- package/.agents/skills/gstack/.agents/skills/gstack-setup-browser-cookies/SKILL.md +325 -0
- package/.agents/skills/gstack/.agents/skills/gstack-setup-deploy/SKILL.md +450 -0
- package/.agents/skills/gstack/.agents/skills/gstack-ship/SKILL.md +1312 -0
- package/.agents/skills/gstack/.agents/skills/gstack-unfreeze/SKILL.md +36 -0
- package/.agents/skills/gstack/.agents/skills/gstack-upgrade/SKILL.md +220 -0
- package/.agents/skills/gstack/.env.example +5 -0
- package/.agents/skills/gstack/.github/workflows/skill-docs.yml +17 -0
- package/.agents/skills/gstack/AGENTS.md +49 -0
- package/.agents/skills/gstack/ARCHITECTURE.md +359 -0
- package/.agents/skills/gstack/BROWSER.md +271 -0
- package/.agents/skills/gstack/CHANGELOG.md +800 -0
- package/.agents/skills/gstack/CLAUDE.md +284 -0
- package/.agents/skills/gstack/CONTRIBUTING.md +370 -0
- package/.agents/skills/gstack/ETHOS.md +129 -0
- package/.agents/skills/gstack/LICENSE +21 -0
- package/.agents/skills/gstack/README.md +228 -0
- package/.agents/skills/gstack/SKILL.md +657 -0
- package/.agents/skills/gstack/SKILL.md.tmpl +281 -0
- package/.agents/skills/gstack/TODOS.md +564 -0
- package/.agents/skills/gstack/VERSION +1 -0
- package/.agents/skills/gstack/autoplan/SKILL.md +689 -0
- package/.agents/skills/gstack/autoplan/SKILL.md.tmpl +416 -0
- package/.agents/skills/gstack/benchmark/SKILL.md +489 -0
- package/.agents/skills/gstack/benchmark/SKILL.md.tmpl +233 -0
- package/.agents/skills/gstack/bin/dev-setup +68 -0
- package/.agents/skills/gstack/bin/dev-teardown +56 -0
- package/.agents/skills/gstack/bin/gstack-analytics +191 -0
- package/.agents/skills/gstack/bin/gstack-community-dashboard +113 -0
- package/.agents/skills/gstack/bin/gstack-config +38 -0
- package/.agents/skills/gstack/bin/gstack-diff-scope +71 -0
- package/.agents/skills/gstack/bin/gstack-global-discover.ts +591 -0
- package/.agents/skills/gstack/bin/gstack-repo-mode +93 -0
- package/.agents/skills/gstack/bin/gstack-review-log +9 -0
- package/.agents/skills/gstack/bin/gstack-review-read +12 -0
- package/.agents/skills/gstack/bin/gstack-slug +15 -0
- package/.agents/skills/gstack/bin/gstack-telemetry-log +158 -0
- package/.agents/skills/gstack/bin/gstack-telemetry-sync +127 -0
- package/.agents/skills/gstack/bin/gstack-update-check +196 -0
- package/.agents/skills/gstack/browse/SKILL.md +517 -0
- package/.agents/skills/gstack/browse/SKILL.md.tmpl +141 -0
- package/.agents/skills/gstack/browse/bin/find-browse +21 -0
- package/.agents/skills/gstack/browse/bin/remote-slug +14 -0
- package/.agents/skills/gstack/browse/scripts/build-node-server.sh +48 -0
- package/.agents/skills/gstack/browse/src/browser-manager.ts +634 -0
- package/.agents/skills/gstack/browse/src/buffers.ts +137 -0
- package/.agents/skills/gstack/browse/src/bun-polyfill.cjs +109 -0
- package/.agents/skills/gstack/browse/src/cli.ts +420 -0
- package/.agents/skills/gstack/browse/src/commands.ts +111 -0
- package/.agents/skills/gstack/browse/src/config.ts +150 -0
- package/.agents/skills/gstack/browse/src/cookie-import-browser.ts +417 -0
- package/.agents/skills/gstack/browse/src/cookie-picker-routes.ts +207 -0
- package/.agents/skills/gstack/browse/src/cookie-picker-ui.ts +541 -0
- package/.agents/skills/gstack/browse/src/find-browse.ts +61 -0
- package/.agents/skills/gstack/browse/src/meta-commands.ts +269 -0
- package/.agents/skills/gstack/browse/src/platform.ts +17 -0
- package/.agents/skills/gstack/browse/src/read-commands.ts +335 -0
- package/.agents/skills/gstack/browse/src/server.ts +369 -0
- package/.agents/skills/gstack/browse/src/snapshot.ts +398 -0
- package/.agents/skills/gstack/browse/src/url-validation.ts +91 -0
- package/.agents/skills/gstack/browse/src/write-commands.ts +352 -0
- package/.agents/skills/gstack/browse/test/bun-polyfill.test.ts +72 -0
- package/.agents/skills/gstack/browse/test/commands.test.ts +1836 -0
- package/.agents/skills/gstack/browse/test/config.test.ts +250 -0
- package/.agents/skills/gstack/browse/test/cookie-import-browser.test.ts +397 -0
- package/.agents/skills/gstack/browse/test/cookie-picker-routes.test.ts +205 -0
- package/.agents/skills/gstack/browse/test/find-browse.test.ts +50 -0
- package/.agents/skills/gstack/browse/test/fixtures/basic.html +33 -0
- package/.agents/skills/gstack/browse/test/fixtures/cursor-interactive.html +22 -0
- package/.agents/skills/gstack/browse/test/fixtures/dialog.html +15 -0
- package/.agents/skills/gstack/browse/test/fixtures/empty.html +2 -0
- package/.agents/skills/gstack/browse/test/fixtures/forms.html +55 -0
- package/.agents/skills/gstack/browse/test/fixtures/qa-eval-checkout.html +108 -0
- package/.agents/skills/gstack/browse/test/fixtures/qa-eval-spa.html +98 -0
- package/.agents/skills/gstack/browse/test/fixtures/qa-eval.html +51 -0
- package/.agents/skills/gstack/browse/test/fixtures/responsive.html +49 -0
- package/.agents/skills/gstack/browse/test/fixtures/snapshot.html +55 -0
- package/.agents/skills/gstack/browse/test/fixtures/spa.html +24 -0
- package/.agents/skills/gstack/browse/test/fixtures/states.html +17 -0
- package/.agents/skills/gstack/browse/test/fixtures/upload.html +25 -0
- package/.agents/skills/gstack/browse/test/gstack-config.test.ts +125 -0
- package/.agents/skills/gstack/browse/test/gstack-update-check.test.ts +467 -0
- package/.agents/skills/gstack/browse/test/handoff.test.ts +235 -0
- package/.agents/skills/gstack/browse/test/path-validation.test.ts +63 -0
- package/.agents/skills/gstack/browse/test/platform.test.ts +37 -0
- package/.agents/skills/gstack/browse/test/snapshot.test.ts +467 -0
- package/.agents/skills/gstack/browse/test/test-server.ts +57 -0
- package/.agents/skills/gstack/browse/test/url-validation.test.ts +72 -0
- package/.agents/skills/gstack/canary/SKILL.md +493 -0
- package/.agents/skills/gstack/canary/SKILL.md.tmpl +220 -0
- package/.agents/skills/gstack/careful/SKILL.md +59 -0
- package/.agents/skills/gstack/careful/SKILL.md.tmpl +57 -0
- package/.agents/skills/gstack/careful/bin/check-careful.sh +112 -0
- package/.agents/skills/gstack/codex/SKILL.md +677 -0
- package/.agents/skills/gstack/codex/SKILL.md.tmpl +356 -0
- package/.agents/skills/gstack/conductor.json +6 -0
- package/.agents/skills/gstack/cso/SKILL.md +615 -0
- package/.agents/skills/gstack/cso/SKILL.md.tmpl +376 -0
- package/.agents/skills/gstack/design-consultation/SKILL.md +625 -0
- package/.agents/skills/gstack/design-consultation/SKILL.md.tmpl +369 -0
- package/.agents/skills/gstack/design-review/SKILL.md +998 -0
- package/.agents/skills/gstack/design-review/SKILL.md.tmpl +262 -0
- package/.agents/skills/gstack/docs/images/github-2013.png +0 -0
- package/.agents/skills/gstack/docs/images/github-2026.png +0 -0
- package/.agents/skills/gstack/docs/skills.md +877 -0
- package/.agents/skills/gstack/document-release/SKILL.md +613 -0
- package/.agents/skills/gstack/document-release/SKILL.md.tmpl +357 -0
- package/.agents/skills/gstack/freeze/SKILL.md +82 -0
- package/.agents/skills/gstack/freeze/SKILL.md.tmpl +80 -0
- package/.agents/skills/gstack/freeze/bin/check-freeze.sh +68 -0
- package/.agents/skills/gstack/gstack-upgrade/SKILL.md +226 -0
- package/.agents/skills/gstack/gstack-upgrade/SKILL.md.tmpl +224 -0
- package/.agents/skills/gstack/guard/SKILL.md +82 -0
- package/.agents/skills/gstack/guard/SKILL.md.tmpl +80 -0
- package/.agents/skills/gstack/investigate/SKILL.md +435 -0
- package/.agents/skills/gstack/investigate/SKILL.md.tmpl +196 -0
- package/.agents/skills/gstack/land-and-deploy/SKILL.md +880 -0
- package/.agents/skills/gstack/land-and-deploy/SKILL.md.tmpl +575 -0
- package/.agents/skills/gstack/office-hours/SKILL.md +996 -0
- package/.agents/skills/gstack/office-hours/SKILL.md.tmpl +624 -0
- package/.agents/skills/gstack/package.json +55 -0
- package/.agents/skills/gstack/plan-ceo-review/SKILL.md +1277 -0
- package/.agents/skills/gstack/plan-ceo-review/SKILL.md.tmpl +838 -0
- package/.agents/skills/gstack/plan-design-review/SKILL.md +676 -0
- package/.agents/skills/gstack/plan-design-review/SKILL.md.tmpl +314 -0
- package/.agents/skills/gstack/plan-eng-review/SKILL.md +836 -0
- package/.agents/skills/gstack/plan-eng-review/SKILL.md.tmpl +279 -0
- package/.agents/skills/gstack/qa/SKILL.md +1016 -0
- package/.agents/skills/gstack/qa/SKILL.md.tmpl +316 -0
- package/.agents/skills/gstack/qa/references/issue-taxonomy.md +85 -0
- package/.agents/skills/gstack/qa/templates/qa-report-template.md +126 -0
- package/.agents/skills/gstack/qa-only/SKILL.md +633 -0
- package/.agents/skills/gstack/qa-only/SKILL.md.tmpl +101 -0
- package/.agents/skills/gstack/retro/SKILL.md +1072 -0
- package/.agents/skills/gstack/retro/SKILL.md.tmpl +833 -0
- package/.agents/skills/gstack/review/SKILL.md +849 -0
- package/.agents/skills/gstack/review/SKILL.md.tmpl +259 -0
- package/.agents/skills/gstack/review/TODOS-format.md +62 -0
- package/.agents/skills/gstack/review/checklist.md +190 -0
- package/.agents/skills/gstack/review/design-checklist.md +132 -0
- package/.agents/skills/gstack/review/greptile-triage.md +220 -0
- package/.agents/skills/gstack/scripts/analytics.ts +190 -0
- package/.agents/skills/gstack/scripts/dev-skill.ts +82 -0
- package/.agents/skills/gstack/scripts/eval-compare.ts +96 -0
- package/.agents/skills/gstack/scripts/eval-list.ts +116 -0
- package/.agents/skills/gstack/scripts/eval-select.ts +86 -0
- package/.agents/skills/gstack/scripts/eval-summary.ts +187 -0
- package/.agents/skills/gstack/scripts/eval-watch.ts +172 -0
- package/.agents/skills/gstack/scripts/gen-skill-docs.ts +2414 -0
- package/.agents/skills/gstack/scripts/skill-check.ts +167 -0
- package/.agents/skills/gstack/setup +269 -0
- package/.agents/skills/gstack/setup-browser-cookies/SKILL.md +330 -0
- package/.agents/skills/gstack/setup-browser-cookies/SKILL.md.tmpl +74 -0
- package/.agents/skills/gstack/setup-deploy/SKILL.md +459 -0
- package/.agents/skills/gstack/setup-deploy/SKILL.md.tmpl +220 -0
- package/.agents/skills/gstack/ship/SKILL.md +1457 -0
- package/.agents/skills/gstack/ship/SKILL.md.tmpl +528 -0
- package/.agents/skills/gstack/supabase/config.sh +10 -0
- package/.agents/skills/gstack/supabase/functions/community-pulse/index.ts +59 -0
- package/.agents/skills/gstack/supabase/functions/telemetry-ingest/index.ts +135 -0
- package/.agents/skills/gstack/supabase/functions/update-check/index.ts +37 -0
- package/.agents/skills/gstack/supabase/migrations/001_telemetry.sql +89 -0
- package/.agents/skills/gstack/test/analytics.test.ts +277 -0
- package/.agents/skills/gstack/test/codex-e2e.test.ts +197 -0
- package/.agents/skills/gstack/test/fixtures/coverage-audit-fixture.ts +76 -0
- package/.agents/skills/gstack/test/fixtures/eval-baselines.json +7 -0
- package/.agents/skills/gstack/test/fixtures/qa-eval-checkout-ground-truth.json +43 -0
- package/.agents/skills/gstack/test/fixtures/qa-eval-ground-truth.json +43 -0
- package/.agents/skills/gstack/test/fixtures/qa-eval-spa-ground-truth.json +43 -0
- package/.agents/skills/gstack/test/fixtures/review-eval-design-slop.css +86 -0
- package/.agents/skills/gstack/test/fixtures/review-eval-design-slop.html +41 -0
- package/.agents/skills/gstack/test/fixtures/review-eval-enum-diff.rb +30 -0
- package/.agents/skills/gstack/test/fixtures/review-eval-enum.rb +27 -0
- package/.agents/skills/gstack/test/fixtures/review-eval-vuln.rb +14 -0
- package/.agents/skills/gstack/test/gemini-e2e.test.ts +173 -0
- package/.agents/skills/gstack/test/gen-skill-docs.test.ts +1049 -0
- package/.agents/skills/gstack/test/global-discover.test.ts +187 -0
- package/.agents/skills/gstack/test/helpers/codex-session-runner.ts +282 -0
- package/.agents/skills/gstack/test/helpers/e2e-helpers.ts +239 -0
- package/.agents/skills/gstack/test/helpers/eval-store.test.ts +548 -0
- package/.agents/skills/gstack/test/helpers/eval-store.ts +689 -0
- package/.agents/skills/gstack/test/helpers/gemini-session-runner.test.ts +104 -0
- package/.agents/skills/gstack/test/helpers/gemini-session-runner.ts +201 -0
- package/.agents/skills/gstack/test/helpers/llm-judge.ts +130 -0
- package/.agents/skills/gstack/test/helpers/observability.test.ts +283 -0
- package/.agents/skills/gstack/test/helpers/session-runner.test.ts +96 -0
- package/.agents/skills/gstack/test/helpers/session-runner.ts +357 -0
- package/.agents/skills/gstack/test/helpers/skill-parser.ts +206 -0
- package/.agents/skills/gstack/test/helpers/touchfiles.ts +260 -0
- package/.agents/skills/gstack/test/hook-scripts.test.ts +373 -0
- package/.agents/skills/gstack/test/skill-e2e-browse.test.ts +293 -0
- package/.agents/skills/gstack/test/skill-e2e-deploy.test.ts +279 -0
- package/.agents/skills/gstack/test/skill-e2e-design.test.ts +614 -0
- package/.agents/skills/gstack/test/skill-e2e-plan.test.ts +538 -0
- package/.agents/skills/gstack/test/skill-e2e-qa-bugs.test.ts +194 -0
- package/.agents/skills/gstack/test/skill-e2e-qa-workflow.test.ts +412 -0
- package/.agents/skills/gstack/test/skill-e2e-review.test.ts +535 -0
- package/.agents/skills/gstack/test/skill-e2e-workflow.test.ts +586 -0
- package/.agents/skills/gstack/test/skill-e2e.test.ts +3325 -0
- package/.agents/skills/gstack/test/skill-llm-eval.test.ts +787 -0
- package/.agents/skills/gstack/test/skill-parser.test.ts +179 -0
- package/.agents/skills/gstack/test/skill-routing-e2e.test.ts +605 -0
- package/.agents/skills/gstack/test/skill-validation.test.ts +1520 -0
- package/.agents/skills/gstack/test/telemetry.test.ts +278 -0
- package/.agents/skills/gstack/test/touchfiles.test.ts +262 -0
- package/.agents/skills/gstack/unfreeze/SKILL.md +40 -0
- package/.agents/skills/gstack/unfreeze/SKILL.md.tmpl +38 -0
- package/package.json +2 -1
|
@@ -0,0 +1,564 @@
|
|
|
1
|
+
# TODOS
|
|
2
|
+
|
|
3
|
+
## Builder Ethos
|
|
4
|
+
|
|
5
|
+
### First-time Search Before Building intro
|
|
6
|
+
|
|
7
|
+
**What:** Add a `generateSearchIntro()` function (like `generateLakeIntro()`) that introduces the Search Before Building principle on first use, with a link to the blog essay.
|
|
8
|
+
|
|
9
|
+
**Why:** Boil the Lake has an intro flow that links to the essay and marks `.completeness-intro-seen`. Search Before Building should have the same pattern for discoverability.
|
|
10
|
+
|
|
11
|
+
**Context:** Blocked on a blog post to link to. When the essay exists, add the intro flow with a `.search-intro-seen` marker file. Pattern: `generateLakeIntro()` at gen-skill-docs.ts:176.
|
|
12
|
+
|
|
13
|
+
**Effort:** S
|
|
14
|
+
**Priority:** P2
|
|
15
|
+
**Depends on:** Blog post about Search Before Building
|
|
16
|
+
|
|
17
|
+
## Browse
|
|
18
|
+
|
|
19
|
+
### Bundle server.ts into compiled binary
|
|
20
|
+
|
|
21
|
+
**What:** Eliminate `resolveServerScript()` fallback chain entirely — bundle server.ts into the compiled browse binary.
|
|
22
|
+
|
|
23
|
+
**Why:** The current fallback chain (check adjacent to cli.ts, check global install) is fragile and caused bugs in v0.3.2. A single compiled binary is simpler and more reliable.
|
|
24
|
+
|
|
25
|
+
**Context:** Bun's `--compile` flag can bundle multiple entry points. The server is currently resolved at runtime via file path lookup. Bundling it removes the resolution step entirely.
|
|
26
|
+
|
|
27
|
+
**Effort:** M
|
|
28
|
+
**Priority:** P2
|
|
29
|
+
**Depends on:** None
|
|
30
|
+
|
|
31
|
+
### Sessions (isolated browser instances)
|
|
32
|
+
|
|
33
|
+
**What:** Isolated browser instances with separate cookies/storage/history, addressable by name.
|
|
34
|
+
|
|
35
|
+
**Why:** Enables parallel testing of different user roles, A/B test verification, and clean auth state management.
|
|
36
|
+
|
|
37
|
+
**Context:** Requires Playwright browser context isolation. Each session gets its own context with independent cookies/localStorage. Prerequisite for video recording (clean context lifecycle) and auth vault.
|
|
38
|
+
|
|
39
|
+
**Effort:** L
|
|
40
|
+
**Priority:** P3
|
|
41
|
+
|
|
42
|
+
### Video recording
|
|
43
|
+
|
|
44
|
+
**What:** Record browser interactions as video (start/stop controls).
|
|
45
|
+
|
|
46
|
+
**Why:** Video evidence in QA reports and PR bodies. Currently deferred because `recreateContext()` destroys page state.
|
|
47
|
+
|
|
48
|
+
**Context:** Needs sessions for clean context lifecycle. Playwright supports video recording per context. Also needs WebM → GIF conversion for PR embedding.
|
|
49
|
+
|
|
50
|
+
**Effort:** M
|
|
51
|
+
**Priority:** P3
|
|
52
|
+
**Depends on:** Sessions
|
|
53
|
+
|
|
54
|
+
### v20 encryption format support
|
|
55
|
+
|
|
56
|
+
**What:** AES-256-GCM support for future Chromium cookie DB versions (currently v10).
|
|
57
|
+
|
|
58
|
+
**Why:** Future Chromium versions may change encryption format. Proactive support prevents breakage.
|
|
59
|
+
|
|
60
|
+
**Effort:** S
|
|
61
|
+
**Priority:** P3
|
|
62
|
+
|
|
63
|
+
### State persistence
|
|
64
|
+
|
|
65
|
+
**What:** Save/load cookies + localStorage to JSON files for reproducible test sessions.
|
|
66
|
+
|
|
67
|
+
**Why:** Enables "resume where I left off" for QA sessions and repeatable auth states.
|
|
68
|
+
|
|
69
|
+
**Context:** The `saveState()`/`restoreState()` helpers from the handoff feature (browser-manager.ts) already capture cookies + localStorage + sessionStorage + URLs. Adding file I/O on top is ~20 lines.
|
|
70
|
+
|
|
71
|
+
**Effort:** S
|
|
72
|
+
**Priority:** P3
|
|
73
|
+
**Depends on:** Sessions
|
|
74
|
+
|
|
75
|
+
### Auth vault
|
|
76
|
+
|
|
77
|
+
**What:** Encrypted credential storage, referenced by name. LLM never sees passwords.
|
|
78
|
+
|
|
79
|
+
**Why:** Security — currently auth credentials flow through the LLM context. Vault keeps secrets out of the AI's view.
|
|
80
|
+
|
|
81
|
+
**Effort:** L
|
|
82
|
+
**Priority:** P3
|
|
83
|
+
**Depends on:** Sessions, state persistence
|
|
84
|
+
|
|
85
|
+
### Iframe support
|
|
86
|
+
|
|
87
|
+
**What:** `frame <sel>` and `frame main` commands for cross-frame interaction.
|
|
88
|
+
|
|
89
|
+
**Why:** Many web apps use iframes (embeds, payment forms, ads). Currently invisible to browse.
|
|
90
|
+
|
|
91
|
+
**Effort:** M
|
|
92
|
+
**Priority:** P4
|
|
93
|
+
|
|
94
|
+
### Semantic locators
|
|
95
|
+
|
|
96
|
+
**What:** `find role/label/text/placeholder/testid` with attached actions.
|
|
97
|
+
|
|
98
|
+
**Why:** More resilient element selection than CSS selectors or ref numbers.
|
|
99
|
+
|
|
100
|
+
**Effort:** M
|
|
101
|
+
**Priority:** P4
|
|
102
|
+
|
|
103
|
+
### Device emulation presets
|
|
104
|
+
|
|
105
|
+
**What:** `set device "iPhone 16 Pro"` for mobile/tablet testing.
|
|
106
|
+
|
|
107
|
+
**Why:** Responsive layout testing without manual viewport resizing.
|
|
108
|
+
|
|
109
|
+
**Effort:** S
|
|
110
|
+
**Priority:** P4
|
|
111
|
+
|
|
112
|
+
### Network mocking/routing
|
|
113
|
+
|
|
114
|
+
**What:** Intercept, block, and mock network requests.
|
|
115
|
+
|
|
116
|
+
**Why:** Test error states, loading states, and offline behavior.
|
|
117
|
+
|
|
118
|
+
**Effort:** M
|
|
119
|
+
**Priority:** P4
|
|
120
|
+
|
|
121
|
+
### Download handling
|
|
122
|
+
|
|
123
|
+
**What:** Click-to-download with path control.
|
|
124
|
+
|
|
125
|
+
**Why:** Test file download flows end-to-end.
|
|
126
|
+
|
|
127
|
+
**Effort:** S
|
|
128
|
+
**Priority:** P4
|
|
129
|
+
|
|
130
|
+
### Content safety
|
|
131
|
+
|
|
132
|
+
**What:** `--max-output` truncation, `--allowed-domains` filtering.
|
|
133
|
+
|
|
134
|
+
**Why:** Prevent context window overflow and restrict navigation to safe domains.
|
|
135
|
+
|
|
136
|
+
**Effort:** S
|
|
137
|
+
**Priority:** P4
|
|
138
|
+
|
|
139
|
+
### Streaming (WebSocket live preview)
|
|
140
|
+
|
|
141
|
+
**What:** WebSocket-based live preview for pair browsing sessions.
|
|
142
|
+
|
|
143
|
+
**Why:** Enables real-time collaboration — human watches AI browse.
|
|
144
|
+
|
|
145
|
+
**Effort:** L
|
|
146
|
+
**Priority:** P4
|
|
147
|
+
|
|
148
|
+
### CDP mode
|
|
149
|
+
|
|
150
|
+
**What:** Connect to already-running Chrome/Electron apps via Chrome DevTools Protocol.
|
|
151
|
+
|
|
152
|
+
**Why:** Test production apps, Electron apps, and existing browser sessions without launching new instances.
|
|
153
|
+
|
|
154
|
+
**Effort:** M
|
|
155
|
+
**Priority:** P4
|
|
156
|
+
|
|
157
|
+
### Linux/Windows cookie decryption
|
|
158
|
+
|
|
159
|
+
**What:** GNOME Keyring / kwallet / DPAPI support for non-macOS cookie import.
|
|
160
|
+
|
|
161
|
+
**Why:** Cross-platform cookie import. Currently macOS-only (Keychain).
|
|
162
|
+
|
|
163
|
+
**Effort:** L
|
|
164
|
+
**Priority:** P4
|
|
165
|
+
|
|
166
|
+
## Ship
|
|
167
|
+
|
|
168
|
+
### Ship log — persistent record of /ship runs
|
|
169
|
+
|
|
170
|
+
**What:** Append structured JSON entry to `.gstack/ship-log.json` at end of every /ship run (version, date, branch, PR URL, review findings, Greptile stats, todos completed, test results).
|
|
171
|
+
|
|
172
|
+
**Why:** /retro has no structured data about shipping velocity. Ship log enables: PRs-per-week trending, review finding rates, Greptile signal over time, test suite growth.
|
|
173
|
+
|
|
174
|
+
**Context:** /retro already reads greptile-history.md — same pattern. Eval persistence (eval-store.ts) shows the JSON append pattern exists in the codebase. ~15 lines in ship template.
|
|
175
|
+
|
|
176
|
+
**Effort:** S
|
|
177
|
+
**Priority:** P2
|
|
178
|
+
**Depends on:** None
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
### Visual verification with screenshots in PR body
|
|
182
|
+
|
|
183
|
+
**What:** /ship Step 7.5: screenshot key pages after push, embed in PR body.
|
|
184
|
+
|
|
185
|
+
**Why:** Visual evidence in PRs. Reviewers see what changed without deploying locally.
|
|
186
|
+
|
|
187
|
+
**Context:** Part of Phase 3.6. Needs S3 upload for image hosting.
|
|
188
|
+
|
|
189
|
+
**Effort:** M
|
|
190
|
+
**Priority:** P2
|
|
191
|
+
**Depends on:** /setup-gstack-upload
|
|
192
|
+
|
|
193
|
+
## Review
|
|
194
|
+
|
|
195
|
+
### Inline PR annotations
|
|
196
|
+
|
|
197
|
+
**What:** /ship and /review post inline review comments at specific file:line locations using `gh api` to create pull request review comments.
|
|
198
|
+
|
|
199
|
+
**Why:** Line-level annotations are more actionable than top-level comments. The PR thread becomes a line-by-line conversation between Greptile, Claude, and human reviewers.
|
|
200
|
+
|
|
201
|
+
**Context:** GitHub supports inline review comments via `gh api repos/$REPO/pulls/$PR/reviews`. Pairs naturally with Phase 3.6 visual annotations.
|
|
202
|
+
|
|
203
|
+
**Effort:** S
|
|
204
|
+
**Priority:** P2
|
|
205
|
+
**Depends on:** None
|
|
206
|
+
|
|
207
|
+
### Greptile training feedback export
|
|
208
|
+
|
|
209
|
+
**What:** Aggregate greptile-history.md into machine-readable JSON summary of false positive patterns, exportable to the Greptile team for model improvement.
|
|
210
|
+
|
|
211
|
+
**Why:** Closes the feedback loop — Greptile can use FP data to stop making the same mistakes on your codebase.
|
|
212
|
+
|
|
213
|
+
**Context:** Was a P3 Future Idea. Upgraded to P2 now that greptile-history.md data infrastructure exists. The signal data is already being collected; this just makes it exportable. ~40 lines.
|
|
214
|
+
|
|
215
|
+
**Effort:** S
|
|
216
|
+
**Priority:** P2
|
|
217
|
+
**Depends on:** Enough FP data accumulated (10+ entries)
|
|
218
|
+
|
|
219
|
+
### Visual review with annotated screenshots
|
|
220
|
+
|
|
221
|
+
**What:** /review Step 4.5: browse PR's preview deploy, annotated screenshots of changed pages, compare against production, check responsive layouts, verify accessibility tree.
|
|
222
|
+
|
|
223
|
+
**Why:** Visual diff catches layout regressions that code review misses.
|
|
224
|
+
|
|
225
|
+
**Context:** Part of Phase 3.6. Needs S3 upload for image hosting.
|
|
226
|
+
|
|
227
|
+
**Effort:** M
|
|
228
|
+
**Priority:** P2
|
|
229
|
+
**Depends on:** /setup-gstack-upload
|
|
230
|
+
|
|
231
|
+
## QA
|
|
232
|
+
|
|
233
|
+
### QA trend tracking
|
|
234
|
+
|
|
235
|
+
**What:** Compare baseline.json over time, detect regressions across QA runs.
|
|
236
|
+
|
|
237
|
+
**Why:** Spot quality trends — is the app getting better or worse?
|
|
238
|
+
|
|
239
|
+
**Context:** QA already writes structured reports. This adds cross-run comparison.
|
|
240
|
+
|
|
241
|
+
**Effort:** S
|
|
242
|
+
**Priority:** P2
|
|
243
|
+
|
|
244
|
+
### CI/CD QA integration
|
|
245
|
+
|
|
246
|
+
**What:** `/qa` as GitHub Action step, fail PR if health score drops.
|
|
247
|
+
|
|
248
|
+
**Why:** Automated quality gate in CI. Catch regressions before merge.
|
|
249
|
+
|
|
250
|
+
**Effort:** M
|
|
251
|
+
**Priority:** P2
|
|
252
|
+
|
|
253
|
+
### Smart default QA tier
|
|
254
|
+
|
|
255
|
+
**What:** After a few runs, check index.md for user's usual tier pick, skip the AskUserQuestion.
|
|
256
|
+
|
|
257
|
+
**Why:** Reduces friction for repeat users.
|
|
258
|
+
|
|
259
|
+
**Effort:** S
|
|
260
|
+
**Priority:** P2
|
|
261
|
+
|
|
262
|
+
### Accessibility audit mode
|
|
263
|
+
|
|
264
|
+
**What:** `--a11y` flag for focused accessibility testing.
|
|
265
|
+
|
|
266
|
+
**Why:** Dedicated accessibility testing beyond the general QA checklist.
|
|
267
|
+
|
|
268
|
+
**Effort:** S
|
|
269
|
+
**Priority:** P3
|
|
270
|
+
|
|
271
|
+
### CI/CD generation for non-GitHub providers
|
|
272
|
+
|
|
273
|
+
**What:** Extend CI/CD bootstrap to generate GitLab CI (`.gitlab-ci.yml`), CircleCI (`.circleci/config.yml`), and Bitrise pipelines.
|
|
274
|
+
|
|
275
|
+
**Why:** Not all projects use GitHub Actions. Universal CI/CD bootstrap would make test bootstrap work for everyone.
|
|
276
|
+
|
|
277
|
+
**Context:** v1 ships with GitHub Actions only. Detection logic already checks for `.gitlab-ci.yml`, `.circleci/`, `bitrise.yml` and skips with an informational note. Each provider needs ~20 lines of template text in `generateTestBootstrap()`.
|
|
278
|
+
|
|
279
|
+
**Effort:** M
|
|
280
|
+
**Priority:** P3
|
|
281
|
+
**Depends on:** Test bootstrap (shipped)
|
|
282
|
+
|
|
283
|
+
### Auto-upgrade weak tests (★) to strong tests (★★★)
|
|
284
|
+
|
|
285
|
+
**What:** When Step 3.4 coverage audit identifies existing ★-rated tests (smoke/trivial assertions), generate improved versions testing edge cases and error paths.
|
|
286
|
+
|
|
287
|
+
**Why:** Many codebases have tests that technically exist but don't catch real bugs — `expect(component).toBeDefined()` isn't testing behavior. Upgrading these closes the gap between "has tests" and "has good tests."
|
|
288
|
+
|
|
289
|
+
**Context:** Requires the quality scoring rubric from the test coverage audit. Modifying existing test files is riskier than creating new ones — needs careful diffing to ensure the upgraded test still passes. Consider creating a companion test file rather than modifying the original.
|
|
290
|
+
|
|
291
|
+
**Effort:** M
|
|
292
|
+
**Priority:** P3
|
|
293
|
+
**Depends on:** Test quality scoring (shipped)
|
|
294
|
+
|
|
295
|
+
## Retro
|
|
296
|
+
|
|
297
|
+
### Deployment health tracking (retro + browse)
|
|
298
|
+
|
|
299
|
+
**What:** Screenshot production state, check perf metrics (page load times), count console errors across key pages, track trends over retro window.
|
|
300
|
+
|
|
301
|
+
**Why:** Retro should include production health alongside code metrics.
|
|
302
|
+
|
|
303
|
+
**Context:** Requires browse integration. Screenshots + metrics fed into retro output.
|
|
304
|
+
|
|
305
|
+
**Effort:** L
|
|
306
|
+
**Priority:** P3
|
|
307
|
+
**Depends on:** Browse sessions
|
|
308
|
+
|
|
309
|
+
## Infrastructure
|
|
310
|
+
|
|
311
|
+
### /setup-gstack-upload skill (S3 bucket)
|
|
312
|
+
|
|
313
|
+
**What:** Configure S3 bucket for image hosting. One-time setup for visual PR annotations.
|
|
314
|
+
|
|
315
|
+
**Why:** Prerequisite for visual PR annotations in /ship and /review.
|
|
316
|
+
|
|
317
|
+
**Effort:** M
|
|
318
|
+
**Priority:** P2
|
|
319
|
+
|
|
320
|
+
### gstack-upload helper
|
|
321
|
+
|
|
322
|
+
**What:** `browse/bin/gstack-upload` — upload file to S3, return public URL.
|
|
323
|
+
|
|
324
|
+
**Why:** Shared utility for all skills that need to embed images in PRs.
|
|
325
|
+
|
|
326
|
+
**Effort:** S
|
|
327
|
+
**Priority:** P2
|
|
328
|
+
**Depends on:** /setup-gstack-upload
|
|
329
|
+
|
|
330
|
+
### WebM to GIF conversion
|
|
331
|
+
|
|
332
|
+
**What:** ffmpeg-based WebM → GIF conversion for video evidence in PRs.
|
|
333
|
+
|
|
334
|
+
**Why:** GitHub PR bodies render GIFs but not WebM. Needed for video recording evidence.
|
|
335
|
+
|
|
336
|
+
**Effort:** S
|
|
337
|
+
**Priority:** P3
|
|
338
|
+
**Depends on:** Video recording
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
### GitHub Actions eval upload
|
|
342
|
+
|
|
343
|
+
**What:** Run eval suite in CI, upload result JSON as artifact, post summary comment on PR.
|
|
344
|
+
|
|
345
|
+
**Why:** CI integration catches quality regressions before merge and provides persistent eval records per PR.
|
|
346
|
+
|
|
347
|
+
**Context:** Requires `ANTHROPIC_API_KEY` in CI secrets. Cost is ~$4/run. Eval persistence system (v0.3.6) writes JSON to `~/.gstack-dev/evals/` — CI would upload as GitHub Actions artifacts and use `eval:compare` to post delta comment.
|
|
348
|
+
|
|
349
|
+
**Effort:** M
|
|
350
|
+
**Priority:** P2
|
|
351
|
+
**Depends on:** Eval persistence (shipped in v0.3.6)
|
|
352
|
+
|
|
353
|
+
### E2E model pinning — SHIPPED
|
|
354
|
+
|
|
355
|
+
~~**What:** Pin E2E tests to claude-sonnet-4-6 for cost efficiency, add retry:2 for flaky LLM responses.~~
|
|
356
|
+
|
|
357
|
+
Shipped: Default model changed to Sonnet for structure tests (~30), Opus retained for quality tests (~10). `--retry 2` added. `EVALS_MODEL` env var for override. `test:e2e:fast` tier added. Rate-limit telemetry (first_response_ms, max_inter_turn_ms) and wall_clock_ms tracking added to eval-store.
|
|
358
|
+
|
|
359
|
+
### Eval web dashboard
|
|
360
|
+
|
|
361
|
+
**What:** `bun run eval:dashboard` serves local HTML with charts: cost trending, detection rate, pass/fail history.
|
|
362
|
+
|
|
363
|
+
**Why:** Visual charts better for spotting trends than CLI tools.
|
|
364
|
+
|
|
365
|
+
**Context:** Reads `~/.gstack-dev/evals/*.json`. ~200 lines HTML + chart.js via Bun HTTP server.
|
|
366
|
+
|
|
367
|
+
**Effort:** M
|
|
368
|
+
**Priority:** P3
|
|
369
|
+
**Depends on:** Eval persistence (shipped in v0.3.6)
|
|
370
|
+
|
|
371
|
+
### CI/CD QA quality gate
|
|
372
|
+
|
|
373
|
+
**What:** Run `/qa` as a GitHub Action step, fail PR if health score drops below threshold.
|
|
374
|
+
|
|
375
|
+
**Why:** Automated quality gate catches regressions before merge. Currently QA is manual — CI integration makes it part of the standard workflow.
|
|
376
|
+
|
|
377
|
+
**Context:** Requires headless browse binary available in CI. The `/qa` skill already produces `baseline.json` with health scores — CI step would compare against the main branch baseline and fail if score drops. Would need `ANTHROPIC_API_KEY` in CI secrets since `/qa` uses Claude.
|
|
378
|
+
|
|
379
|
+
**Effort:** M
|
|
380
|
+
**Priority:** P2
|
|
381
|
+
**Depends on:** None
|
|
382
|
+
|
|
383
|
+
### Cross-platform URL open helper
|
|
384
|
+
|
|
385
|
+
**What:** `gstack-open-url` helper script — detect platform, use `open` (macOS) or `xdg-open` (Linux).
|
|
386
|
+
|
|
387
|
+
**Why:** The first-time Completeness Principle intro uses macOS `open` to launch the essay. If gstack ever supports Linux, this silently fails.
|
|
388
|
+
|
|
389
|
+
**Effort:** S (human: ~30 min / CC: ~2 min)
|
|
390
|
+
**Priority:** P4
|
|
391
|
+
**Depends on:** Nothing
|
|
392
|
+
|
|
393
|
+
### CDP-based DOM mutation detection for ref staleness
|
|
394
|
+
|
|
395
|
+
**What:** Use Chrome DevTools Protocol `DOM.documentUpdated` / MutationObserver events to proactively invalidate stale refs when the DOM changes, without requiring an explicit `snapshot` call.
|
|
396
|
+
|
|
397
|
+
**Why:** Current ref staleness detection (async count() check) only catches stale refs at action time. CDP mutation detection would proactively warn when refs become stale, preventing the 5-second timeout entirely for SPA re-renders.
|
|
398
|
+
|
|
399
|
+
**Context:** Parts 1+2 of ref staleness fix (RefEntry metadata + eager validation via count()) are shipped. This is Part 3 — the most ambitious piece. Requires CDP session alongside Playwright, MutationObserver bridge, and careful performance tuning to avoid overhead on every DOM change.
|
|
400
|
+
|
|
401
|
+
**Effort:** L
|
|
402
|
+
**Priority:** P3
|
|
403
|
+
**Depends on:** Ref staleness Parts 1+2 (shipped)
|
|
404
|
+
|
|
405
|
+
## Office Hours / Design
|
|
406
|
+
|
|
407
|
+
### Design docs → Supabase team store sync
|
|
408
|
+
|
|
409
|
+
**What:** Add design docs (`*-design-*.md`) to the Supabase sync pipeline alongside test plans, retro snapshots, and QA reports.
|
|
410
|
+
|
|
411
|
+
**Why:** Cross-team design discovery at scale. Local `~/.gstack/projects/$SLUG/` keyword-grep discovery works for same-machine users now, but Supabase sync makes it work across the whole team. Duplicate ideas surface, everyone sees what's been explored.
|
|
412
|
+
|
|
413
|
+
**Context:** /office-hours writes design docs to `~/.gstack/projects/$SLUG/`. The team store already syncs test plans, retro snapshots, QA reports. Design docs follow the same pattern — just add a sync adapter.
|
|
414
|
+
|
|
415
|
+
**Effort:** S
|
|
416
|
+
**Priority:** P2
|
|
417
|
+
**Depends on:** `garrytan/team-supabase-store` branch landing on main
|
|
418
|
+
|
|
419
|
+
### /yc-prep skill
|
|
420
|
+
|
|
421
|
+
**What:** Skill that helps founders prepare their YC application after /office-hours identifies strong signal. Pulls from the design doc, structures answers to YC app questions, runs a mock interview.
|
|
422
|
+
|
|
423
|
+
**Why:** Closes the loop. /office-hours identifies the founder, /yc-prep helps them apply well. The design doc already contains most of the raw material for a YC application.
|
|
424
|
+
|
|
425
|
+
**Effort:** M (human: ~2 weeks / CC: ~2 hours)
|
|
426
|
+
**Priority:** P2
|
|
427
|
+
**Depends on:** office-hours founder discovery engine shipping first
|
|
428
|
+
|
|
429
|
+
## Design Review
|
|
430
|
+
|
|
431
|
+
### /plan-design-review + /qa-design-review + /design-consultation — SHIPPED
|
|
432
|
+
|
|
433
|
+
Shipped as v0.5.0 on main. Includes `/plan-design-review` (report-only design audit), `/qa-design-review` (audit + fix loop), and `/design-consultation` (interactive DESIGN.md creation). `{{DESIGN_METHODOLOGY}}` resolver provides shared 80-item design audit checklist.
|
|
434
|
+
|
|
435
|
+
## Document-Release
|
|
436
|
+
|
|
437
|
+
### Auto-invoke /document-release from /ship — SHIPPED
|
|
438
|
+
|
|
439
|
+
Shipped in v0.8.3. Step 8.5 added to `/ship` — after creating the PR, `/ship` automatically reads `document-release/SKILL.md` and executes the doc update workflow. Zero-friction doc updates.
|
|
440
|
+
|
|
441
|
+
### `{{DOC_VOICE}}` shared resolver
|
|
442
|
+
|
|
443
|
+
**What:** Create a placeholder resolver in gen-skill-docs.ts encoding the gstack voice guide (friendly, user-forward, lead with benefits). Inject into /ship Step 5, /document-release Step 5, and reference from CLAUDE.md.
|
|
444
|
+
|
|
445
|
+
**Why:** DRY — voice rules currently live inline in 3 places (CLAUDE.md CHANGELOG style section, /ship Step 5, /document-release Step 5). When the voice evolves, all three drift.
|
|
446
|
+
|
|
447
|
+
**Context:** Same pattern as `{{QA_METHODOLOGY}}` — shared block injected into multiple templates to prevent drift. ~20 lines in gen-skill-docs.ts.
|
|
448
|
+
|
|
449
|
+
**Effort:** S
|
|
450
|
+
**Priority:** P2
|
|
451
|
+
**Depends on:** None
|
|
452
|
+
|
|
453
|
+
## Ship Confidence Dashboard
|
|
454
|
+
|
|
455
|
+
### Smart review relevance detection — PARTIALLY SHIPPED
|
|
456
|
+
|
|
457
|
+
~~**What:** Auto-detect which of the 4 reviews are relevant based on branch changes (skip Design Review if no CSS/view changes, skip Code Review if plan-only).~~
|
|
458
|
+
|
|
459
|
+
`bin/gstack-diff-scope` shipped — categorizes diff into SCOPE_FRONTEND, SCOPE_BACKEND, SCOPE_PROMPTS, SCOPE_TESTS, SCOPE_DOCS, SCOPE_CONFIG. Used by design-review-lite to skip when no frontend files changed. Dashboard integration for conditional row display is a follow-up.
|
|
460
|
+
|
|
461
|
+
**Remaining:** Dashboard conditional row display (hide "Design Review: NOT YET RUN" when SCOPE_FRONTEND=false). Extend to Eng Review (skip for docs-only) and CEO Review (skip for config-only).
|
|
462
|
+
|
|
463
|
+
**Effort:** S
|
|
464
|
+
**Priority:** P3
|
|
465
|
+
**Depends on:** gstack-diff-scope (shipped)
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
## Completeness
|
|
469
|
+
|
|
470
|
+
### Completeness metrics dashboard
|
|
471
|
+
|
|
472
|
+
**What:** Track how often Claude chooses the complete option vs shortcut across gstack sessions. Aggregate into a dashboard showing completeness trend over time.
|
|
473
|
+
|
|
474
|
+
**Why:** Without measurement, we can't know if the Completeness Principle is working. Could surface patterns (e.g., certain skills still bias toward shortcuts).
|
|
475
|
+
|
|
476
|
+
**Context:** Would require logging choices (e.g., append to a JSONL file when AskUserQuestion resolves), parsing them, and displaying trends. Similar pattern to eval persistence.
|
|
477
|
+
|
|
478
|
+
**Effort:** M (human) / S (CC)
|
|
479
|
+
**Priority:** P3
|
|
480
|
+
**Depends on:** Boil the Lake shipped (v0.6.1)
|
|
481
|
+
|
|
482
|
+
## Safety & Observability
|
|
483
|
+
|
|
484
|
+
### On-demand hook skills (/careful, /freeze, /guard) — SHIPPED
|
|
485
|
+
|
|
486
|
+
~~**What:** Three new skills that use Claude Code's session-scoped PreToolUse hooks to add safety guardrails on demand.~~
|
|
487
|
+
|
|
488
|
+
Shipped as `/careful`, `/freeze`, `/guard`, and `/unfreeze` in v0.6.5. Includes hook fire-rate telemetry (pattern name only, no command content) and inline skill activation telemetry.
|
|
489
|
+
|
|
490
|
+
### Skill usage telemetry — SHIPPED
|
|
491
|
+
|
|
492
|
+
~~**What:** Track which skills get invoked, how often, from which repo.~~
|
|
493
|
+
|
|
494
|
+
Shipped in v0.6.5. TemplateContext in gen-skill-docs.ts bakes skill name into preamble telemetry line. Analytics CLI (`bun run analytics`) for querying. /retro integration shows skills-used-this-week.
|
|
495
|
+
|
|
496
|
+
### /investigate scoped debugging enhancements (gated on telemetry)
|
|
497
|
+
|
|
498
|
+
**What:** Six enhancements to /investigate auto-freeze, contingent on telemetry showing the freeze hook actually fires in real debugging sessions.
|
|
499
|
+
|
|
500
|
+
**Why:** /investigate v0.7.1 auto-freezes edits to the module being debugged. If telemetry shows the hook fires often, these enhancements make the experience smarter. If it never fires, the problem wasn't real and these aren't worth building.
|
|
501
|
+
|
|
502
|
+
**Context:** All items are prose additions to `investigate/SKILL.md.tmpl`. No new scripts.
|
|
503
|
+
|
|
504
|
+
**Items:**
|
|
505
|
+
1. Stack trace auto-detection for freeze directory (parse deepest app frame)
|
|
506
|
+
2. Freeze boundary widening (ask to widen instead of hard-block when hitting boundary)
|
|
507
|
+
3. Post-fix auto-unfreeze + full test suite run
|
|
508
|
+
4. Debug instrumentation cleanup (tag with DEBUG-TEMP, remove before commit)
|
|
509
|
+
5. Debug session persistence (~/.gstack/investigate-sessions/ — save investigation for reuse)
|
|
510
|
+
6. Investigation timeline in debug report (hypothesis log with timing)
|
|
511
|
+
|
|
512
|
+
**Effort:** M (all 6 combined)
|
|
513
|
+
**Priority:** P3
|
|
514
|
+
**Depends on:** Telemetry data showing freeze hook fires in real /investigate sessions
|
|
515
|
+
|
|
516
|
+
## Completed
|
|
517
|
+
|
|
518
|
+
### Deploy pipeline (v0.9.8.0)
|
|
519
|
+
- /land-and-deploy — merge PR, wait for CI/deploy, canary verification
|
|
520
|
+
- /canary — post-deploy monitoring loop with anomaly detection
|
|
521
|
+
- /benchmark — performance regression detection with Core Web Vitals
|
|
522
|
+
- /setup-deploy — one-time deploy platform configuration
|
|
523
|
+
- /review Performance & Bundle Impact pass
|
|
524
|
+
- E2E model pinning (Sonnet default, Opus for quality tests)
|
|
525
|
+
- E2E timing telemetry (first_response_ms, max_inter_turn_ms, wall_clock_ms)
|
|
526
|
+
- test:e2e:fast tier, --retry 2 on all E2E scripts
|
|
527
|
+
**Completed:** v0.9.8.0
|
|
528
|
+
|
|
529
|
+
### Phase 1: Foundations (v0.2.0)
|
|
530
|
+
- Rename to gstack
|
|
531
|
+
- Restructure to monorepo layout
|
|
532
|
+
- Setup script for skill symlinks
|
|
533
|
+
- Snapshot command with ref-based element selection
|
|
534
|
+
- Snapshot tests
|
|
535
|
+
**Completed:** v0.2.0
|
|
536
|
+
|
|
537
|
+
### Phase 2: Enhanced Browser (v0.2.0)
|
|
538
|
+
- Annotated screenshots, snapshot diffing, dialog handling, file upload
|
|
539
|
+
- Cursor-interactive elements, element state checks
|
|
540
|
+
- CircularBuffer, async buffer flush, health check
|
|
541
|
+
- Playwright error wrapping, useragent fix
|
|
542
|
+
- 148 integration tests
|
|
543
|
+
**Completed:** v0.2.0
|
|
544
|
+
|
|
545
|
+
### Phase 3: QA Testing Agent (v0.3.0)
|
|
546
|
+
- /qa SKILL.md with 6-phase workflow, 3 modes (full/quick/regression)
|
|
547
|
+
- Issue taxonomy, severity classification, exploration checklist
|
|
548
|
+
- Report template, health score rubric, framework detection
|
|
549
|
+
- wait/console/cookie-import commands, find-browse binary
|
|
550
|
+
**Completed:** v0.3.0
|
|
551
|
+
|
|
552
|
+
### Phase 3.5: Browser Cookie Import (v0.3.x)
|
|
553
|
+
- cookie-import-browser command (Chromium cookie DB decryption)
|
|
554
|
+
- Cookie picker web UI, /setup-browser-cookies skill
|
|
555
|
+
- 18 unit tests, browser registry (Comet, Chrome, Arc, Brave, Edge)
|
|
556
|
+
**Completed:** v0.3.1
|
|
557
|
+
|
|
558
|
+
### E2E test cost tracking
|
|
559
|
+
- Track cumulative API spend, warn if over threshold
|
|
560
|
+
**Completed:** v0.3.6
|
|
561
|
+
|
|
562
|
+
### Auto-upgrade mode + smart update check
|
|
563
|
+
- Config CLI (`bin/gstack-config`), auto-upgrade via `~/.gstack/config.yaml`, 12h cache TTL, exponential snooze backoff (24h→48h→1wk), "never ask again" option, vendored copy sync on upgrade
|
|
564
|
+
**Completed:** v0.3.8
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.11.1.0
|