mirror of
https://github.com/garrytan/gstack.git
synced 2026-09-21 20:30:47 +02:00
feat: add provider-aware browser QA setup
Detect host-native browser tools before offering the isolated local Chromium fallback, add a common readiness fixture, harden managed browser startup, and verify standards installs expose one canonical QA skill.
This commit is contained in:
@@ -116,7 +116,7 @@ their header; edit `scripts/gstack2/` inputs and regenerate instead.
|
|||||||
## Platform contract
|
## Platform contract
|
||||||
|
|
||||||
Portable means the canonical skill tree follows the Agent Skills specification.
|
Portable means the canonical skill tree follows the Agent Skills specification.
|
||||||
Verified must name its layer. The six-host project/global/selection/removal
|
Verified must name its layer. The seven-host project/global/selection/removal
|
||||||
matrix is **Verified — installer**; host UI/process execution is still pending.
|
matrix is **Verified — installer**; host UI/process execution is still pending.
|
||||||
Native means a necessary host API is covered while consuming the same canonical
|
Native means a necessary host API is covered while consuming the same canonical
|
||||||
judgment. These labels require evidence; see
|
judgment. These labels require evidence; see
|
||||||
|
|||||||
@@ -57,9 +57,10 @@ collects anonymous command-usage telemetry by default; set
|
|||||||
`DISABLE_TELEMETRY=1` or `DO_NOT_TRACK=1` before invoking it to opt out. GStack
|
`DISABLE_TELEMETRY=1` or `DO_NOT_TRACK=1` before invoking it to opt out. GStack
|
||||||
does not proxy or add fields to that telemetry.
|
does not proxy or add fields to that telemetry.
|
||||||
|
|
||||||
The candidate installer matrix passes project/global placement for Claude
|
The candidate installer matrix covers project/global placement for Claude
|
||||||
Code, Codex, Cursor, Pi, OpenClaw, and GitHub Copilot. This verifies files and
|
Code, Codex, Kimi Code CLI, Cursor, Pi, OpenClaw, and GitHub Copilot. This
|
||||||
canonical hashes; host UI execution remains a separate release gate.
|
verifies files and canonical hashes; host UI execution remains a separate
|
||||||
|
release gate.
|
||||||
|
|
||||||
Start with `/plan`, or invoke the skill syntax your host displays. Pure
|
Start with `/plan`, or invoke the skill syntax your host displays. Pure
|
||||||
judgment modes work without a shared executable. Capability-dependent modes
|
judgment modes work without a shared executable. Capability-dependent modes
|
||||||
@@ -71,6 +72,27 @@ Approved installs fetch the pinned official GitHub Release artifact, verify its
|
|||||||
declared byte count and SHA-256, and use Sigstore metadata when Cosign is
|
declared byte count and SHA-256, and use Sigstore metadata when Cosign is
|
||||||
already available. Cosign is not an end-user prerequisite.
|
already available. Cosign is not an end-user prerequisite.
|
||||||
|
|
||||||
|
Browser setup is provider-aware and optional. During onboarding, a user can ask
|
||||||
|
to configure it immediately; otherwise GStack waits until a workflow first
|
||||||
|
needs interactive browser evidence. It then detects the active host from its
|
||||||
|
actual tool surface, explains the required user-controlled setup, and runs a
|
||||||
|
local navigation/read/click readiness fixture. Supported host-native paths
|
||||||
|
include Claude in Chrome, the Codex desktop browser, Gemini CLI's experimental
|
||||||
|
browser agent, VS Code/GitHub Copilot's integrated browser, OpenClaw's browser
|
||||||
|
plugin, and any interactive Cursor provider actually exposed to the current
|
||||||
|
session. Kimi Code has fetch/search but no native interactive browser, while Pi
|
||||||
|
requires an explicitly installed extension; neither is silently upgraded.
|
||||||
|
Inherited host environment variables never count as provider detection. No
|
||||||
|
extension, connector, MCP, settings entry, profile, alternate host, or browser
|
||||||
|
runtime is configured without consent, and `./setup` is never a GStack 2
|
||||||
|
browser setup command.
|
||||||
|
|
||||||
|
Install through `npx skills add time-attack/gstack`; do not clone the repository
|
||||||
|
under `.agents/skills/gstack`. A standards installation exposes exactly one
|
||||||
|
canonical QA skill at `.agents/skills/qa/SKILL.md`. The cloned compatibility
|
||||||
|
tree contains legacy GStack 1 entry points and is not the GStack 2 install
|
||||||
|
surface.
|
||||||
|
|
||||||
The npm package is deliberately not the skill installer and does not contain
|
The npm package is deliberately not the skill installer and does not contain
|
||||||
the six skill tree or compiled browser/design/PDF payloads. It is the small
|
the six skill tree or compiled browser/design/PDF payloads. It is the small
|
||||||
host-neutral runtime control/bootstrap surface used by release tooling. New
|
host-neutral runtime control/bootstrap surface used by release tooling. New
|
||||||
|
|||||||
+28
-9
@@ -55,8 +55,6 @@ export function resolveServerScript(
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const SERVER_SCRIPT = resolveServerScript();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* On Windows, resolve the Node.js-compatible server bundle.
|
* On Windows, resolve the Node.js-compatible server bundle.
|
||||||
* Falls back to null if not found (server will use Bun instead).
|
* Falls back to null if not found (server will use Bun instead).
|
||||||
@@ -80,17 +78,37 @@ export function resolveNodeServerScript(
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const NODE_SERVER_SCRIPT = resolveNodeServerScript();
|
export function resolveServerLaunchTarget(
|
||||||
const IS_COMPILED = import.meta.dir.includes('$bunfs');
|
env: Record<string, string | undefined> = process.env,
|
||||||
|
metaDir: string = import.meta.dir,
|
||||||
|
execPath: string = process.execPath
|
||||||
|
): { isCompiled: boolean; nodeServerScript: string | null; sourceServerScript: string | null } {
|
||||||
|
const isCompiled = metaDir.includes('$bunfs');
|
||||||
|
const nodeServerScript = resolveNodeServerScript(metaDir, execPath);
|
||||||
|
if (isCompiled) {
|
||||||
|
if (!nodeServerScript) {
|
||||||
|
throw new Error(
|
||||||
|
'server-node.mjs not found. Rebuild the managed browser runtime and run `gstack doctor --skill-api 2.0`.'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return { isCompiled, nodeServerScript, sourceServerScript: null };
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
isCompiled,
|
||||||
|
nodeServerScript,
|
||||||
|
sourceServerScript: resolveServerScript(env, metaDir, execPath),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const {
|
||||||
|
isCompiled: IS_COMPILED,
|
||||||
|
nodeServerScript: NODE_SERVER_SCRIPT,
|
||||||
|
sourceServerScript: SERVER_SCRIPT,
|
||||||
|
} = resolveServerLaunchTarget();
|
||||||
|
|
||||||
// Every installed/compiled client must use the adjacent Node-compatible daemon.
|
// Every installed/compiled client must use the adjacent Node-compatible daemon.
|
||||||
// Source development may fall back to `bun run server.ts` when dist has not
|
// Source development may fall back to `bun run server.ts` when dist has not
|
||||||
// been built yet, but an installed capability must never require host-global Bun.
|
// been built yet, but an installed capability must never require host-global Bun.
|
||||||
if (IS_COMPILED && !NODE_SERVER_SCRIPT) {
|
|
||||||
throw new Error(
|
|
||||||
'server-node.mjs not found. Rebuild the managed browser runtime and run `gstack doctor --skill-api 2.0`.'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
interface ServerState {
|
interface ServerState {
|
||||||
pid: number;
|
pid: number;
|
||||||
@@ -331,6 +349,7 @@ async function startServer(extraEnv?: Record<string, string>): Promise<ServerSta
|
|||||||
} else {
|
} else {
|
||||||
// Reviewed source-development fallback only. Node's detached spawn still
|
// Reviewed source-development fallback only. Node's detached spawn still
|
||||||
// calls setsid() on macOS/Linux, so the Bun dev server survives SIGHUP.
|
// calls setsid() on macOS/Linux, so the Bun dev server survives SIGHUP.
|
||||||
|
if (!SERVER_SCRIPT) throw new Error('Source browser server is unavailable.');
|
||||||
nodeSpawn('bun', ['run', SERVER_SCRIPT], {
|
nodeSpawn('bun', ['run', SERVER_SCRIPT], {
|
||||||
detached: true,
|
detached: true,
|
||||||
stdio: ['ignore', 'ignore', 'ignore'],
|
stdio: ['ignore', 'ignore', 'ignore'],
|
||||||
|
|||||||
@@ -227,6 +227,35 @@ describe('resolveNodeServerScript', () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('resolveServerLaunchTarget', () => {
|
||||||
|
const { resolveServerLaunchTarget } = require('../src/cli');
|
||||||
|
|
||||||
|
test('compiled clients select adjacent server-node.mjs without requiring source server.ts', () => {
|
||||||
|
const root = fs.mkdtempSync(path.join(os.tmpdir(), 'browse-compiled-launch-'));
|
||||||
|
const distDir = path.join(root, 'browse', 'dist');
|
||||||
|
fs.mkdirSync(distDir, { recursive: true });
|
||||||
|
const executable = path.join(distDir, 'browse');
|
||||||
|
const nodeServer = path.join(distDir, 'server-node.mjs');
|
||||||
|
fs.writeFileSync(executable, 'fixture');
|
||||||
|
fs.writeFileSync(nodeServer, 'fixture');
|
||||||
|
try {
|
||||||
|
expect(resolveServerLaunchTarget({}, '/$bunfs/root', executable)).toEqual({
|
||||||
|
isCompiled: true,
|
||||||
|
nodeServerScript: nodeServer,
|
||||||
|
sourceServerScript: null,
|
||||||
|
});
|
||||||
|
expect(fs.existsSync(path.join(root, 'browse', 'src', 'server.ts'))).toBe(false);
|
||||||
|
} finally {
|
||||||
|
fs.rmSync(root, { recursive: true, force: true });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
test('compiled clients fail with the managed-runtime remedy when the Node daemon is absent', () => {
|
||||||
|
expect(() => resolveServerLaunchTarget({}, '/$bunfs/root', '/nonexistent/browse'))
|
||||||
|
.toThrow('server-node.mjs not found');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
describe('version mismatch detection', () => {
|
describe('version mismatch detection', () => {
|
||||||
test('detects when versions differ', () => {
|
test('detects when versions differ', () => {
|
||||||
const stateVersion = 'abc123';
|
const stateVersion = 'abc123';
|
||||||
|
|||||||
@@ -95,8 +95,8 @@ host-placement behavior of `./setup` and ten-host generated trees is historical
|
|||||||
compatibility/development machinery, not the 2.0 installation architecture;
|
compatibility/development machinery, not the 2.0 installation architecture;
|
||||||
the current `./setup` installs only the optional runtime described below.
|
the current `./setup` installs only the optional runtime described below.
|
||||||
|
|
||||||
The standards installer matrix passed 470/470 checks with CLI 1.5.19. It
|
The standards installer matrix passed 510/510 checks with CLI 1.5.19. It
|
||||||
verified project/global copies for Claude Code, Codex, Cursor, Pi, OpenClaw, and
|
verified project/global copies for Claude Code, Codex, Kimi Code CLI, Cursor, Pi, OpenClaw, and
|
||||||
GitHub Copilot plus selected-skill and opt-in compatibility-alias cases,
|
GitHub Copilot plus selected-skill and opt-in compatibility-alias cases,
|
||||||
removal, spaces, source symlink, copy mode, and canonical hashes across 16
|
removal, spaces, source symlink, copy mode, and canonical hashes across 16
|
||||||
installs and two removals. The committed artifact is
|
installs and two removals. The committed artifact is
|
||||||
@@ -233,8 +233,8 @@ means the replacement still lacks its required release evidence.
|
|||||||
|
|
||||||
| # | Legacy defect | GStack 2 disposition / replacement | Replacement evidence |
|
| # | Legacy defect | GStack 2 disposition / replacement | Replacement evidence |
|
||||||
|---:|---|---|---|
|
|---:|---|---|---|
|
||||||
| 1 | Ten registered hosts; setup fully installs five | **Contained:** placement is delegated to the standard installer. | 470/470 checks across six hosts, 16 installs, two removals, project/global scopes, and selections. Passing live v3/host UI launch remains separate. |
|
| 1 | Ten registered hosts; setup fully installs five | **Contained:** placement is delegated to the standard installer. | 510/510 checks across seven hosts, 18 installs, two removals, project/global scopes, and selections. Passing live v3/host UI launch remains separate. |
|
||||||
| 2 | Kiro rewrites Codex output | **Contained:** one canonical standards tree; no Kiro rewrite in the 2.0 path. | Six-host matrix installs byte-matching canonical copies without host rewrites. |
|
| 2 | Kiro rewrites Codex output | **Contained:** one canonical standards tree; no Kiro rewrite in the 2.0 path. | Seven-host matrix installs byte-matching canonical copies without host rewrites. |
|
||||||
| 3 | Gitignored external trees defeat freshness CI | **Implemented:** canonical `skills/`, `compat/`, and parity fixtures are committed. | 4,681 parity checks plus installed-file hash equality. |
|
| 3 | Gitignored external trees defeat freshness CI | **Implemented:** canonical `skills/`, `compat/`, and parity fixtures are committed. | 4,681 parity checks plus installed-file hash equality. |
|
||||||
| 4 | External `--dry-run` mutates files | **Contained:** external host generation/dry-run is not used for 2.0 distribution. | Canonical regeneration/parity check exists; a non-mutating canonical check mode is not yet present. |
|
| 4 | External `--dry-run` mutates files | **Contained:** external host generation/dry-run is not used for 2.0 distribution. | Canonical regeneration/parity check exists; a non-mutating canonical check mode is not yet present. |
|
||||||
| 5 | Single-host generation failures only warn | **Contained:** no per-host generation in the canonical path; canonical generation throws on failure. | Generator/parity suite and final build rerun are green. |
|
| 5 | Single-host generation failures only warn | **Contained:** no per-host generation in the canonical path; canonical generation throws on failure. | Generator/parity suite and final build rerun are green. |
|
||||||
@@ -248,9 +248,9 @@ means the replacement still lacks its required release evidence.
|
|||||||
| 13 | Production model benchmark imports test helpers | **Implemented:** the runner, pricing, providers, and optional judge live under `lib/model-benchmark/`; the production CLI imports only production modules. | `benchmark-production-boundary.test.ts` rejects imports from `test/` across `bin/` and `lib/`; focused runner and CLI tests exercise the relocated implementation. |
|
| 13 | Production model benchmark imports test helpers | **Implemented:** the runner, pricing, providers, and optional judge live under `lib/model-benchmark/`; the production CLI imports only production modules. | `benchmark-production-boundary.test.ts` rejects imports from `test/` across `bin/` and `lib/`; focused runner and CLI tests exercise the relocated implementation. |
|
||||||
| 14 | Default tests omit `design/test` | **Implemented:** package default and free-test roots include `design/test`. | Design is green at 101/0/381 and is included in the uninterrupted 384-file broad pass. |
|
| 14 | Default tests omit `design/test` | **Implemented:** package default and free-test roots include `design/test`. | Design is green at 101/0/381 and is included in the uninterrupted 384-file broad pass. |
|
||||||
| 15 | Default tests omit `ios-qa/daemon/test` | **Implemented:** package default and free-test roots include the daemon tests. | Focused daemon run: 95 pass / 0 fail / 229 assertions; daemon tests are also included in the uninterrupted broad pass. |
|
| 15 | Default tests omit `ios-qa/daemon/test` | **Implemented:** package default and free-test roots include the daemon tests. | Focused daemon run: 95 pass / 0 fail / 229 assertions; daemon tests are also included in the uninterrupted broad pass. |
|
||||||
| 16 | Host setup contradicts config-driven claim | **Contained:** host setup is no longer a 2.0 responsibility. | Standard installer CLI 1.5.19 passed all six configured host targets. |
|
| 16 | Host setup contradicts config-driven claim | **Contained:** host setup is no longer a 2.0 responsibility. | Standard installer CLI 1.5.19 passed all seven configured host targets. |
|
||||||
| 17 | Host-generated judgment copies drift | **Implemented:** one canonical module corpus with source-blob/render hashes. | 4,681 parity checks and installed-copy hashes pass. |
|
| 17 | Host-generated judgment copies drift | **Implemented:** one canonical module corpus with source-blob/render hashes. | 4,681 parity checks and installed-copy hashes pass. |
|
||||||
| 18 | Updating one host leaves another stale | **Contained:** one tree is installed by each host's standard installer. | Project/global copies across six hosts matched canonical hashes; remote update flow remains installer-owned. |
|
| 18 | Updating one host leaves another stale | **Contained:** one tree is installed by each host's standard installer. | Project/global copies across seven hosts matched canonical hashes; remote update flow remains installer-owned. |
|
||||||
| 19 | State identity crosses worktrees | **Implemented:** repo plus stable worktree identity selects state. | Linked-worktree core test passes. |
|
| 19 | State identity crosses worktrees | **Implemented:** repo plus stable worktree identity selects state. | Linked-worktree core test passes. |
|
||||||
| 20 | Partial ship failures are not reliably idempotent | **Implemented at runtime primitive:** claimed effects become uncertain and are not automatically repeated. | Crash/resume and completed-effect tests pass. End-to-end ship resume remains pending. |
|
| 20 | Partial ship failures are not reliably idempotent | **Implemented at runtime primitive:** claimed effects become uncertain and are not automatically repeated. | Crash/resume and completed-effect tests pass. End-to-end ship resume remains pending. |
|
||||||
| 21 | Parser failures become empty success | **Implemented in iOS device discovery:** parse/tool failures are typed errors. | `tunnel-bootstrap.test.ts` malformed-JSON regression passes in the focused daemon suite. |
|
| 21 | Parser failures become empty success | **Implemented in iOS device discovery:** parse/tool failures are typed errors. | `tunnel-bootstrap.test.ts` malformed-JSON regression passes in the focused daemon suite. |
|
||||||
|
|||||||
@@ -63,8 +63,8 @@ installed-skill count.
|
|||||||
|
|
||||||
## Candidate installer matrix
|
## Candidate installer matrix
|
||||||
|
|
||||||
The isolated standard-installer matrix passed 470/470 checks with `skills` CLI
|
The isolated standard-installer matrix passed 510/510 checks with `skills` CLI
|
||||||
1.5.19: 16 install cases and two removal cases. Default discovery projected
|
1.5.19: 18 install cases and two removal cases. Default discovery projected
|
||||||
only canonical `skills/`; separate explicit-selection cases covered a single
|
only canonical `skills/`; separate explicit-selection cases covered a single
|
||||||
canonical skill and an opt-in legacy alias. The matrix used symlinked and spaced
|
canonical skill and an opt-in legacy alias. The matrix used symlinked and spaced
|
||||||
source paths matching a clean checkout where ignored legacy host trees are
|
source paths matching a clean checkout where ignored legacy host trees are
|
||||||
@@ -77,6 +77,7 @@ does not install the optional runtime. The committed evidence artifact is
|
|||||||
|---|---|---|---|---|---|---|
|
|---|---|---|---|---|---|---|
|
||||||
| Claude Code | yes | pass | pass | no separate subset case | **Verified — installer** | pending |
|
| Claude Code | yes | pass | pass | no separate subset case | **Verified — installer** | pending |
|
||||||
| OpenAI Codex | yes | pass | pass | global `qa`, `review`, `ship` pass + removal pass; actual selected `qa` runtime-absent run; opt-in alias covered | **Verified — installer**; runtime-absent invocation passed | live v1/v2/v3 failed; v3 was 3/4 |
|
| OpenAI Codex | yes | pass | pass | global `qa`, `review`, `ship` pass + removal pass; actual selected `qa` runtime-absent run; opt-in alias covered | **Verified — installer**; runtime-absent invocation passed | live v1/v2/v3 failed; v3 was 3/4 |
|
||||||
|
| Kimi Code CLI | yes | pass | pass | no separate subset case | **Verified — installer** | browser automation uses the consented GStack local-browser fallback; host skill invocation pending |
|
||||||
| Cursor | yes | pass | pass | project `qa`, `review`, `ship` pass + removal pass | **Verified — installer** | pending |
|
| Cursor | yes | pass | pass | project `qa`, `review`, `ship` pass + removal pass | **Verified — installer** | pending |
|
||||||
| Pi | yes | pass | pass | no separate subset case | **Verified — installer** | pending |
|
| Pi | yes | pass | pass | no separate subset case | **Verified — installer** | pending |
|
||||||
| OpenClaw | yes | pass | pass | project `ship` single-skill pass | **Verified — installer** | pending |
|
| OpenClaw | yes | pass | pass | project `ship` single-skill pass | **Verified — installer** | pending |
|
||||||
@@ -89,7 +90,7 @@ OpenClaw and explicitly selected the `office-hours` compatibility alias for
|
|||||||
Codex; neither alias nor unselected canonical skill was silently enrolled.
|
Codex; neither alias nor unselected canonical skill was silently enrolled.
|
||||||
`--copy` was advertised and used.
|
`--copy` was advertised and used.
|
||||||
|
|
||||||
This is filesystem/installer verification, not a claim that six host UIs loaded
|
This is filesystem/installer verification, not a claim that seven host UIs loaded
|
||||||
or executed the skills. A separate actual Codex invocation installed only `qa`
|
or executed the skills. A separate actual Codex invocation installed only `qa`
|
||||||
from `time-attack/gstack/skills`, with the optional runtime absent, and passed
|
from `time-attack/gstack/skills`, with the optional runtime absent, and passed
|
||||||
the judgment/setup-gate behavior without changing its workspace or creating a
|
the judgment/setup-gate behavior without changing its workspace or creating a
|
||||||
@@ -134,7 +135,7 @@ bun run scripts/gstack2/test-install-matrix.ts --full \
|
|||||||
--output /tmp/gstack2-install-matrix.json
|
--output /tmp/gstack2-install-matrix.json
|
||||||
```
|
```
|
||||||
|
|
||||||
The current matrix passed 470/470 installer CLI checks across 16 installs and two
|
The current matrix passed 510/510 installer CLI checks across 18 installs and two
|
||||||
removals; its JSON artifact is committed at
|
removals; its JSON artifact is committed at
|
||||||
[`evals/installation/install-matrix.json`](../../evals/installation/install-matrix.json).
|
[`evals/installation/install-matrix.json`](../../evals/installation/install-matrix.json).
|
||||||
Steps 8–9 passed for the recorded Codex runtime-absent invocation; actual UI
|
Steps 8–9 passed for the recorded Codex runtime-absent invocation; actual UI
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Parity is executable, not a prose claim. Run `bun run scripts/gstack2/run-parity.ts` or the dedicated Bun tests.
|
Parity is executable, not a prose claim. Run `bun run scripts/gstack2/run-parity.ts` or the dedicated Bun tests.
|
||||||
|
|
||||||
The pinned release inventory passes **4,697 checks** across 55 specialist sources, 16 carved sections, 25 routing scenarios, 16 regression ports, and **78 assets**.
|
The pinned release inventory passes **4,833 checks** across 55 specialist sources, 16 carved sections, 25 routing scenarios, 16 regression ports, and **78 assets**.
|
||||||
|
|
||||||
The suite verifies:
|
The suite verifies:
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
"bug_fix_ports": 16,
|
"bug_fix_ports": 16,
|
||||||
"assets": 78,
|
"assets": 78,
|
||||||
"dependency_copies": 4,
|
"dependency_copies": 4,
|
||||||
"runtime_helpers": 40
|
"runtime_helpers": 41
|
||||||
},
|
},
|
||||||
"sources": [
|
"sources": [
|
||||||
{
|
{
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
"source_path": "office-hours/SKILL.md.tmpl",
|
"source_path": "office-hours/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "8568fe73cca76a80805fab3092cacd10db7e1d7f",
|
"blob_sha": "8568fe73cca76a80805fab3092cacd10db7e1d7f",
|
||||||
"normalized_render_sha256": "b633a6ef87928ca2434f3a2b1ce88946cbe528a9e3659469e0f9cbbe8a7b146b",
|
"normalized_render_sha256": "1a5c9dbda769631df4c3e909fde6b97917780f6a7e9eca5a4edc8c2d0f302052",
|
||||||
"target": "skills/plan/references/legacy/office-hours.md",
|
"target": "skills/plan/references/legacy/office-hours.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -197,7 +197,7 @@
|
|||||||
"source_path": "plan-ceo-review/SKILL.md.tmpl",
|
"source_path": "plan-ceo-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "c43cfe64146fe79df74a974f1673fe36defcce00",
|
"blob_sha": "c43cfe64146fe79df74a974f1673fe36defcce00",
|
||||||
"normalized_render_sha256": "b2f811568920dfdbd500372df13855041ecb2b8b73e3629f3c71d87c5a78e034",
|
"normalized_render_sha256": "811b50b2cf2e20768138c50ef67471402ad1e361bd07958c63107c5081cf21b7",
|
||||||
"target": "skills/plan/references/legacy/plan-ceo-review.md",
|
"target": "skills/plan/references/legacy/plan-ceo-review.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -337,7 +337,7 @@
|
|||||||
"source_path": "plan-eng-review/SKILL.md.tmpl",
|
"source_path": "plan-eng-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "1d5be0e6f47f0896ee831b53c56818850b1dcfe4",
|
"blob_sha": "1d5be0e6f47f0896ee831b53c56818850b1dcfe4",
|
||||||
"normalized_render_sha256": "ee268f1d24769509b89b7db998372a773d9e7bc376306a68319af4f74c6fe713",
|
"normalized_render_sha256": "0ed7d4a6ec9dadf363ef5d9311392067a3d90bddac9c1ec781d0f25db55e13ae",
|
||||||
"target": "skills/plan/references/legacy/plan-eng-review.md",
|
"target": "skills/plan/references/legacy/plan-eng-review.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -457,7 +457,7 @@
|
|||||||
"source_path": "plan-devex-review/SKILL.md.tmpl",
|
"source_path": "plan-devex-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "1ef723c10997a08ef87940daceb08bf8d60dd810",
|
"blob_sha": "1ef723c10997a08ef87940daceb08bf8d60dd810",
|
||||||
"normalized_render_sha256": "fff989dcab1f37d0c219378caef6b1e627c23c2537a717564be0d8567229bccc",
|
"normalized_render_sha256": "2d39acb36fdc7f4f4b3492ff7dd21081fad98b256fa40d00aeee67bd41343f15",
|
||||||
"target": "skills/plan/references/legacy/plan-devex-review.md",
|
"target": "skills/plan/references/legacy/plan-devex-review.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -590,7 +590,7 @@
|
|||||||
"source_path": "autoplan/SKILL.md.tmpl",
|
"source_path": "autoplan/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "b2eaca9fde8f46001bea9961b8ed651d0f6f9e13",
|
"blob_sha": "b2eaca9fde8f46001bea9961b8ed651d0f6f9e13",
|
||||||
"normalized_render_sha256": "b11bef3e060400cd59a16e41c9b6f8395ace065867a1c2a70329319153a2c4dc",
|
"normalized_render_sha256": "dffedf321083151a10e7377dba6dcfd5507b678c5279f5d47a1b0d91bfe53e09",
|
||||||
"target": "skills/plan/references/legacy/autoplan.md",
|
"target": "skills/plan/references/legacy/autoplan.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -681,7 +681,7 @@
|
|||||||
"source_path": "spec/SKILL.md.tmpl",
|
"source_path": "spec/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "6c0c14e1b37e1e56d85427e9c8d080a6df908992",
|
"blob_sha": "6c0c14e1b37e1e56d85427e9c8d080a6df908992",
|
||||||
"normalized_render_sha256": "059ec7a95791f6fc559f4e2321d7340ef5ae7e4ba89949df401f74d91411bfd3",
|
"normalized_render_sha256": "76b7c03e6d8e7b852beda0a58409d97153771dd8f7b870bbdda23e996ac23fc1",
|
||||||
"target": "skills/plan/references/legacy/spec.md",
|
"target": "skills/plan/references/legacy/spec.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -814,7 +814,7 @@
|
|||||||
"source_path": "plan-tune/SKILL.md.tmpl",
|
"source_path": "plan-tune/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "dc1214d4c023ed2b126aca8aedb4153b222e73c5",
|
"blob_sha": "dc1214d4c023ed2b126aca8aedb4153b222e73c5",
|
||||||
"normalized_render_sha256": "306bbf971a2867e1f39cce82d64289d6c457bceb07439ddd6f4a3ff8f8ae5e9a",
|
"normalized_render_sha256": "f2204078e497a347b48a2b0899400baf3b6ab54f097bbd57d06deb5f71126ce9",
|
||||||
"target": "skills/plan/references/legacy/plan-tune.md",
|
"target": "skills/plan/references/legacy/plan-tune.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -893,7 +893,7 @@
|
|||||||
"source_path": "context-save/SKILL.md.tmpl",
|
"source_path": "context-save/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "a3702bc95439cddd87841aba836708bf511ef55d",
|
"blob_sha": "a3702bc95439cddd87841aba836708bf511ef55d",
|
||||||
"normalized_render_sha256": "348b840c60cecd8818d75f63ebb8e3effae659437137ce75c1ba6124177120b6",
|
"normalized_render_sha256": "f457da8b2cc1f9a4ed8ba82f4ea570a69460ce0147e171b5023d66324b6dc899",
|
||||||
"target": "skills/plan/references/legacy/context-save.md",
|
"target": "skills/plan/references/legacy/context-save.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -968,7 +968,7 @@
|
|||||||
"source_path": "context-restore/SKILL.md.tmpl",
|
"source_path": "context-restore/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "55889f6e06d3ba896f33a16969959c700bc24f1e",
|
"blob_sha": "55889f6e06d3ba896f33a16969959c700bc24f1e",
|
||||||
"normalized_render_sha256": "c14726232c67616485c115dd7ca0898992bab9c7990629b40dc3b6f1c0dec0ee",
|
"normalized_render_sha256": "44c64ae4a63d0ed0fbc427ee2e4f0330d5074c14cdc589baa660dd7a22dbcdf9",
|
||||||
"target": "skills/plan/references/legacy/context-restore.md",
|
"target": "skills/plan/references/legacy/context-restore.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1040,7 +1040,7 @@
|
|||||||
"source_path": "learn/SKILL.md.tmpl",
|
"source_path": "learn/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "90d08d2298cccd0d5090f194a2cd76a5361b4323",
|
"blob_sha": "90d08d2298cccd0d5090f194a2cd76a5361b4323",
|
||||||
"normalized_render_sha256": "0d1bbdf1bba2eaae206a350d47fb25ab50d49611262cb376861e83f78822f762",
|
"normalized_render_sha256": "b56cfcec0690c47124cf62e40aea16658933b61d44adbe821449f8c65a96a7c4",
|
||||||
"target": "skills/plan/references/legacy/learn.md",
|
"target": "skills/plan/references/legacy/learn.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1113,7 +1113,7 @@
|
|||||||
"source_path": "retro/SKILL.md.tmpl",
|
"source_path": "retro/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "b0819c8a6b736baf489179ba587442cf9973b9d2",
|
"blob_sha": "b0819c8a6b736baf489179ba587442cf9973b9d2",
|
||||||
"normalized_render_sha256": "c92e69da5c62e4bb5a426f4fb5623b41215e538315e2faebece8ba118cacaf71",
|
"normalized_render_sha256": "d2dd2fe80fbeb5573266700052e0ce5e781dcd31ed986cd9203880bc98c9d9c8",
|
||||||
"target": "skills/plan/references/legacy/retro.md",
|
"target": "skills/plan/references/legacy/retro.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1240,7 +1240,7 @@
|
|||||||
"source_path": "setup-gbrain/SKILL.md.tmpl",
|
"source_path": "setup-gbrain/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "f48581543b46ecf889f4f86fb7a0d9e75d0bd6ca",
|
"blob_sha": "f48581543b46ecf889f4f86fb7a0d9e75d0bd6ca",
|
||||||
"normalized_render_sha256": "244ebee93e8871d59c1b0eac040bed362783e48a9b134171d743750ce9a59b29",
|
"normalized_render_sha256": "ea0759f957601c05a6e131ee3d1d9e07c732b7852d8a7b10c1fdc259e6e12c3b",
|
||||||
"target": "skills/plan/references/legacy/setup-gbrain.md",
|
"target": "skills/plan/references/legacy/setup-gbrain.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1340,7 +1340,7 @@
|
|||||||
"source_path": "sync-gbrain/SKILL.md.tmpl",
|
"source_path": "sync-gbrain/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "2ec065472e263a07f3818ed87ee9a6a2e13ca3ae",
|
"blob_sha": "2ec065472e263a07f3818ed87ee9a6a2e13ca3ae",
|
||||||
"normalized_render_sha256": "175e7d0d2998bd4c8ddcd9a84228c41ba4a5cf3aca3a8bc09ddfc5a303c1df30",
|
"normalized_render_sha256": "973d3d126e97f2c720bc048e6a124e51c0195f9bc7a714ffc41fd57af37f4e73",
|
||||||
"target": "skills/plan/references/legacy/sync-gbrain.md",
|
"target": "skills/plan/references/legacy/sync-gbrain.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1416,7 +1416,7 @@
|
|||||||
"source_path": "design-consultation/SKILL.md.tmpl",
|
"source_path": "design-consultation/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "64af56ecdbd132cb7c28344e8e4ecb2e5dacf811",
|
"blob_sha": "64af56ecdbd132cb7c28344e8e4ecb2e5dacf811",
|
||||||
"normalized_render_sha256": "afa1f2b58d22d9f0f9064336ce7e9836430a298e1deb56f5330390f91df3f680",
|
"normalized_render_sha256": "d323457820291635bc4c46e4559ce6f4d194b940607b76208e95df0c86ffcb0b",
|
||||||
"target": "skills/design/references/legacy/design-consultation.md",
|
"target": "skills/design/references/legacy/design-consultation.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1504,7 +1504,7 @@
|
|||||||
"source_path": "design-shotgun/SKILL.md.tmpl",
|
"source_path": "design-shotgun/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "230dbc2922f05bf272bf5168a958a12604fac1bc",
|
"blob_sha": "230dbc2922f05bf272bf5168a958a12604fac1bc",
|
||||||
"normalized_render_sha256": "1db4cd23ee115ce841d2db898cc442141588635d43018393703aa28ce40d48f2",
|
"normalized_render_sha256": "e27c29760f1edffffee08f131b2c0ee76720eb447d3bb05eee4278467d785620",
|
||||||
"target": "skills/design/references/legacy/design-shotgun.md",
|
"target": "skills/design/references/legacy/design-shotgun.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1591,7 +1591,7 @@
|
|||||||
"source_path": "design-html/SKILL.md.tmpl",
|
"source_path": "design-html/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "3cdec9a14d62d2e046ed924c972efc30a7d43aca",
|
"blob_sha": "3cdec9a14d62d2e046ed924c972efc30a7d43aca",
|
||||||
"normalized_render_sha256": "cbb1b4357bedbb0fffe23c3e0ad31ee8c2a198a31443edb660e5c836e67e94e6",
|
"normalized_render_sha256": "40682d97ac83aa9178487348d5abf176334fd439e2d12f8e5cda1f8b20cd2c30",
|
||||||
"target": "skills/design/references/legacy/design-html.md",
|
"target": "skills/design/references/legacy/design-html.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1687,7 +1687,7 @@
|
|||||||
"source_path": "plan-design-review/SKILL.md.tmpl",
|
"source_path": "plan-design-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "7178c991e41277410de500298cf81372543861af",
|
"blob_sha": "7178c991e41277410de500298cf81372543861af",
|
||||||
"normalized_render_sha256": "2f7a5d113c466d75ca4524e424c072044d92ae7ab93009f1fbe3ae5965e8aa34",
|
"normalized_render_sha256": "1ff3644728bee14a4a002b91bada44b1c95a20ee5779ed458dabca2485a19e78",
|
||||||
"target": "skills/design/references/legacy/plan-design-review.md",
|
"target": "skills/design/references/legacy/plan-design-review.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1820,7 +1820,7 @@
|
|||||||
"source_path": "design-review/SKILL.md.tmpl",
|
"source_path": "design-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "bdcda48e29b489a1cc49faa333922412251d4b41",
|
"blob_sha": "bdcda48e29b489a1cc49faa333922412251d4b41",
|
||||||
"normalized_render_sha256": "33584047a11aa46a1b6a2bef5bf97a4d0b443bb6c9542685732e7d4dff795a2e",
|
"normalized_render_sha256": "fe15a4fae62fba41432ae18bbf4ef5620058b784b7bf9768304d0d1dd17bf45b",
|
||||||
"target": "skills/design/references/legacy/design-review.md",
|
"target": "skills/design/references/legacy/design-review.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2022,7 +2022,7 @@
|
|||||||
"source_path": "diagram/SKILL.md.tmpl",
|
"source_path": "diagram/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "9e19a52c6b7f727ce4faf5c1f9c14514ecb52f50",
|
"blob_sha": "9e19a52c6b7f727ce4faf5c1f9c14514ecb52f50",
|
||||||
"normalized_render_sha256": "21f18fa4957b79bf5941abfebd1b222dee3eb960520e0deac1c32d0b6fd62a38",
|
"normalized_render_sha256": "18b1db5eb50d85a6da26b60ac72a19c144e95bb4a2d92b2d23a87086c49c01b7",
|
||||||
"target": "skills/design/references/legacy/diagram.md",
|
"target": "skills/design/references/legacy/diagram.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2095,7 +2095,7 @@
|
|||||||
"source_path": "make-pdf/SKILL.md.tmpl",
|
"source_path": "make-pdf/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "9133a711d4f3d056a21f790e8ec3b98f13fbaa50",
|
"blob_sha": "9133a711d4f3d056a21f790e8ec3b98f13fbaa50",
|
||||||
"normalized_render_sha256": "c092bc644ff9b8929d9cbdfedb6f2761b40ce8e1fca53d13ad350ba91195104d",
|
"normalized_render_sha256": "ece1cfa64bb3cbb3979ce06890e09bbc2ccab4e1d49310c57dc28e70e1236ee9",
|
||||||
"target": "skills/design/references/legacy/make-pdf.md",
|
"target": "skills/design/references/legacy/make-pdf.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2162,7 +2162,7 @@
|
|||||||
"source_path": "qa/SKILL.md.tmpl",
|
"source_path": "qa/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "11997f7b878282c34b6bfd3d4b7a8131f9ad4da8",
|
"blob_sha": "11997f7b878282c34b6bfd3d4b7a8131f9ad4da8",
|
||||||
"normalized_render_sha256": "b1387290067842593297c8d64dc578a890a336ce5a8b60085e51b52c55ebaade",
|
"normalized_render_sha256": "e7cd5615adaf54413daa97838cb364810317dd7d661cec5cc4ed40eb48192e55",
|
||||||
"target": "skills/qa/references/legacy/qa.md",
|
"target": "skills/qa/references/legacy/qa.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2288,7 +2288,7 @@
|
|||||||
"source_path": "qa-only/SKILL.md.tmpl",
|
"source_path": "qa-only/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "75c4123cc5c406ffdd36c71a094335c137135b1e",
|
"blob_sha": "75c4123cc5c406ffdd36c71a094335c137135b1e",
|
||||||
"normalized_render_sha256": "e360ea826399287e00b030c9aa0bcda16e06ab004f5dcdb14db309bad0ccea25",
|
"normalized_render_sha256": "376eff42459f5b8755bd95934cce615db0fca16504c8e82f84b2704c63f62af3",
|
||||||
"target": "skills/qa/references/legacy/qa-only.md",
|
"target": "skills/qa/references/legacy/qa-only.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2389,7 +2389,7 @@
|
|||||||
"source_path": "ios-qa/SKILL.md.tmpl",
|
"source_path": "ios-qa/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "e93d2831a31df65ec8e4e8693919ef5bf148457f",
|
"blob_sha": "e93d2831a31df65ec8e4e8693919ef5bf148457f",
|
||||||
"normalized_render_sha256": "a9353a4d837240f85c0e13144e66575f9e267926090cfc0f344a08b5fb09b98c",
|
"normalized_render_sha256": "73ea0aabaa9e7c8fdd4ae279f519303a78682540b2340816f97e239718908e62",
|
||||||
"target": "skills/qa/references/legacy/ios-qa.md",
|
"target": "skills/qa/references/legacy/ios-qa.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2466,7 +2466,7 @@
|
|||||||
"source_path": "devex-review/SKILL.md.tmpl",
|
"source_path": "devex-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "081d4f35bbdec0c6b3da8ae71615ec4d41a84551",
|
"blob_sha": "081d4f35bbdec0c6b3da8ae71615ec4d41a84551",
|
||||||
"normalized_render_sha256": "9fbc11b3fe252c281581512d67f6915c72e34bb2fdc7bc795e3077ee0e48d34e",
|
"normalized_render_sha256": "4a907c759b6cf4202fbacaea504b1eb601a53dd35b206109d6c5105168ade7e1",
|
||||||
"target": "skills/qa/references/legacy/devex-review.md",
|
"target": "skills/qa/references/legacy/devex-review.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2565,7 +2565,7 @@
|
|||||||
"source_path": "benchmark/SKILL.md.tmpl",
|
"source_path": "benchmark/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "038f16f5fba4ae4e9eae922e3276bba8ef88149e",
|
"blob_sha": "038f16f5fba4ae4e9eae922e3276bba8ef88149e",
|
||||||
"normalized_render_sha256": "a4554b8b139ee95c9f25c2e747f9e2214b2f0db64401057529e5ec775be323cd",
|
"normalized_render_sha256": "05ac1b123a605201546a7e95899a5b55708ca7fbb7569c58b4d755c52b45a92d",
|
||||||
"target": "skills/qa/references/legacy/benchmark.md",
|
"target": "skills/qa/references/legacy/benchmark.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2631,7 +2631,7 @@
|
|||||||
"source_path": "canary/SKILL.md.tmpl",
|
"source_path": "canary/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "d1eb2950aba2fa2b09d90f13143492c60d46793c",
|
"blob_sha": "d1eb2950aba2fa2b09d90f13143492c60d46793c",
|
||||||
"normalized_render_sha256": "329b61120f60893d023533cbc493389d1c7476819fb785422de0e7d34e0c2c0b",
|
"normalized_render_sha256": "89be5f218da2bd812303c87b8c177081727727e5e0d2dc74eb7a73299794d5ef",
|
||||||
"target": "skills/qa/references/legacy/canary.md",
|
"target": "skills/qa/references/legacy/canary.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2710,7 +2710,7 @@
|
|||||||
"source_path": "browse/SKILL.md.tmpl",
|
"source_path": "browse/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "9a159e4c9820172c229e2174d4a62a8f9668ab93",
|
"blob_sha": "9a159e4c9820172c229e2174d4a62a8f9668ab93",
|
||||||
"normalized_render_sha256": "b7fd526a00444003cad654abb15c2d17606cc5295f38533754e95108038d3467",
|
"normalized_render_sha256": "1b532bd904b1fa1686113e8c96b70015ea6b2e6df7319a72c299de901fe5e81b",
|
||||||
"target": "skills/qa/references/legacy/browse.md",
|
"target": "skills/qa/references/legacy/browse.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2798,7 +2798,7 @@
|
|||||||
"source_path": "open-gstack-browser/SKILL.md.tmpl",
|
"source_path": "open-gstack-browser/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "ef91a527890a3ac3622cc7dc84bad1ff7b64443b",
|
"blob_sha": "ef91a527890a3ac3622cc7dc84bad1ff7b64443b",
|
||||||
"normalized_render_sha256": "9e4a08db3e17badfc67703f7c5e66f80a7f05e0b96fad31fc48b8216964d7449",
|
"normalized_render_sha256": "df626d71b8cea4a02d2fb7aef3169563dd132bf17a9d6d84f287894cad84d2cf",
|
||||||
"target": "skills/qa/references/legacy/open-gstack-browser.md",
|
"target": "skills/qa/references/legacy/open-gstack-browser.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2873,7 +2873,7 @@
|
|||||||
"source_path": "setup-browser-cookies/SKILL.md.tmpl",
|
"source_path": "setup-browser-cookies/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "f812d9f56f27c32fb5f102083bbe418344c1a652",
|
"blob_sha": "f812d9f56f27c32fb5f102083bbe418344c1a652",
|
||||||
"normalized_render_sha256": "8ab5dfb05136a637ce41067d9e50ade76c4a8b957587e4eab134eaa260b29ac3",
|
"normalized_render_sha256": "04c161a58c1a9010efe38095b383b0e1d445a2b678e5bf931a1281d45196940d",
|
||||||
"target": "skills/qa/references/legacy/setup-browser-cookies.md",
|
"target": "skills/qa/references/legacy/setup-browser-cookies.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2934,7 +2934,7 @@
|
|||||||
"source_path": "pair-agent/SKILL.md.tmpl",
|
"source_path": "pair-agent/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "75ed42d590f99c46cd0883c37bb1f2f9f499211c",
|
"blob_sha": "75ed42d590f99c46cd0883c37bb1f2f9f499211c",
|
||||||
"normalized_render_sha256": "6882bc549c689ff50fb06d5e72a597939aa651926c50067330d1e6fd86cd6b58",
|
"normalized_render_sha256": "8557ca390d0b6548f956d2c0e9316f1cf137689d4dc17d40a4525d19f22bc457",
|
||||||
"target": "skills/qa/references/legacy/pair-agent.md",
|
"target": "skills/qa/references/legacy/pair-agent.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3017,7 +3017,7 @@
|
|||||||
"source_path": "scrape/SKILL.md.tmpl",
|
"source_path": "scrape/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "4cb4f17c074edcdce0bc8d133f19a6a739964851",
|
"blob_sha": "4cb4f17c074edcdce0bc8d133f19a6a739964851",
|
||||||
"normalized_render_sha256": "03ef708a4c9a1f3de961c48767617502c564690faa7240b3ca39b20496a17f98",
|
"normalized_render_sha256": "82b7214021c997000822b2b4adcae19443490198556a7e6af54d8937ae504943",
|
||||||
"target": "skills/qa/references/legacy/scrape.md",
|
"target": "skills/qa/references/legacy/scrape.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3094,7 +3094,7 @@
|
|||||||
"source_path": "skillify/SKILL.md.tmpl",
|
"source_path": "skillify/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "21fb2f503e3d40683fa782b21abf05a8f0fef69b",
|
"blob_sha": "21fb2f503e3d40683fa782b21abf05a8f0fef69b",
|
||||||
"normalized_render_sha256": "b0743c957157e19bd90b457fd3ac9d6924c3aedce969c10af8d7973c2bcd6c9f",
|
"normalized_render_sha256": "8743671a165c951e852d1f37418aa6c0bd7eeb4f32866dc25f55f7d8eb26f1d5",
|
||||||
"target": "skills/qa/references/legacy/skillify.md",
|
"target": "skills/qa/references/legacy/skillify.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3177,7 +3177,7 @@
|
|||||||
"source_path": "benchmark-models/SKILL.md.tmpl",
|
"source_path": "benchmark-models/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "034cda182406dc04a82c4336ac3ebc36b5fc41b1",
|
"blob_sha": "034cda182406dc04a82c4336ac3ebc36b5fc41b1",
|
||||||
"normalized_render_sha256": "2ef0679d45f21bacc09cd774ff96bb3b82853a8e89d8606847c4f9416a47a48b",
|
"normalized_render_sha256": "3ea3c6cd3542350d4130ee0d5e170c905d0c5c3da096b1fc0e805e095af9321c",
|
||||||
"target": "skills/qa/references/legacy/benchmark-models.md",
|
"target": "skills/qa/references/legacy/benchmark-models.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3237,7 +3237,7 @@
|
|||||||
"source_path": "investigate/SKILL.md.tmpl",
|
"source_path": "investigate/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "67e254d743ffb9060f48e3f6d4b715c077ee688d",
|
"blob_sha": "67e254d743ffb9060f48e3f6d4b715c077ee688d",
|
||||||
"normalized_render_sha256": "91f19c8d736a9a6077941f63f52853634325059e5ac4d8808c4ba6dbceca1a30",
|
"normalized_render_sha256": "ee817d27e0b303b1e173ab2c572c70f55ef2211225d366a166d2e26cbbe3b2ab",
|
||||||
"target": "skills/debug/references/legacy/investigate.md",
|
"target": "skills/debug/references/legacy/investigate.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3433,7 +3433,7 @@
|
|||||||
"source_path": "freeze/SKILL.md.tmpl",
|
"source_path": "freeze/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "c0b31aa7f9f216fc5a351d91f4bcff68c828d090",
|
"blob_sha": "c0b31aa7f9f216fc5a351d91f4bcff68c828d090",
|
||||||
"normalized_render_sha256": "433bb7c1909852c83978ae282c582590c5136abe56020e7d0be39749822c345b",
|
"normalized_render_sha256": "036fe2c7d5c154982ba3509e9b9ab1f5867f86c1d71beb569802d7f7be46ed7c",
|
||||||
"target": "skills/debug/references/legacy/freeze.md",
|
"target": "skills/debug/references/legacy/freeze.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3477,7 +3477,7 @@
|
|||||||
"source_path": "guard/SKILL.md.tmpl",
|
"source_path": "guard/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "3d34ee0c181ec7b263bf6092ba8f384619c5efb6",
|
"blob_sha": "3d34ee0c181ec7b263bf6092ba8f384619c5efb6",
|
||||||
"normalized_render_sha256": "ff8170babcc9ad20f6de292db838d2c4545f0ed98dddd184ab5e7c52c073dc7e",
|
"normalized_render_sha256": "36072a06a2a2ab6c1beec2a888417fb96eb1a50f284cb26ee3796b7c69857be8",
|
||||||
"target": "skills/debug/references/legacy/guard.md",
|
"target": "skills/debug/references/legacy/guard.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3520,7 +3520,7 @@
|
|||||||
"source_path": "unfreeze/SKILL.md.tmpl",
|
"source_path": "unfreeze/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "88e413fe5a49a45d46d8867b2d80ace30b3b45aa",
|
"blob_sha": "88e413fe5a49a45d46d8867b2d80ace30b3b45aa",
|
||||||
"normalized_render_sha256": "51d6183901e866697382b7e900e2154e8bfb6a9ebf4f3e1bb3ad29925fad0e20",
|
"normalized_render_sha256": "19cd17084af59cb912f9507bf8ffdc81e38aa1fbef14605a838efbc6521e9534",
|
||||||
"target": "skills/debug/references/legacy/unfreeze.md",
|
"target": "skills/debug/references/legacy/unfreeze.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3562,7 +3562,7 @@
|
|||||||
"source_path": "review/SKILL.md.tmpl",
|
"source_path": "review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "ba1ea88068de4b09cf717eb4ae42aa247d198314",
|
"blob_sha": "ba1ea88068de4b09cf717eb4ae42aa247d198314",
|
||||||
"normalized_render_sha256": "9d6398fe0d2900fcce8ae1eb0b390e21f05c94d6ae3a4e21c911025cdc1fd963",
|
"normalized_render_sha256": "0afa76278ec061e56a36048eb9034a2cda6e56ea70bba321a0414bc279ddf84b",
|
||||||
"target": "skills/review/references/legacy/review.md",
|
"target": "skills/review/references/legacy/review.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3667,7 +3667,7 @@
|
|||||||
"source_path": "cso/SKILL.md.tmpl",
|
"source_path": "cso/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "413fb099597b55dadca116e45a202aa693a94b74",
|
"blob_sha": "413fb099597b55dadca116e45a202aa693a94b74",
|
||||||
"normalized_render_sha256": "2cecaf39e950a0ec848f85c11f9678b6a7644c0251c07be42cd52d4b2e6b61a6",
|
"normalized_render_sha256": "d79cf702cef33e878da8569c63936e3bdf811b194d8abbce925b6bb759f05cf7",
|
||||||
"target": "skills/review/references/legacy/cso.md",
|
"target": "skills/review/references/legacy/cso.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3769,7 +3769,7 @@
|
|||||||
"source_path": "health/SKILL.md.tmpl",
|
"source_path": "health/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "f92eb7347ec4f77dd8dbf464d63fcdf6a3459908",
|
"blob_sha": "f92eb7347ec4f77dd8dbf464d63fcdf6a3459908",
|
||||||
"normalized_render_sha256": "ff664221e7de57e66c1b45d719982d90f38e0288914b34731ba4dd73541347e8",
|
"normalized_render_sha256": "514ff165b393a25707c9ed336869ac0b50c63a00d90a21b1656276e1b97842d9",
|
||||||
"target": "skills/review/references/legacy/health.md",
|
"target": "skills/review/references/legacy/health.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3842,7 +3842,7 @@
|
|||||||
"source_path": "codex/SKILL.md.tmpl",
|
"source_path": "codex/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "333de7d8d590cc78184b0e2371171f6121408f73",
|
"blob_sha": "333de7d8d590cc78184b0e2371171f6121408f73",
|
||||||
"normalized_render_sha256": "0df6ff685d230f87763b4c43f957e20854fe1319d78247d683e5250e2accb188",
|
"normalized_render_sha256": "94ebbe955a1063f88712c51723023765519eab8986b029bf1222d0ec19b79e12",
|
||||||
"target": "skills/review/references/legacy/codex.md",
|
"target": "skills/review/references/legacy/codex.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -4001,7 +4001,7 @@
|
|||||||
"source_path": "ship/SKILL.md.tmpl",
|
"source_path": "ship/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "068ac4fe54bcb46572295d48263b11bd38fcde18",
|
"blob_sha": "068ac4fe54bcb46572295d48263b11bd38fcde18",
|
||||||
"normalized_render_sha256": "ab7a7219653b0fc5cdad0bb2959394798bc50ae4db4dc24b76c0454dd1b1397a",
|
"normalized_render_sha256": "ca55c56483c524c732cf4cd1a7b7ef36f379666577549ef989823b98bce8c5b5",
|
||||||
"target": "skills/ship/references/legacy/ship.md",
|
"target": "skills/ship/references/legacy/ship.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -4136,7 +4136,7 @@
|
|||||||
"source_path": "land-and-deploy/SKILL.md.tmpl",
|
"source_path": "land-and-deploy/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "98976ad020d541d251cc7e34802a13458ddc88e2",
|
"blob_sha": "98976ad020d541d251cc7e34802a13458ddc88e2",
|
||||||
"normalized_render_sha256": "3fab0678a9a7a76664330c74db2bd25b56c335ac72ce4e691c2f2564a7ede819",
|
"normalized_render_sha256": "6920f3d97ce474b8f20c8b3e38ca9d3c03973e47af33103a60bab7c02eb867bd",
|
||||||
"target": "skills/ship/references/legacy/land-and-deploy.md",
|
"target": "skills/ship/references/legacy/land-and-deploy.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -4244,7 +4244,7 @@
|
|||||||
"source_path": "landing-report/SKILL.md.tmpl",
|
"source_path": "landing-report/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "32a8cc1ab036b1ff8692f0400b68d8b56224a251",
|
"blob_sha": "32a8cc1ab036b1ff8692f0400b68d8b56224a251",
|
||||||
"normalized_render_sha256": "4f9512bafcfd995c4c35cdff869ed60f8a9a9ef12f20bc18bf7b898cbd2faa53",
|
"normalized_render_sha256": "ae5050b0558b5324f58ee9181dc83ac0189b63da70d94f86792c08e112765fe9",
|
||||||
"target": "skills/ship/references/legacy/landing-report.md",
|
"target": "skills/ship/references/legacy/landing-report.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -4318,7 +4318,7 @@
|
|||||||
"source_path": "document-release/SKILL.md.tmpl",
|
"source_path": "document-release/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "7621cb31290217b5c7cc8fb000e910b3dd38128f",
|
"blob_sha": "7621cb31290217b5c7cc8fb000e910b3dd38128f",
|
||||||
"normalized_render_sha256": "e5aa85ac93b36b638d075d152f9d7108c0108727056f61331b25fe33de569a59",
|
"normalized_render_sha256": "21de7096aa788e3c4206587761f3122016f4cfc3080ec07f07cd7698075307a5",
|
||||||
"target": "skills/ship/references/legacy/document-release.md",
|
"target": "skills/ship/references/legacy/document-release.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -4475,7 +4475,7 @@
|
|||||||
"source_path": "document-generate/SKILL.md.tmpl",
|
"source_path": "document-generate/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "d3ef0cbc3786c4010b3c692fb94246f56a7e1d7b",
|
"blob_sha": "d3ef0cbc3786c4010b3c692fb94246f56a7e1d7b",
|
||||||
"normalized_render_sha256": "71726ef3082b6c00a5cad19d28da4d830f8e9b261d213a7938c4e1ce3b8c54bb",
|
"normalized_render_sha256": "d91adb16f1749c24bc7a05aa6cff3ff00bb0db005872751f417e66de2057e620",
|
||||||
"target": "skills/ship/references/legacy/document-generate.md",
|
"target": "skills/ship/references/legacy/document-generate.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -4677,7 +4677,7 @@
|
|||||||
"source_path": "ios-sync/SKILL.md.tmpl",
|
"source_path": "ios-sync/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "156a33c4c35d3bad804e44c93ae4c931878489f3",
|
"blob_sha": "156a33c4c35d3bad804e44c93ae4c931878489f3",
|
||||||
"normalized_render_sha256": "c51e8865876efae833e92d54b37780afd4fa6240c13231dfb7d4635948fbc73f",
|
"normalized_render_sha256": "88f9f20aa406c13098ebd2709afc6487bb42c5466ac9f757bf4d9baff7f028d0",
|
||||||
"target": "skills/ship/references/legacy/ios-sync.md",
|
"target": "skills/ship/references/legacy/ios-sync.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -5759,7 +5759,7 @@
|
|||||||
"owner_tree": "design",
|
"owner_tree": "design",
|
||||||
"consumer_tree": "plan",
|
"consumer_tree": "plan",
|
||||||
"target": "skills/plan/references/legacy/plan-design-review.md",
|
"target": "skills/plan/references/legacy/plan-design-review.md",
|
||||||
"sha256": "0c9930db5c50e873318cbbf00b9147edff82a210fdbdf2aacb2a8edfdf1f6463",
|
"sha256": "5ff3595a7a6e9136d68678e2810001033beb0b92c3f139b1c749e73398ed4b9a",
|
||||||
"disposition": "SHARED_MODULE"
|
"disposition": "SHARED_MODULE"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -5767,7 +5767,7 @@
|
|||||||
"owner_tree": "debug",
|
"owner_tree": "debug",
|
||||||
"consumer_tree": "qa",
|
"consumer_tree": "qa",
|
||||||
"target": "skills/qa/references/legacy/investigate.md",
|
"target": "skills/qa/references/legacy/investigate.md",
|
||||||
"sha256": "abc5ef0411163a0959605f259e54623033f0936942a347e74ed82f13af001a3c",
|
"sha256": "ebd663fead64cc7d92969742d06bbb18be6f21be7010bba82fc82a27f84efc5e",
|
||||||
"disposition": "SHARED_MODULE"
|
"disposition": "SHARED_MODULE"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -5775,7 +5775,7 @@
|
|||||||
"owner_tree": "qa",
|
"owner_tree": "qa",
|
||||||
"consumer_tree": "ship",
|
"consumer_tree": "ship",
|
||||||
"target": "skills/ship/references/legacy/canary.md",
|
"target": "skills/ship/references/legacy/canary.md",
|
||||||
"sha256": "21252c073bfa2c90f5ad6883feb8ee63d893febbd981a842ec5f7611b8807f2e",
|
"sha256": "9fcf4fdea7d52113c8f5b5cc81c1fb36df591cf9e07bcc38c4ee106b15245997",
|
||||||
"disposition": "SHARED_MODULE"
|
"disposition": "SHARED_MODULE"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -5783,7 +5783,7 @@
|
|||||||
"owner_tree": "plan",
|
"owner_tree": "plan",
|
||||||
"consumer_tree": "ship",
|
"consumer_tree": "ship",
|
||||||
"target": "skills/ship/references/legacy/context-restore.md",
|
"target": "skills/ship/references/legacy/context-restore.md",
|
||||||
"sha256": "8658c29bfbe2097aa9e3cc4e6b04fd0c15f77fd3c256c238415dffa93e120982",
|
"sha256": "1b1bd416815b759ea2f60565f0959c129d62e88991118680aab45669e54da82f",
|
||||||
"disposition": "SHARED_MODULE"
|
"disposition": "SHARED_MODULE"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -6494,6 +6494,7 @@
|
|||||||
"runtime_helpers": [
|
"runtime_helpers": [
|
||||||
{
|
{
|
||||||
"name": "browse",
|
"name": "browse",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "browse/dist/browse",
|
"source_path": "browse/dist/browse",
|
||||||
"platform_source_paths": {
|
"platform_source_paths": {
|
||||||
"posix": "browse/dist/browse",
|
"posix": "browse/dist/browse",
|
||||||
@@ -6550,8 +6551,66 @@
|
|||||||
],
|
],
|
||||||
"stable_path": "${GSTACK_HOME:-$HOME/.gstack}/bin/browse"
|
"stable_path": "${GSTACK_HOME:-$HOME/.gstack}/bin/browse"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "bun",
|
||||||
|
"delivery": "managed-runtime-artifact",
|
||||||
|
"component": "core",
|
||||||
|
"build_step": "managed-bun",
|
||||||
|
"source_path": ".gstack-runtime-tools/bun",
|
||||||
|
"consumer_modules": [
|
||||||
|
"autoplan",
|
||||||
|
"benchmark",
|
||||||
|
"benchmark-models",
|
||||||
|
"browse",
|
||||||
|
"canary",
|
||||||
|
"codex",
|
||||||
|
"context-restore",
|
||||||
|
"context-save",
|
||||||
|
"cso",
|
||||||
|
"design-consultation",
|
||||||
|
"design-html",
|
||||||
|
"design-review",
|
||||||
|
"design-shotgun",
|
||||||
|
"devex-review",
|
||||||
|
"diagram",
|
||||||
|
"document-generate",
|
||||||
|
"document-release",
|
||||||
|
"freeze",
|
||||||
|
"guard",
|
||||||
|
"health",
|
||||||
|
"investigate",
|
||||||
|
"ios-qa",
|
||||||
|
"ios-sync",
|
||||||
|
"land-and-deploy",
|
||||||
|
"landing-report",
|
||||||
|
"learn",
|
||||||
|
"make-pdf",
|
||||||
|
"office-hours",
|
||||||
|
"open-gstack-browser",
|
||||||
|
"pair-agent",
|
||||||
|
"plan-ceo-review",
|
||||||
|
"plan-design-review",
|
||||||
|
"plan-devex-review",
|
||||||
|
"plan-eng-review",
|
||||||
|
"plan-tune",
|
||||||
|
"qa",
|
||||||
|
"qa-only",
|
||||||
|
"retro",
|
||||||
|
"review",
|
||||||
|
"scrape",
|
||||||
|
"setup-browser-cookies",
|
||||||
|
"setup-gbrain",
|
||||||
|
"ship",
|
||||||
|
"skillify",
|
||||||
|
"spec",
|
||||||
|
"sync-gbrain",
|
||||||
|
"unfreeze"
|
||||||
|
],
|
||||||
|
"stable_path": "${GSTACK_HOME:-$HOME/.gstack}/bin/bun"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack",
|
"name": "gstack",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack",
|
"source_path": "bin/gstack",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"diagram",
|
"diagram",
|
||||||
@@ -6564,6 +6623,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-artifacts-init",
|
"name": "gstack-artifacts-init",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-artifacts-init",
|
"source_path": "bin/gstack-artifacts-init",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6572,6 +6632,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-brain-cache",
|
"name": "gstack-brain-cache",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-brain-cache",
|
"source_path": "bin/gstack-brain-cache",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"office-hours",
|
"office-hours",
|
||||||
@@ -6584,6 +6645,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-codex-probe",
|
"name": "gstack-codex-probe",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-codex-probe",
|
"source_path": "bin/gstack-codex-probe",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"autoplan",
|
"autoplan",
|
||||||
@@ -6593,6 +6655,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-config",
|
"name": "gstack-config",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-config",
|
"source_path": "bin/gstack-config",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"autoplan",
|
"autoplan",
|
||||||
@@ -6607,6 +6670,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-decision-log",
|
"name": "gstack-decision-log",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-decision-log",
|
"source_path": "bin/gstack-decision-log",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"ship",
|
"ship",
|
||||||
@@ -6616,6 +6680,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-design",
|
"name": "gstack-design",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "design/dist/design",
|
"source_path": "design/dist/design",
|
||||||
"platform_source_paths": {
|
"platform_source_paths": {
|
||||||
"posix": "design/dist/design",
|
"posix": "design/dist/design",
|
||||||
@@ -6674,6 +6739,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-developer-profile",
|
"name": "gstack-developer-profile",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-developer-profile",
|
"source_path": "bin/gstack-developer-profile",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"office-hours",
|
"office-hours",
|
||||||
@@ -6683,6 +6749,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-diff-scope",
|
"name": "gstack-diff-scope",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-diff-scope",
|
"source_path": "bin/gstack-diff-scope",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"land-and-deploy",
|
"land-and-deploy",
|
||||||
@@ -6692,6 +6759,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-distill-apply",
|
"name": "gstack-distill-apply",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-distill-apply",
|
"source_path": "bin/gstack-distill-apply",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"plan-tune"
|
"plan-tune"
|
||||||
@@ -6700,6 +6768,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-distill-free-text",
|
"name": "gstack-distill-free-text",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-distill-free-text",
|
"source_path": "bin/gstack-distill-free-text",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"plan-tune"
|
"plan-tune"
|
||||||
@@ -6708,6 +6777,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-detect",
|
"name": "gstack-gbrain-detect",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-detect",
|
"source_path": "bin/gstack-gbrain-detect",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain",
|
"setup-gbrain",
|
||||||
@@ -6717,6 +6787,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-install",
|
"name": "gstack-gbrain-install",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-install",
|
"source_path": "bin/gstack-gbrain-install",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6725,6 +6796,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-lib.sh",
|
"name": "gstack-gbrain-lib.sh",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-lib.sh",
|
"source_path": "bin/gstack-gbrain-lib.sh",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6733,6 +6805,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-mcp-verify",
|
"name": "gstack-gbrain-mcp-verify",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-mcp-verify",
|
"source_path": "bin/gstack-gbrain-mcp-verify",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6741,6 +6814,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-repo-policy",
|
"name": "gstack-gbrain-repo-policy",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-repo-policy",
|
"source_path": "bin/gstack-gbrain-repo-policy",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6749,6 +6823,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-source-wireup",
|
"name": "gstack-gbrain-source-wireup",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-source-wireup",
|
"source_path": "bin/gstack-gbrain-source-wireup",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6757,6 +6832,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-supabase-provision",
|
"name": "gstack-gbrain-supabase-provision",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-supabase-provision",
|
"source_path": "bin/gstack-gbrain-supabase-provision",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6765,6 +6841,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-supabase-verify",
|
"name": "gstack-gbrain-supabase-verify",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-supabase-verify",
|
"source_path": "bin/gstack-gbrain-supabase-verify",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6773,14 +6850,17 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-sync",
|
"name": "gstack-gbrain-sync",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-sync.ts",
|
"source_path": "bin/gstack-gbrain-sync.ts",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain",
|
||||||
|
"sync-gbrain"
|
||||||
],
|
],
|
||||||
"stable_path": "${GSTACK_HOME:-$HOME/.gstack}/bin/gstack-gbrain-sync"
|
"stable_path": "${GSTACK_HOME:-$HOME/.gstack}/bin/gstack-gbrain-sync"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-sync.ts",
|
"name": "gstack-gbrain-sync.ts",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-sync.ts",
|
"source_path": "bin/gstack-gbrain-sync.ts",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"sync-gbrain"
|
"sync-gbrain"
|
||||||
@@ -6789,6 +6869,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-global-discover",
|
"name": "gstack-global-discover",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-global-discover.ts",
|
"source_path": "bin/gstack-global-discover.ts",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"retro"
|
"retro"
|
||||||
@@ -6797,6 +6878,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-learnings-log",
|
"name": "gstack-learnings-log",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-learnings-log",
|
"source_path": "bin/gstack-learnings-log",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"cso",
|
"cso",
|
||||||
@@ -6817,6 +6899,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-learnings-search",
|
"name": "gstack-learnings-search",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-learnings-search",
|
"source_path": "bin/gstack-learnings-search",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"cso",
|
"cso",
|
||||||
@@ -6835,6 +6918,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-memory-ingest",
|
"name": "gstack-memory-ingest",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-memory-ingest.ts",
|
"source_path": "bin/gstack-memory-ingest.ts",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6843,6 +6927,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-model-benchmark",
|
"name": "gstack-model-benchmark",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-model-benchmark",
|
"source_path": "bin/gstack-model-benchmark",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"benchmark-models"
|
"benchmark-models"
|
||||||
@@ -6851,6 +6936,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-next-version",
|
"name": "gstack-next-version",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-next-version",
|
"source_path": "bin/gstack-next-version",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"land-and-deploy",
|
"land-and-deploy",
|
||||||
@@ -6862,6 +6948,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-paths",
|
"name": "gstack-paths",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-paths",
|
"source_path": "bin/gstack-paths",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"codex",
|
"codex",
|
||||||
@@ -6879,6 +6966,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-pr-title-rewrite.sh",
|
"name": "gstack-pr-title-rewrite.sh",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-pr-title-rewrite.sh",
|
"source_path": "bin/gstack-pr-title-rewrite.sh",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"ship"
|
"ship"
|
||||||
@@ -6887,6 +6975,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-question-preference",
|
"name": "gstack-question-preference",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-question-preference",
|
"source_path": "bin/gstack-question-preference",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"plan-tune"
|
"plan-tune"
|
||||||
@@ -6895,6 +6984,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-redact",
|
"name": "gstack-redact",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-redact",
|
"source_path": "bin/gstack-redact",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"document-generate",
|
"document-generate",
|
||||||
@@ -6905,6 +6995,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-redact-audit-log",
|
"name": "gstack-redact-audit-log",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-redact-audit-log",
|
"source_path": "bin/gstack-redact-audit-log",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"spec"
|
"spec"
|
||||||
@@ -6913,6 +7004,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-review-log",
|
"name": "gstack-review-log",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-review-log",
|
"source_path": "bin/gstack-review-log",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"autoplan",
|
"autoplan",
|
||||||
@@ -6924,6 +7016,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-review-read",
|
"name": "gstack-review-read",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-review-read",
|
"source_path": "bin/gstack-review-read",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"devex-review",
|
"devex-review",
|
||||||
@@ -6935,6 +7028,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-slug",
|
"name": "gstack-slug",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-slug",
|
"source_path": "bin/gstack-slug",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"autoplan",
|
"autoplan",
|
||||||
@@ -6966,6 +7060,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-taste-update",
|
"name": "gstack-taste-update",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-taste-update",
|
"source_path": "bin/gstack-taste-update",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"design-consultation",
|
"design-consultation",
|
||||||
@@ -6975,6 +7070,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-version-bump",
|
"name": "gstack-version-bump",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-version-bump",
|
"source_path": "bin/gstack-version-bump",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"ship"
|
"ship"
|
||||||
@@ -6983,6 +7079,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "make-pdf",
|
"name": "make-pdf",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "make-pdf/dist/pdf",
|
"source_path": "make-pdf/dist/pdf",
|
||||||
"platform_source_paths": {
|
"platform_source_paths": {
|
||||||
"posix": "make-pdf/dist/pdf",
|
"posix": "make-pdf/dist/pdf",
|
||||||
@@ -7041,6 +7138,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "remote-slug",
|
"name": "remote-slug",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "browse/bin/remote-slug",
|
"source_path": "browse/bin/remote-slug",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"autoplan",
|
"autoplan",
|
||||||
|
|||||||
@@ -22,9 +22,9 @@ PR, or PR-ready claim is authorized by this status.
|
|||||||
`debug`, `review`, and `ship`.
|
`debug`, `review`, and `ship`.
|
||||||
- [x] The six `/plan` top-level modes are exactly **Discovery, Product,
|
- [x] The six `/plan` top-level modes are exactly **Discovery, Product,
|
||||||
Engineering, DX, Specification, and Full chain**.
|
Engineering, DX, Specification, and Full chain**.
|
||||||
- [x] Standard installer matrix is green: 470/470 checks, 16 installs and two
|
- [x] Standard installer matrix is green: 510/510 checks, 18 installs and two
|
||||||
removals with CLI 1.5.19. Project/global installs passed for Claude Code,
|
removals with CLI 1.5.19. Project/global installs passed for Claude Code,
|
||||||
Codex, Cursor, Pi, OpenClaw, and GitHub Copilot; selected-skill and opt-in
|
Codex, Kimi Code CLI, Cursor, Pi, OpenClaw, and GitHub Copilot; selected-skill and opt-in
|
||||||
compatibility-alias cases, paths with spaces, source symlink, physical
|
compatibility-alias cases, paths with spaces, source symlink, physical
|
||||||
copies, and canonical hashes passed. The committed artifact is
|
copies, and canonical hashes passed. The committed artifact is
|
||||||
[`evals/installation/install-matrix.json`](../../evals/installation/install-matrix.json).
|
[`evals/installation/install-matrix.json`](../../evals/installation/install-matrix.json).
|
||||||
@@ -154,7 +154,7 @@ PR, or PR-ready claim is authorized by this status.
|
|||||||
|
|
||||||
- [ ] The paid live v3 installed-host adversarial gate is failed, not pending:
|
- [ ] The paid live v3 installed-host adversarial gate is failed, not pending:
|
||||||
the immutable one-shot result is **3/4**, with review failing compound
|
the immutable one-shot result is **3/4**, with review failing compound
|
||||||
inspection. Do not retry or relabel it. The six hosts remain **Verified at
|
inspection. Do not retry or relabel it. The seven hosts remain **Verified at
|
||||||
the installer layer only**; representative UI/process coverage is incomplete.
|
the installer layer only**; representative UI/process coverage is incomplete.
|
||||||
- [ ] Finish final evidence-linked disposition for every infrastructure item;
|
- [ ] Finish final evidence-linked disposition for every infrastructure item;
|
||||||
see the 25-row table in [ARCHITECTURE.md](./ARCHITECTURE.md). Current focused
|
see the 25-row table in [ARCHITECTURE.md](./ARCHITECTURE.md). Current focused
|
||||||
@@ -175,7 +175,7 @@ PR, or PR-ready claim is authorized by this status.
|
|||||||
| Structured scenarios | [SCENARIOS.md](./SCENARIOS.md) | 25/25 structured routing fixtures green |
|
| Structured scenarios | [SCENARIOS.md](./SCENARIOS.md) | 25/25 structured routing fixtures green |
|
||||||
| Backlog traceability | [BACKLOG-MAP.json](./BACKLOG-MAP.json) | 755 unique items mapped |
|
| Backlog traceability | [BACKLOG-MAP.json](./BACKLOG-MAP.json) | 755 unique items mapped |
|
||||||
| Context integration | [CONTEXT-DEV.md](./CONTEXT-DEV.md) | Automated contract 22/139 green; verified-key official-endpoint live smoke passed |
|
| Context integration | [CONTEXT-DEV.md](./CONTEXT-DEV.md) | Automated contract 22/139 green; verified-key official-endpoint live smoke passed |
|
||||||
| Host matrix | [HOST-COMPATIBILITY.md](./HOST-COMPATIBILITY.md) | 470/470 checks; Codex runtime-absent run passed; live v3 failed; other UI launches pending |
|
| Host matrix | [HOST-COMPATIBILITY.md](./HOST-COMPATIBILITY.md) | 510/510 checks; Codex runtime-absent run passed; live v3 failed; other UI launches pending |
|
||||||
| Privacy boundary | [PRIVACY.md](./PRIVACY.md) | Implemented contract; full retained-tool egress audit pending |
|
| Privacy boundary | [PRIVACY.md](./PRIVACY.md) | Implemented contract; full retained-tool egress audit pending |
|
||||||
| Physical iOS | [IOS-PHYSICAL-DEVICE.md](./IOS-PHYSICAL-DEVICE.md), [live artifact](./evidence/ios-physical-device-2026-07-20T17-49-19-302Z.json) | 12/12 harness tests and five-of-five live iterations passed on a wired paired iPhone |
|
| Physical iOS | [IOS-PHYSICAL-DEVICE.md](./IOS-PHYSICAL-DEVICE.md), [live artifact](./evidence/ios-physical-device-2026-07-20T17-49-19-302Z.json) | 12/12 harness tests and five-of-five live iterations passed on a wired paired iPhone |
|
||||||
| Upgrade/recovery | [UPGRADE-AND-ROLLBACK.md](./UPGRADE-AND-ROLLBACK.md) | Runtime installer 25 pass / 341 assertions; deterministic clean macOS arm64 bundle audit recorded |
|
| Upgrade/recovery | [UPGRADE-AND-ROLLBACK.md](./UPGRADE-AND-ROLLBACK.md) | Runtime installer 25 pass / 341 assertions; deterministic clean macOS arm64 bundle audit recorded |
|
||||||
|
|||||||
@@ -28,8 +28,8 @@ pass from deterministic, offline, or filesystem-only evidence.
|
|||||||
| Physical-device smoke, 2026-07-20 | **PASS:** 12/12 harness checks and all five required live iterations. Release symbols were absent; signing, safe in-place install, launch, CoreDevice bootstrap, boot-token rotation, five session acquire/release cycles, ten screenshots, accessibility reads, coordinate taps, bundle checks, state cleanup, tunnel shutdown, and temporary-workspace cleanup passed. | Closes the physical-iPhone evidence layer for the tested wired paired `iPhone17,1`; it is not a claim about every iPhone or iOS release. Redacted artifact: [`ios-physical-device-2026-07-20T17-49-19-302Z.json`](./evidence/ios-physical-device-2026-07-20T17-49-19-302Z.json). |
|
| Physical-device smoke, 2026-07-20 | **PASS:** 12/12 harness checks and all five required live iterations. Release symbols were absent; signing, safe in-place install, launch, CoreDevice bootstrap, boot-token rotation, five session acquire/release cycles, ten screenshots, accessibility reads, coordinate taps, bundle checks, state cleanup, tunnel shutdown, and temporary-workspace cleanup passed. | Closes the physical-iPhone evidence layer for the tested wired paired `iPhone17,1`; it is not a claim about every iPhone or iOS release. Redacted artifact: [`ios-physical-device-2026-07-20T17-49-19-302Z.json`](./evidence/ios-physical-device-2026-07-20T17-49-19-302Z.json). |
|
||||||
| Context.dev contract (`gstack2-runtime-context.test.ts`) | **22 pass / 0 fail**, 139 assertions. | Persists explicit host/local-browser/none choices without consent, rejects private/credential URLs and request material plus private DNS, proves zero lookup/fetch before mode+consent, validates documented endpoint paths and exact failure taxonomy, and makes search typed unsupported without network. |
|
| Context.dev contract (`gstack2-runtime-context.test.ts`) | **22 pass / 0 fail**, 139 assertions. | Persists explicit host/local-browser/none choices without consent, rejects private/credential URLs and request material plus private DNS, proves zero lookup/fetch before mode+consent, validates documented endpoint paths and exact failure taxonomy, and makes search typed unsupported without network. |
|
||||||
| `gstack context smoke --url https://www.context.dev --json` | **PASS:** the official `/web/scrape/markdown` endpoint returned `ok: true` and credit metadata. | The verified key entered through protected stdin/environment worked. The temporary secrets file was mode `0600`, the isolated home was removed, and the safe output did not contain the key. Committed redacted artifact: [`evals/context-dev/live-smoke-2026-07-17.json`](../../evals/context-dev/live-smoke-2026-07-17.json). |
|
| `gstack context smoke --url https://www.context.dev --json` | **PASS:** the official `/web/scrape/markdown` endpoint returned `ok: true` and credit metadata. | The verified key entered through protected stdin/environment worked. The temporary secrets file was mode `0600`, the isolated home was removed, and the safe output did not contain the key. Committed redacted artifact: [`evals/context-dev/live-smoke-2026-07-17.json`](../../evals/context-dev/live-smoke-2026-07-17.json). |
|
||||||
| Standard installer matrix | **PASS: 470/470 checks**, 16 install cases, two removal cases, `skills` CLI 1.5.19. | Project/global installs pass for six hosts, selected-skill and opt-in compatibility-alias cases, copies, and hashes. This remains installer/filesystem evidence. Committed artifact: [`evals/installation/install-matrix.json`](../../evals/installation/install-matrix.json). |
|
| Standard installer matrix | **PASS: 510/510 checks**, 18 install cases, two removal cases, `skills` CLI 1.5.19. | Project/global installs pass for seven hosts, including Kimi Code CLI through the standard `.agents/skills` path; selected-skill and opt-in compatibility-alias cases, copies, and hashes pass. This remains installer/filesystem evidence. Committed artifact: [`evals/installation/install-matrix.json`](../../evals/installation/install-matrix.json). |
|
||||||
| Standard Agent Skills install + actual runtime-absent Codex invocation | **PASS.** Root `--list` returned exactly six. The selected source was `time-attack/gstack/skills --skill qa`; despite `skills` 1.5.19's pre-filter display counting hidden aliases, exactly one skill (`qa`) installed byte-identically. Codex exited 0 with `gstack` absent, reported `NEEDS_SETUP` and one approval prompt, changed no files, and created no runtime/browser/external-service activity. | Closes the actual-host runtime-absent judgment gate for Codex without overstating six-host UI coverage. Artifact: [`standard-codex-runtime-absent-2026-07-17.json`](../../evals/installation/standard-codex-runtime-absent-2026-07-17.json). |
|
| Standard Agent Skills install + actual runtime-absent Codex invocation | **PASS.** Root `--list` returned exactly six. The selected source was `time-attack/gstack/skills --skill qa`; despite `skills` 1.5.19's pre-filter display counting hidden aliases, exactly one skill (`qa`) installed byte-identically. Codex exited 0 with `gstack` absent, reported `NEEDS_SETUP` and one approval prompt, changed no files, and created no runtime/browser/external-service activity. | Closes the actual-host runtime-absent judgment gate for Codex without overstating seven-host UI coverage. Artifact: [`standard-codex-runtime-absent-2026-07-17.json`](../../evals/installation/standard-codex-runtime-absent-2026-07-17.json). |
|
||||||
| `bun test test/gstack2-runtime-install.test.ts` | **Exit 0: 25 pass / 0 fail**, 341 assertions. | Managed allowlist, hashes, spaces, source/internal-link rejection, production-only frozen dependencies, deterministic exact Sharp/ngrok platform closure, native-load rollback smoke, rollback/recovery, stable launchers, wrapper neutrality, and state-preserving uninstall pass. |
|
| `bun test test/gstack2-runtime-install.test.ts` | **Exit 0: 25 pass / 0 fail**, 341 assertions. | Managed allowlist, hashes, spaces, source/internal-link rejection, production-only frozen dependencies, deterministic exact Sharp/ngrok platform closure, native-load rollback smoke, rollback/recovery, stable launchers, wrapper neutrality, and state-preserving uninstall pass. |
|
||||||
| Deterministic clean macOS arm64 managed runtime bundle audit | **110 components, 1,829 files, 450,044,315 bytes, 50 capability launchers.** | This is a platform-specific bundle measurement, not a universal byte count; platform-native package payloads differ. Setup includes the Sharp/ngrok closure and excludes the development-only Claude Agent SDK. The Hugging Face sidecar is outside the bundle and its package is development-only, so production setup installs neither its inference runtime nor model weights; the L4 capability reports unavailable. The standard skill installer remains Markdown-only. Committed artifact: [`evals/runtime-bundle/darwin-arm64.json`](../../evals/runtime-bundle/darwin-arm64.json); reproduce with `bun run scripts/gstack2/audit-runtime-bundle.ts --output evals/runtime-bundle/darwin-arm64.json`. |
|
| Deterministic clean macOS arm64 managed runtime bundle audit | **110 components, 1,829 files, 450,044,315 bytes, 50 capability launchers.** | This is a platform-specific bundle measurement, not a universal byte count; platform-native package payloads differ. Setup includes the Sharp/ngrok closure and excludes the development-only Claude Agent SDK. The Hugging Face sidecar is outside the bundle and its package is development-only, so production setup installs neither its inference runtime nor model weights; the L4 capability reports unavailable. The standard skill installer remains Markdown-only. Committed artifact: [`evals/runtime-bundle/darwin-arm64.json`](../../evals/runtime-bundle/darwin-arm64.json); reproduce with `bun run scripts/gstack2/audit-runtime-bundle.ts --output evals/runtime-bundle/darwin-arm64.json`. |
|
||||||
| Earlier declared Linux Dev Container plus `bun run test:gstack2` inside it | **Exit 0: 136 pass / 0 fail, 1,127 assertions across 15 files.** Log: `/tmp/gstack2-devcontainer-gate-candidate-final4.log`. | Historical container checkpoint retained rather than overwritten; the current 150-test container result is recorded in the native-CI row below. |
|
| Earlier declared Linux Dev Container plus `bun run test:gstack2` inside it | **Exit 0: 136 pass / 0 fail, 1,127 assertions across 15 files.** Log: `/tmp/gstack2-devcontainer-gate-candidate-final4.log`. | Historical container checkpoint retained rather than overwritten; the current 150-test container result is recorded in the native-CI row below. |
|
||||||
|
|||||||
@@ -200,7 +200,7 @@ or iPhone data.
|
|||||||
Focused candidate tests cover the managed installer plus atomic activation,
|
Focused candidate tests cover the managed installer plus atomic activation,
|
||||||
failed-health rollback, interrupted-pointer recovery, manual rollback,
|
failed-health rollback, interrupted-pointer recovery, manual rollback,
|
||||||
newer-schema refusal, and non-mutating cleanup preview. The standard installer
|
newer-schema refusal, and non-mutating cleanup preview. The standard installer
|
||||||
matrix separately passed 470/470 checks across six hosts, 16 installs, scopes,
|
matrix separately passed 510/510 checks across seven hosts, 18 installs, scopes,
|
||||||
selections, and two removals; its artifact is
|
selections, and two removals; its artifact is
|
||||||
[`evals/installation/install-matrix.json`](../../evals/installation/install-matrix.json).
|
[`evals/installation/install-matrix.json`](../../evals/installation/install-matrix.json).
|
||||||
The runtime installer is green at 25 pass / 0 fail and 341 assertions, and the
|
The runtime installer is green at 25 pass / 0 fail and 341 assertions, and the
|
||||||
|
|||||||
@@ -0,0 +1,156 @@
|
|||||||
|
# Browser-provider routing eval — 2026-07-20
|
||||||
|
|
||||||
|
## Scope
|
||||||
|
|
||||||
|
Report-only evaluation of GStack 2 just-in-time browser-provider selection on
|
||||||
|
macOS. No product files, host settings, extensions, browser profiles, or managed
|
||||||
|
runtime components were changed. No `./setup` command was run.
|
||||||
|
|
||||||
|
The inventory covers the seven installer-verified GStack 2 hosts plus Gemini
|
||||||
|
CLI: Claude Code, OpenAI Codex, Kimi Code CLI, Cursor, Pi, OpenClaw, GitHub
|
||||||
|
Copilot/VS Code, and Gemini CLI.
|
||||||
|
|
||||||
|
## Installation-path reproduction
|
||||||
|
|
||||||
|
The reported loaded path was:
|
||||||
|
|
||||||
|
```text
|
||||||
|
.agents/skills/gstack/qa/SKILL.md
|
||||||
|
```
|
||||||
|
|
||||||
|
That is the cloned GStack 1 compatibility tree. Its `qa/SKILL.md` still contains
|
||||||
|
an instruction to run `cd <SKILL_DIR> && ./setup`. The canonical GStack 2 path is:
|
||||||
|
|
||||||
|
```text
|
||||||
|
.agents/skills/qa/SKILL.md
|
||||||
|
```
|
||||||
|
|
||||||
|
The canonical source is `skills/qa/SKILL.md`; it routes browser setup through
|
||||||
|
`references/BROWSER-PROVIDERS.md` and explicitly forbids `./setup` in a
|
||||||
|
standards-installed skill directory.
|
||||||
|
|
||||||
|
## Official provider inventory
|
||||||
|
|
||||||
|
| Host | Interactive browser capability | Classification | Setup/readiness constraint |
|
||||||
|
|---|---|---|---|
|
||||||
|
| Claude Code | Claude in Chrome | Native extension | Chrome extension, paid direct Anthropic plan, site permission, and live connector discovery are required. |
|
||||||
|
| OpenAI Codex Desktop | In-app Browser; optional Codex Chrome connection | Native in-app | The in-app browser must be opened and exposed to the active task; CLI presence is not readiness. |
|
||||||
|
| Gemini CLI | Experimental bundled browser agent | Native experimental agent | Disabled by default, requires Chrome 144+, one-time consent, and can use isolated, persistent, or existing-browser modes. |
|
||||||
|
| Cursor | Chrome DevTools provider was live in the evaluated CLI session | Host-provided MCP | Must be discovered from the current tool surface and pass the common readiness journey. Current public Cursor tool docs do not establish universal availability. |
|
||||||
|
| GitHub Copilot / VS Code | Integrated browser agent tools | Native in-app | Browser tools must be enabled in the tool picker and may be controlled by organization policy. Agent-created pages use isolated in-memory state. |
|
||||||
|
| OpenClaw | Bundled browser plugin | Native bundled plugin | Plugin/tool policy must expose it; the default managed profile is isolated from the personal profile. |
|
||||||
|
| Kimi Code CLI | WebSearch and FetchURL only | No native interactive automation | `kimi web` is the session UI, not an agent-controlled browser. |
|
||||||
|
| Pi | No core browser; optional community packages exist | Extension-only | A third-party package install is required and must never be inferred or performed silently. |
|
||||||
|
|
||||||
|
Primary documentation:
|
||||||
|
|
||||||
|
- Claude: https://code.claude.com/docs/en/chrome
|
||||||
|
- Codex: https://help.openai.com/en/articles/20001277-using-the-built-in-browser-in-the-chatgpt-desktop-app
|
||||||
|
- Gemini: https://github.com/google-gemini/gemini-cli/blob/main/docs/core/subagents.md
|
||||||
|
- GitHub Copilot / VS Code: https://code.visualstudio.com/docs/agents/guides/browser-agent-testing-guide
|
||||||
|
- OpenClaw: https://docs.openclaw.ai/browser
|
||||||
|
- Kimi: https://www.kimi.com/code/docs/en/kimi-code-cli/reference/tools.html
|
||||||
|
- Pi: https://pi.dev/docs/latest
|
||||||
|
|
||||||
|
## Provider-selection eval
|
||||||
|
|
||||||
|
All runnable agents received the same clean-room prompt, canonical project-local
|
||||||
|
QA skill, and fresh `GSTACK_HOME`. The prompt prohibited installation, settings
|
||||||
|
changes, extension enablement, profile attachment, consent acceptance, and
|
||||||
|
`./setup`.
|
||||||
|
|
||||||
|
| Host run | Version | Result | Key evidence |
|
||||||
|
|---|---:|---|---|
|
||||||
|
| Claude Code | 2.1.214 | PASS | Correctly found no Claude-in-Chrome tool surface, rejected unrelated installed binaries as readiness, and offered native setup, GStack preview/install, evidence-free continuation, or defer. |
|
||||||
|
| Codex CLI | 0.144.5 | PASS | Live provider discovery returned no browser in the CLI task; it correctly offered activation of Codex Desktop Browser and the other three choices without installing. |
|
||||||
|
| Gemini CLI | 0.51.0 | FAIL | Twice misidentified itself as Codex by reading inherited `CODEX_*`/desktop environment signals. It never inspected a callable Gemini browser tool and omitted Gemini's own experimental browser agent. |
|
||||||
|
| Cursor Agent | 2026.07.16-899851b | PASS WITH CONTRACT AMBIGUITY | Discovered a live Chrome DevTools peer and completed functional tests, but initially emitted `currently_usable: true` before the readiness journey had passed. |
|
||||||
|
| Pi | 0.80.9 | PASS | Correctly classified the read-only session as no native automation and offered all four choices. |
|
||||||
|
| Kimi | 1.49.0 | BLOCKED | Existing credential returned HTTP 401 before the agent could evaluate the skill. |
|
||||||
|
| OpenClaw | not installed | UNTESTED LIVE | Official documentation establishes a bundled browser plugin; no local executable was available. |
|
||||||
|
| GitHub Copilot / VS Code | VS Code 3.12.17 | UNTESTED LIVE | Official documentation establishes integrated browser tools; the active task did not expose a Copilot agent session. |
|
||||||
|
|
||||||
|
The cross-model harness dry-run recognized Claude and Codex but incorrectly
|
||||||
|
reported Gemini OAuth as unavailable. The Claude/Codex selection run completed
|
||||||
|
without a paid quality judge:
|
||||||
|
|
||||||
|
| Model | Latency | Input → output tokens | Estimated cost | Tool calls |
|
||||||
|
|---|---:|---:|---:|---:|
|
||||||
|
| Claude Opus 4.7 | 69.8 s | 8 → 4,801 | $0.52 | 5 |
|
||||||
|
| GPT-5.4 | 43.1 s | 190,996 → 1,398 | $0.49 | 9 |
|
||||||
|
|
||||||
|
## Functional public-web eval
|
||||||
|
|
||||||
|
Two providers were already available without installation or profile attachment:
|
||||||
|
Codex In-app Browser and Cursor's Chrome DevTools provider. Both passed the same
|
||||||
|
four journeys:
|
||||||
|
|
||||||
|
1. TodoMVC: add a todo, mark it complete, open the Completed filter, and verify
|
||||||
|
retained state plus zero active items.
|
||||||
|
2. Selenium Web Form: fill text, choose option Two, check the default checkbox,
|
||||||
|
submit, and verify `Form submitted` plus `Received!`.
|
||||||
|
3. The Internet JavaScript Error: capture the deliberate `TypeError` from the
|
||||||
|
console with its source URL.
|
||||||
|
4. TodoMVC responsive: emulate 375×812 and capture screenshot evidence.
|
||||||
|
|
||||||
|
Both providers also passed the local common-readiness fixture: exact loopback
|
||||||
|
navigation, heading read, button interaction, `READY` state, console marker,
|
||||||
|
successful `POST /proof`, fixture shutdown, and released listener.
|
||||||
|
|
||||||
|
Evidence:
|
||||||
|
|
||||||
|
- Codex TodoMVC: `/tmp/gstack-browser-provider-evals/codex-in-app/todomvc-completed.png`
|
||||||
|
- Codex Selenium form: `/tmp/gstack-browser-provider-evals/codex-in-app/selenium-form-submitted.png`
|
||||||
|
- Codex console-error page: `/tmp/gstack-browser-provider-evals/codex-in-app/javascript-error.png`
|
||||||
|
- Codex mobile: `/tmp/gstack-browser-provider-evals/codex-in-app/todomvc-mobile.png`
|
||||||
|
- Cursor mobile: `/tmp/gstack-browser-provider-evals/cursor/todomvc-375x812.png`
|
||||||
|
|
||||||
|
## Findings
|
||||||
|
|
||||||
|
1. **P0 onboarding path ambiguity:** cloning the repository under
|
||||||
|
`.agents/skills/gstack` exposes the legacy compatibility skill and its
|
||||||
|
`./setup` instruction. A clean GStack 2 evaluation must use the standards
|
||||||
|
installer and load `.agents/skills/qa/SKILL.md`.
|
||||||
|
2. **P1 provider registry is incomplete:** `BROWSER-PROVIDERS.md` names only
|
||||||
|
Claude, Codex, and Kimi. It is missing Gemini, Cursor/runtime-discovered MCP,
|
||||||
|
GitHub Copilot/VS Code, OpenClaw, and Pi's explicit no-core-browser case.
|
||||||
|
3. **P1 host inference is unsafe:** Gemini demonstrated that environment
|
||||||
|
variables inherited from the parent application can identify the wrong host.
|
||||||
|
Provider selection must use active callable tool discovery first.
|
||||||
|
4. **P1 readiness state is underspecified:** `available`, `needs-user-action`,
|
||||||
|
and `ready` must be separate states. Cursor called the provider usable before
|
||||||
|
the readiness fixture had run.
|
||||||
|
5. **P1 benchmark detection misses Gemini OAuth:** the model benchmark's auth
|
||||||
|
detector disagreed with a successful direct Gemini run.
|
||||||
|
6. **P2 no cross-host setup copy:** the user-facing decision should be generated
|
||||||
|
from a common state machine, with host-specific setup text supplied by an
|
||||||
|
internal registry rather than hand-authored branching in each specialist.
|
||||||
|
|
||||||
|
## Recommended decision contract
|
||||||
|
|
||||||
|
```text
|
||||||
|
QA requires an interactive browser.
|
||||||
|
|
||||||
|
Detected: <provider> — <ready | needs user action | unavailable>
|
||||||
|
|
||||||
|
A) Use the detected agent browser
|
||||||
|
B) Preview the isolated GStack browser download, then ask separately to install
|
||||||
|
C) Continue without browser evidence (interactive claims will be unverified)
|
||||||
|
D) Defer
|
||||||
|
```
|
||||||
|
|
||||||
|
Selection is not readiness. Readiness is granted only after the common fixture
|
||||||
|
proves navigation, page reading, interaction, console/network evidence when
|
||||||
|
supported, and clean shutdown. GStack local browser preview and installation
|
||||||
|
remain two separate approvals. `./setup` is never a valid GStack 2 response.
|
||||||
|
|
||||||
|
## Untested surfaces
|
||||||
|
|
||||||
|
- Claude in Chrome functional automation: no extension peer was attached and no
|
||||||
|
permission was granted to attach a signed-in profile.
|
||||||
|
- Gemini browser-agent functional automation: enabling it and accepting its
|
||||||
|
first-run consent would change isolated host settings and requires explicit
|
||||||
|
approval.
|
||||||
|
- GitHub Copilot/VS Code and OpenClaw live journeys: their agent tool surfaces
|
||||||
|
were not active on this machine.
|
||||||
|
- Kimi provider-selection judgment: authentication failed before inference.
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "autoplan/SKILL.md.tmpl",
|
"source_path": "autoplan/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "b2eaca9fde8f46001bea9961b8ed651d0f6f9e13",
|
"blob_sha": "b2eaca9fde8f46001bea9961b8ed651d0f6f9e13",
|
||||||
"normalized_render_sha256": "b11bef3e060400cd59a16e41c9b6f8395ace065867a1c2a70329319153a2c4dc",
|
"normalized_render_sha256": "dffedf321083151a10e7377dba6dcfd5507b678c5279f5d47a1b0d91bfe53e09",
|
||||||
"target": "skills/plan/references/legacy/autoplan.md",
|
"target": "skills/plan/references/legacy/autoplan.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "benchmark-models/SKILL.md.tmpl",
|
"source_path": "benchmark-models/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "034cda182406dc04a82c4336ac3ebc36b5fc41b1",
|
"blob_sha": "034cda182406dc04a82c4336ac3ebc36b5fc41b1",
|
||||||
"normalized_render_sha256": "2ef0679d45f21bacc09cd774ff96bb3b82853a8e89d8606847c4f9416a47a48b",
|
"normalized_render_sha256": "3ea3c6cd3542350d4130ee0d5e170c905d0c5c3da096b1fc0e805e095af9321c",
|
||||||
"target": "skills/qa/references/legacy/benchmark-models.md",
|
"target": "skills/qa/references/legacy/benchmark-models.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "benchmark/SKILL.md.tmpl",
|
"source_path": "benchmark/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "038f16f5fba4ae4e9eae922e3276bba8ef88149e",
|
"blob_sha": "038f16f5fba4ae4e9eae922e3276bba8ef88149e",
|
||||||
"normalized_render_sha256": "a4554b8b139ee95c9f25c2e747f9e2214b2f0db64401057529e5ec775be323cd",
|
"normalized_render_sha256": "05ac1b123a605201546a7e95899a5b55708ca7fbb7569c58b4d755c52b45a92d",
|
||||||
"target": "skills/qa/references/legacy/benchmark.md",
|
"target": "skills/qa/references/legacy/benchmark.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "browse/SKILL.md.tmpl",
|
"source_path": "browse/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "9a159e4c9820172c229e2174d4a62a8f9668ab93",
|
"blob_sha": "9a159e4c9820172c229e2174d4a62a8f9668ab93",
|
||||||
"normalized_render_sha256": "b7fd526a00444003cad654abb15c2d17606cc5295f38533754e95108038d3467",
|
"normalized_render_sha256": "1b532bd904b1fa1686113e8c96b70015ea6b2e6df7319a72c299de901fe5e81b",
|
||||||
"target": "skills/qa/references/legacy/browse.md",
|
"target": "skills/qa/references/legacy/browse.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "canary/SKILL.md.tmpl",
|
"source_path": "canary/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "d1eb2950aba2fa2b09d90f13143492c60d46793c",
|
"blob_sha": "d1eb2950aba2fa2b09d90f13143492c60d46793c",
|
||||||
"normalized_render_sha256": "329b61120f60893d023533cbc493389d1c7476819fb785422de0e7d34e0c2c0b",
|
"normalized_render_sha256": "89be5f218da2bd812303c87b8c177081727727e5e0d2dc74eb7a73299794d5ef",
|
||||||
"target": "skills/qa/references/legacy/canary.md",
|
"target": "skills/qa/references/legacy/canary.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "codex/SKILL.md.tmpl",
|
"source_path": "codex/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "333de7d8d590cc78184b0e2371171f6121408f73",
|
"blob_sha": "333de7d8d590cc78184b0e2371171f6121408f73",
|
||||||
"normalized_render_sha256": "0df6ff685d230f87763b4c43f957e20854fe1319d78247d683e5250e2accb188",
|
"normalized_render_sha256": "94ebbe955a1063f88712c51723023765519eab8986b029bf1222d0ec19b79e12",
|
||||||
"target": "skills/review/references/legacy/codex.md",
|
"target": "skills/review/references/legacy/codex.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "context-restore/SKILL.md.tmpl",
|
"source_path": "context-restore/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "55889f6e06d3ba896f33a16969959c700bc24f1e",
|
"blob_sha": "55889f6e06d3ba896f33a16969959c700bc24f1e",
|
||||||
"normalized_render_sha256": "c14726232c67616485c115dd7ca0898992bab9c7990629b40dc3b6f1c0dec0ee",
|
"normalized_render_sha256": "44c64ae4a63d0ed0fbc427ee2e4f0330d5074c14cdc589baa660dd7a22dbcdf9",
|
||||||
"target": "skills/plan/references/legacy/context-restore.md",
|
"target": "skills/plan/references/legacy/context-restore.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "context-save/SKILL.md.tmpl",
|
"source_path": "context-save/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "a3702bc95439cddd87841aba836708bf511ef55d",
|
"blob_sha": "a3702bc95439cddd87841aba836708bf511ef55d",
|
||||||
"normalized_render_sha256": "348b840c60cecd8818d75f63ebb8e3effae659437137ce75c1ba6124177120b6",
|
"normalized_render_sha256": "f457da8b2cc1f9a4ed8ba82f4ea570a69460ce0147e171b5023d66324b6dc899",
|
||||||
"target": "skills/plan/references/legacy/context-save.md",
|
"target": "skills/plan/references/legacy/context-save.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "cso/SKILL.md.tmpl",
|
"source_path": "cso/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "413fb099597b55dadca116e45a202aa693a94b74",
|
"blob_sha": "413fb099597b55dadca116e45a202aa693a94b74",
|
||||||
"normalized_render_sha256": "2cecaf39e950a0ec848f85c11f9678b6a7644c0251c07be42cd52d4b2e6b61a6",
|
"normalized_render_sha256": "d79cf702cef33e878da8569c63936e3bdf811b194d8abbce925b6bb759f05cf7",
|
||||||
"target": "skills/review/references/legacy/cso.md",
|
"target": "skills/review/references/legacy/cso.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "design-consultation/SKILL.md.tmpl",
|
"source_path": "design-consultation/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "64af56ecdbd132cb7c28344e8e4ecb2e5dacf811",
|
"blob_sha": "64af56ecdbd132cb7c28344e8e4ecb2e5dacf811",
|
||||||
"normalized_render_sha256": "afa1f2b58d22d9f0f9064336ce7e9836430a298e1deb56f5330390f91df3f680",
|
"normalized_render_sha256": "d323457820291635bc4c46e4559ce6f4d194b940607b76208e95df0c86ffcb0b",
|
||||||
"target": "skills/design/references/legacy/design-consultation.md",
|
"target": "skills/design/references/legacy/design-consultation.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "design-html/SKILL.md.tmpl",
|
"source_path": "design-html/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "3cdec9a14d62d2e046ed924c972efc30a7d43aca",
|
"blob_sha": "3cdec9a14d62d2e046ed924c972efc30a7d43aca",
|
||||||
"normalized_render_sha256": "cbb1b4357bedbb0fffe23c3e0ad31ee8c2a198a31443edb660e5c836e67e94e6",
|
"normalized_render_sha256": "40682d97ac83aa9178487348d5abf176334fd439e2d12f8e5cda1f8b20cd2c30",
|
||||||
"target": "skills/design/references/legacy/design-html.md",
|
"target": "skills/design/references/legacy/design-html.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "design-review/SKILL.md.tmpl",
|
"source_path": "design-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "bdcda48e29b489a1cc49faa333922412251d4b41",
|
"blob_sha": "bdcda48e29b489a1cc49faa333922412251d4b41",
|
||||||
"normalized_render_sha256": "33584047a11aa46a1b6a2bef5bf97a4d0b443bb6c9542685732e7d4dff795a2e",
|
"normalized_render_sha256": "fe15a4fae62fba41432ae18bbf4ef5620058b784b7bf9768304d0d1dd17bf45b",
|
||||||
"target": "skills/design/references/legacy/design-review.md",
|
"target": "skills/design/references/legacy/design-review.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "design-shotgun/SKILL.md.tmpl",
|
"source_path": "design-shotgun/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "230dbc2922f05bf272bf5168a958a12604fac1bc",
|
"blob_sha": "230dbc2922f05bf272bf5168a958a12604fac1bc",
|
||||||
"normalized_render_sha256": "1db4cd23ee115ce841d2db898cc442141588635d43018393703aa28ce40d48f2",
|
"normalized_render_sha256": "e27c29760f1edffffee08f131b2c0ee76720eb447d3bb05eee4278467d785620",
|
||||||
"target": "skills/design/references/legacy/design-shotgun.md",
|
"target": "skills/design/references/legacy/design-shotgun.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "devex-review/SKILL.md.tmpl",
|
"source_path": "devex-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "081d4f35bbdec0c6b3da8ae71615ec4d41a84551",
|
"blob_sha": "081d4f35bbdec0c6b3da8ae71615ec4d41a84551",
|
||||||
"normalized_render_sha256": "9fbc11b3fe252c281581512d67f6915c72e34bb2fdc7bc795e3077ee0e48d34e",
|
"normalized_render_sha256": "4a907c759b6cf4202fbacaea504b1eb601a53dd35b206109d6c5105168ade7e1",
|
||||||
"target": "skills/qa/references/legacy/devex-review.md",
|
"target": "skills/qa/references/legacy/devex-review.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "diagram/SKILL.md.tmpl",
|
"source_path": "diagram/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "9e19a52c6b7f727ce4faf5c1f9c14514ecb52f50",
|
"blob_sha": "9e19a52c6b7f727ce4faf5c1f9c14514ecb52f50",
|
||||||
"normalized_render_sha256": "21f18fa4957b79bf5941abfebd1b222dee3eb960520e0deac1c32d0b6fd62a38",
|
"normalized_render_sha256": "18b1db5eb50d85a6da26b60ac72a19c144e95bb4a2d92b2d23a87086c49c01b7",
|
||||||
"target": "skills/design/references/legacy/diagram.md",
|
"target": "skills/design/references/legacy/diagram.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "document-generate/SKILL.md.tmpl",
|
"source_path": "document-generate/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "d3ef0cbc3786c4010b3c692fb94246f56a7e1d7b",
|
"blob_sha": "d3ef0cbc3786c4010b3c692fb94246f56a7e1d7b",
|
||||||
"normalized_render_sha256": "71726ef3082b6c00a5cad19d28da4d830f8e9b261d213a7938c4e1ce3b8c54bb",
|
"normalized_render_sha256": "d91adb16f1749c24bc7a05aa6cff3ff00bb0db005872751f417e66de2057e620",
|
||||||
"target": "skills/ship/references/legacy/document-generate.md",
|
"target": "skills/ship/references/legacy/document-generate.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "document-release/SKILL.md.tmpl",
|
"source_path": "document-release/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "7621cb31290217b5c7cc8fb000e910b3dd38128f",
|
"blob_sha": "7621cb31290217b5c7cc8fb000e910b3dd38128f",
|
||||||
"normalized_render_sha256": "e5aa85ac93b36b638d075d152f9d7108c0108727056f61331b25fe33de569a59",
|
"normalized_render_sha256": "21de7096aa788e3c4206587761f3122016f4cfc3080ec07f07cd7698075307a5",
|
||||||
"target": "skills/ship/references/legacy/document-release.md",
|
"target": "skills/ship/references/legacy/document-release.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "freeze/SKILL.md.tmpl",
|
"source_path": "freeze/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "c0b31aa7f9f216fc5a351d91f4bcff68c828d090",
|
"blob_sha": "c0b31aa7f9f216fc5a351d91f4bcff68c828d090",
|
||||||
"normalized_render_sha256": "433bb7c1909852c83978ae282c582590c5136abe56020e7d0be39749822c345b",
|
"normalized_render_sha256": "036fe2c7d5c154982ba3509e9b9ab1f5867f86c1d71beb569802d7f7be46ed7c",
|
||||||
"target": "skills/debug/references/legacy/freeze.md",
|
"target": "skills/debug/references/legacy/freeze.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "guard/SKILL.md.tmpl",
|
"source_path": "guard/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "3d34ee0c181ec7b263bf6092ba8f384619c5efb6",
|
"blob_sha": "3d34ee0c181ec7b263bf6092ba8f384619c5efb6",
|
||||||
"normalized_render_sha256": "ff8170babcc9ad20f6de292db838d2c4545f0ed98dddd184ab5e7c52c073dc7e",
|
"normalized_render_sha256": "36072a06a2a2ab6c1beec2a888417fb96eb1a50f284cb26ee3796b7c69857be8",
|
||||||
"target": "skills/debug/references/legacy/guard.md",
|
"target": "skills/debug/references/legacy/guard.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "health/SKILL.md.tmpl",
|
"source_path": "health/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "f92eb7347ec4f77dd8dbf464d63fcdf6a3459908",
|
"blob_sha": "f92eb7347ec4f77dd8dbf464d63fcdf6a3459908",
|
||||||
"normalized_render_sha256": "ff664221e7de57e66c1b45d719982d90f38e0288914b34731ba4dd73541347e8",
|
"normalized_render_sha256": "514ff165b393a25707c9ed336869ac0b50c63a00d90a21b1656276e1b97842d9",
|
||||||
"target": "skills/review/references/legacy/health.md",
|
"target": "skills/review/references/legacy/health.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "investigate/SKILL.md.tmpl",
|
"source_path": "investigate/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "67e254d743ffb9060f48e3f6d4b715c077ee688d",
|
"blob_sha": "67e254d743ffb9060f48e3f6d4b715c077ee688d",
|
||||||
"normalized_render_sha256": "91f19c8d736a9a6077941f63f52853634325059e5ac4d8808c4ba6dbceca1a30",
|
"normalized_render_sha256": "ee817d27e0b303b1e173ab2c572c70f55ef2211225d366a166d2e26cbbe3b2ab",
|
||||||
"target": "skills/debug/references/legacy/investigate.md",
|
"target": "skills/debug/references/legacy/investigate.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "ios-qa/SKILL.md.tmpl",
|
"source_path": "ios-qa/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "e93d2831a31df65ec8e4e8693919ef5bf148457f",
|
"blob_sha": "e93d2831a31df65ec8e4e8693919ef5bf148457f",
|
||||||
"normalized_render_sha256": "a9353a4d837240f85c0e13144e66575f9e267926090cfc0f344a08b5fb09b98c",
|
"normalized_render_sha256": "73ea0aabaa9e7c8fdd4ae279f519303a78682540b2340816f97e239718908e62",
|
||||||
"target": "skills/qa/references/legacy/ios-qa.md",
|
"target": "skills/qa/references/legacy/ios-qa.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "ios-sync/SKILL.md.tmpl",
|
"source_path": "ios-sync/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "156a33c4c35d3bad804e44c93ae4c931878489f3",
|
"blob_sha": "156a33c4c35d3bad804e44c93ae4c931878489f3",
|
||||||
"normalized_render_sha256": "c51e8865876efae833e92d54b37780afd4fa6240c13231dfb7d4635948fbc73f",
|
"normalized_render_sha256": "88f9f20aa406c13098ebd2709afc6487bb42c5466ac9f757bf4d9baff7f028d0",
|
||||||
"target": "skills/ship/references/legacy/ios-sync.md",
|
"target": "skills/ship/references/legacy/ios-sync.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "land-and-deploy/SKILL.md.tmpl",
|
"source_path": "land-and-deploy/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "98976ad020d541d251cc7e34802a13458ddc88e2",
|
"blob_sha": "98976ad020d541d251cc7e34802a13458ddc88e2",
|
||||||
"normalized_render_sha256": "3fab0678a9a7a76664330c74db2bd25b56c335ac72ce4e691c2f2564a7ede819",
|
"normalized_render_sha256": "6920f3d97ce474b8f20c8b3e38ca9d3c03973e47af33103a60bab7c02eb867bd",
|
||||||
"target": "skills/ship/references/legacy/land-and-deploy.md",
|
"target": "skills/ship/references/legacy/land-and-deploy.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "landing-report/SKILL.md.tmpl",
|
"source_path": "landing-report/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "32a8cc1ab036b1ff8692f0400b68d8b56224a251",
|
"blob_sha": "32a8cc1ab036b1ff8692f0400b68d8b56224a251",
|
||||||
"normalized_render_sha256": "4f9512bafcfd995c4c35cdff869ed60f8a9a9ef12f20bc18bf7b898cbd2faa53",
|
"normalized_render_sha256": "ae5050b0558b5324f58ee9181dc83ac0189b63da70d94f86792c08e112765fe9",
|
||||||
"target": "skills/ship/references/legacy/landing-report.md",
|
"target": "skills/ship/references/legacy/landing-report.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "learn/SKILL.md.tmpl",
|
"source_path": "learn/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "90d08d2298cccd0d5090f194a2cd76a5361b4323",
|
"blob_sha": "90d08d2298cccd0d5090f194a2cd76a5361b4323",
|
||||||
"normalized_render_sha256": "0d1bbdf1bba2eaae206a350d47fb25ab50d49611262cb376861e83f78822f762",
|
"normalized_render_sha256": "b56cfcec0690c47124cf62e40aea16658933b61d44adbe821449f8c65a96a7c4",
|
||||||
"target": "skills/plan/references/legacy/learn.md",
|
"target": "skills/plan/references/legacy/learn.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "make-pdf/SKILL.md.tmpl",
|
"source_path": "make-pdf/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "9133a711d4f3d056a21f790e8ec3b98f13fbaa50",
|
"blob_sha": "9133a711d4f3d056a21f790e8ec3b98f13fbaa50",
|
||||||
"normalized_render_sha256": "c092bc644ff9b8929d9cbdfedb6f2761b40ce8e1fca53d13ad350ba91195104d",
|
"normalized_render_sha256": "ece1cfa64bb3cbb3979ce06890e09bbc2ccab4e1d49310c57dc28e70e1236ee9",
|
||||||
"target": "skills/design/references/legacy/make-pdf.md",
|
"target": "skills/design/references/legacy/make-pdf.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "office-hours/SKILL.md.tmpl",
|
"source_path": "office-hours/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "8568fe73cca76a80805fab3092cacd10db7e1d7f",
|
"blob_sha": "8568fe73cca76a80805fab3092cacd10db7e1d7f",
|
||||||
"normalized_render_sha256": "b633a6ef87928ca2434f3a2b1ce88946cbe528a9e3659469e0f9cbbe8a7b146b",
|
"normalized_render_sha256": "1a5c9dbda769631df4c3e909fde6b97917780f6a7e9eca5a4edc8c2d0f302052",
|
||||||
"target": "skills/plan/references/legacy/office-hours.md",
|
"target": "skills/plan/references/legacy/office-hours.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "open-gstack-browser/SKILL.md.tmpl",
|
"source_path": "open-gstack-browser/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "ef91a527890a3ac3622cc7dc84bad1ff7b64443b",
|
"blob_sha": "ef91a527890a3ac3622cc7dc84bad1ff7b64443b",
|
||||||
"normalized_render_sha256": "9e4a08db3e17badfc67703f7c5e66f80a7f05e0b96fad31fc48b8216964d7449",
|
"normalized_render_sha256": "df626d71b8cea4a02d2fb7aef3169563dd132bf17a9d6d84f287894cad84d2cf",
|
||||||
"target": "skills/qa/references/legacy/open-gstack-browser.md",
|
"target": "skills/qa/references/legacy/open-gstack-browser.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "pair-agent/SKILL.md.tmpl",
|
"source_path": "pair-agent/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "75ed42d590f99c46cd0883c37bb1f2f9f499211c",
|
"blob_sha": "75ed42d590f99c46cd0883c37bb1f2f9f499211c",
|
||||||
"normalized_render_sha256": "6882bc549c689ff50fb06d5e72a597939aa651926c50067330d1e6fd86cd6b58",
|
"normalized_render_sha256": "8557ca390d0b6548f956d2c0e9316f1cf137689d4dc17d40a4525d19f22bc457",
|
||||||
"target": "skills/qa/references/legacy/pair-agent.md",
|
"target": "skills/qa/references/legacy/pair-agent.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "plan-ceo-review/SKILL.md.tmpl",
|
"source_path": "plan-ceo-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "c43cfe64146fe79df74a974f1673fe36defcce00",
|
"blob_sha": "c43cfe64146fe79df74a974f1673fe36defcce00",
|
||||||
"normalized_render_sha256": "b2f811568920dfdbd500372df13855041ecb2b8b73e3629f3c71d87c5a78e034",
|
"normalized_render_sha256": "811b50b2cf2e20768138c50ef67471402ad1e361bd07958c63107c5081cf21b7",
|
||||||
"target": "skills/plan/references/legacy/plan-ceo-review.md",
|
"target": "skills/plan/references/legacy/plan-ceo-review.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "plan-design-review/SKILL.md.tmpl",
|
"source_path": "plan-design-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "7178c991e41277410de500298cf81372543861af",
|
"blob_sha": "7178c991e41277410de500298cf81372543861af",
|
||||||
"normalized_render_sha256": "2f7a5d113c466d75ca4524e424c072044d92ae7ab93009f1fbe3ae5965e8aa34",
|
"normalized_render_sha256": "1ff3644728bee14a4a002b91bada44b1c95a20ee5779ed458dabca2485a19e78",
|
||||||
"target": "skills/design/references/legacy/plan-design-review.md",
|
"target": "skills/design/references/legacy/plan-design-review.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "plan-devex-review/SKILL.md.tmpl",
|
"source_path": "plan-devex-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "1ef723c10997a08ef87940daceb08bf8d60dd810",
|
"blob_sha": "1ef723c10997a08ef87940daceb08bf8d60dd810",
|
||||||
"normalized_render_sha256": "fff989dcab1f37d0c219378caef6b1e627c23c2537a717564be0d8567229bccc",
|
"normalized_render_sha256": "2d39acb36fdc7f4f4b3492ff7dd21081fad98b256fa40d00aeee67bd41343f15",
|
||||||
"target": "skills/plan/references/legacy/plan-devex-review.md",
|
"target": "skills/plan/references/legacy/plan-devex-review.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "plan-eng-review/SKILL.md.tmpl",
|
"source_path": "plan-eng-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "1d5be0e6f47f0896ee831b53c56818850b1dcfe4",
|
"blob_sha": "1d5be0e6f47f0896ee831b53c56818850b1dcfe4",
|
||||||
"normalized_render_sha256": "ee268f1d24769509b89b7db998372a773d9e7bc376306a68319af4f74c6fe713",
|
"normalized_render_sha256": "0ed7d4a6ec9dadf363ef5d9311392067a3d90bddac9c1ec781d0f25db55e13ae",
|
||||||
"target": "skills/plan/references/legacy/plan-eng-review.md",
|
"target": "skills/plan/references/legacy/plan-eng-review.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "plan-tune/SKILL.md.tmpl",
|
"source_path": "plan-tune/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "dc1214d4c023ed2b126aca8aedb4153b222e73c5",
|
"blob_sha": "dc1214d4c023ed2b126aca8aedb4153b222e73c5",
|
||||||
"normalized_render_sha256": "306bbf971a2867e1f39cce82d64289d6c457bceb07439ddd6f4a3ff8f8ae5e9a",
|
"normalized_render_sha256": "f2204078e497a347b48a2b0899400baf3b6ab54f097bbd57d06deb5f71126ce9",
|
||||||
"target": "skills/plan/references/legacy/plan-tune.md",
|
"target": "skills/plan/references/legacy/plan-tune.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "qa-only/SKILL.md.tmpl",
|
"source_path": "qa-only/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "75c4123cc5c406ffdd36c71a094335c137135b1e",
|
"blob_sha": "75c4123cc5c406ffdd36c71a094335c137135b1e",
|
||||||
"normalized_render_sha256": "e360ea826399287e00b030c9aa0bcda16e06ab004f5dcdb14db309bad0ccea25",
|
"normalized_render_sha256": "376eff42459f5b8755bd95934cce615db0fca16504c8e82f84b2704c63f62af3",
|
||||||
"target": "skills/qa/references/legacy/qa-only.md",
|
"target": "skills/qa/references/legacy/qa-only.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "qa/SKILL.md.tmpl",
|
"source_path": "qa/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "11997f7b878282c34b6bfd3d4b7a8131f9ad4da8",
|
"blob_sha": "11997f7b878282c34b6bfd3d4b7a8131f9ad4da8",
|
||||||
"normalized_render_sha256": "b1387290067842593297c8d64dc578a890a336ce5a8b60085e51b52c55ebaade",
|
"normalized_render_sha256": "e7cd5615adaf54413daa97838cb364810317dd7d661cec5cc4ed40eb48192e55",
|
||||||
"target": "skills/qa/references/legacy/qa.md",
|
"target": "skills/qa/references/legacy/qa.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "retro/SKILL.md.tmpl",
|
"source_path": "retro/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "b0819c8a6b736baf489179ba587442cf9973b9d2",
|
"blob_sha": "b0819c8a6b736baf489179ba587442cf9973b9d2",
|
||||||
"normalized_render_sha256": "c92e69da5c62e4bb5a426f4fb5623b41215e538315e2faebece8ba118cacaf71",
|
"normalized_render_sha256": "d2dd2fe80fbeb5573266700052e0ce5e781dcd31ed986cd9203880bc98c9d9c8",
|
||||||
"target": "skills/plan/references/legacy/retro.md",
|
"target": "skills/plan/references/legacy/retro.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "review/SKILL.md.tmpl",
|
"source_path": "review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "ba1ea88068de4b09cf717eb4ae42aa247d198314",
|
"blob_sha": "ba1ea88068de4b09cf717eb4ae42aa247d198314",
|
||||||
"normalized_render_sha256": "9d6398fe0d2900fcce8ae1eb0b390e21f05c94d6ae3a4e21c911025cdc1fd963",
|
"normalized_render_sha256": "0afa76278ec061e56a36048eb9034a2cda6e56ea70bba321a0414bc279ddf84b",
|
||||||
"target": "skills/review/references/legacy/review.md",
|
"target": "skills/review/references/legacy/review.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
610,
|
610,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "scrape/SKILL.md.tmpl",
|
"source_path": "scrape/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "4cb4f17c074edcdce0bc8d133f19a6a739964851",
|
"blob_sha": "4cb4f17c074edcdce0bc8d133f19a6a739964851",
|
||||||
"normalized_render_sha256": "03ef708a4c9a1f3de961c48767617502c564690faa7240b3ca39b20496a17f98",
|
"normalized_render_sha256": "82b7214021c997000822b2b4adcae19443490198556a7e6af54d8937ae504943",
|
||||||
"target": "skills/qa/references/legacy/scrape.md",
|
"target": "skills/qa/references/legacy/scrape.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "setup-browser-cookies/SKILL.md.tmpl",
|
"source_path": "setup-browser-cookies/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "f812d9f56f27c32fb5f102083bbe418344c1a652",
|
"blob_sha": "f812d9f56f27c32fb5f102083bbe418344c1a652",
|
||||||
"normalized_render_sha256": "8ab5dfb05136a637ce41067d9e50ade76c4a8b957587e4eab134eaa260b29ac3",
|
"normalized_render_sha256": "04c161a58c1a9010efe38095b383b0e1d445a2b678e5bf931a1281d45196940d",
|
||||||
"target": "skills/qa/references/legacy/setup-browser-cookies.md",
|
"target": "skills/qa/references/legacy/setup-browser-cookies.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "setup-gbrain/SKILL.md.tmpl",
|
"source_path": "setup-gbrain/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "f48581543b46ecf889f4f86fb7a0d9e75d0bd6ca",
|
"blob_sha": "f48581543b46ecf889f4f86fb7a0d9e75d0bd6ca",
|
||||||
"normalized_render_sha256": "244ebee93e8871d59c1b0eac040bed362783e48a9b134171d743750ce9a59b29",
|
"normalized_render_sha256": "ea0759f957601c05a6e131ee3d1d9e07c732b7852d8a7b10c1fdc259e6e12c3b",
|
||||||
"target": "skills/plan/references/legacy/setup-gbrain.md",
|
"target": "skills/plan/references/legacy/setup-gbrain.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "ship/SKILL.md.tmpl",
|
"source_path": "ship/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "068ac4fe54bcb46572295d48263b11bd38fcde18",
|
"blob_sha": "068ac4fe54bcb46572295d48263b11bd38fcde18",
|
||||||
"normalized_render_sha256": "ab7a7219653b0fc5cdad0bb2959394798bc50ae4db4dc24b76c0454dd1b1397a",
|
"normalized_render_sha256": "ca55c56483c524c732cf4cd1a7b7ef36f379666577549ef989823b98bce8c5b5",
|
||||||
"target": "skills/ship/references/legacy/ship.md",
|
"target": "skills/ship/references/legacy/ship.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "skillify/SKILL.md.tmpl",
|
"source_path": "skillify/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "21fb2f503e3d40683fa782b21abf05a8f0fef69b",
|
"blob_sha": "21fb2f503e3d40683fa782b21abf05a8f0fef69b",
|
||||||
"normalized_render_sha256": "b0743c957157e19bd90b457fd3ac9d6924c3aedce969c10af8d7973c2bcd6c9f",
|
"normalized_render_sha256": "8743671a165c951e852d1f37418aa6c0bd7eeb4f32866dc25f55f7d8eb26f1d5",
|
||||||
"target": "skills/qa/references/legacy/skillify.md",
|
"target": "skills/qa/references/legacy/skillify.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679,
|
679,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "spec/SKILL.md.tmpl",
|
"source_path": "spec/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "6c0c14e1b37e1e56d85427e9c8d080a6df908992",
|
"blob_sha": "6c0c14e1b37e1e56d85427e9c8d080a6df908992",
|
||||||
"normalized_render_sha256": "059ec7a95791f6fc559f4e2321d7340ef5ae7e4ba89949df401f74d91411bfd3",
|
"normalized_render_sha256": "76b7c03e6d8e7b852beda0a58409d97153771dd8f7b870bbdda23e996ac23fc1",
|
||||||
"target": "skills/plan/references/legacy/spec.md",
|
"target": "skills/plan/references/legacy/spec.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "sync-gbrain/SKILL.md.tmpl",
|
"source_path": "sync-gbrain/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "2ec065472e263a07f3818ed87ee9a6a2e13ca3ae",
|
"blob_sha": "2ec065472e263a07f3818ed87ee9a6a2e13ca3ae",
|
||||||
"normalized_render_sha256": "175e7d0d2998bd4c8ddcd9a84228c41ba4a5cf3aca3a8bc09ddfc5a303c1df30",
|
"normalized_render_sha256": "973d3d126e97f2c720bc048e6a124e51c0195f9bc7a714ffc41fd57af37f4e73",
|
||||||
"target": "skills/plan/references/legacy/sync-gbrain.md",
|
"target": "skills/plan/references/legacy/sync-gbrain.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"source_path": "unfreeze/SKILL.md.tmpl",
|
"source_path": "unfreeze/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "88e413fe5a49a45d46d8867b2d80ace30b3b45aa",
|
"blob_sha": "88e413fe5a49a45d46d8867b2d80ace30b3b45aa",
|
||||||
"normalized_render_sha256": "51d6183901e866697382b7e900e2154e8bfb6a9ebf4f3e1bb3ad29925fad0e20",
|
"normalized_render_sha256": "19cd17084af59cb912f9507bf8ffdc81e38aa1fbef14605a838efbc6521e9534",
|
||||||
"target": "skills/debug/references/legacy/unfreeze.md",
|
"target": "skills/debug/references/legacy/unfreeze.md",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
679
|
679
|
||||||
|
|||||||
+151
-53
@@ -20,7 +20,7 @@
|
|||||||
"bug_fix_ports": 16,
|
"bug_fix_ports": 16,
|
||||||
"assets": 78,
|
"assets": 78,
|
||||||
"dependency_copies": 4,
|
"dependency_copies": 4,
|
||||||
"runtime_helpers": 40
|
"runtime_helpers": 41
|
||||||
},
|
},
|
||||||
"sources": [
|
"sources": [
|
||||||
{
|
{
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
"source_path": "office-hours/SKILL.md.tmpl",
|
"source_path": "office-hours/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "8568fe73cca76a80805fab3092cacd10db7e1d7f",
|
"blob_sha": "8568fe73cca76a80805fab3092cacd10db7e1d7f",
|
||||||
"normalized_render_sha256": "b633a6ef87928ca2434f3a2b1ce88946cbe528a9e3659469e0f9cbbe8a7b146b",
|
"normalized_render_sha256": "1a5c9dbda769631df4c3e909fde6b97917780f6a7e9eca5a4edc8c2d0f302052",
|
||||||
"target": "skills/plan/references/legacy/office-hours.md",
|
"target": "skills/plan/references/legacy/office-hours.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -197,7 +197,7 @@
|
|||||||
"source_path": "plan-ceo-review/SKILL.md.tmpl",
|
"source_path": "plan-ceo-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "c43cfe64146fe79df74a974f1673fe36defcce00",
|
"blob_sha": "c43cfe64146fe79df74a974f1673fe36defcce00",
|
||||||
"normalized_render_sha256": "b2f811568920dfdbd500372df13855041ecb2b8b73e3629f3c71d87c5a78e034",
|
"normalized_render_sha256": "811b50b2cf2e20768138c50ef67471402ad1e361bd07958c63107c5081cf21b7",
|
||||||
"target": "skills/plan/references/legacy/plan-ceo-review.md",
|
"target": "skills/plan/references/legacy/plan-ceo-review.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -337,7 +337,7 @@
|
|||||||
"source_path": "plan-eng-review/SKILL.md.tmpl",
|
"source_path": "plan-eng-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "1d5be0e6f47f0896ee831b53c56818850b1dcfe4",
|
"blob_sha": "1d5be0e6f47f0896ee831b53c56818850b1dcfe4",
|
||||||
"normalized_render_sha256": "ee268f1d24769509b89b7db998372a773d9e7bc376306a68319af4f74c6fe713",
|
"normalized_render_sha256": "0ed7d4a6ec9dadf363ef5d9311392067a3d90bddac9c1ec781d0f25db55e13ae",
|
||||||
"target": "skills/plan/references/legacy/plan-eng-review.md",
|
"target": "skills/plan/references/legacy/plan-eng-review.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -457,7 +457,7 @@
|
|||||||
"source_path": "plan-devex-review/SKILL.md.tmpl",
|
"source_path": "plan-devex-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "1ef723c10997a08ef87940daceb08bf8d60dd810",
|
"blob_sha": "1ef723c10997a08ef87940daceb08bf8d60dd810",
|
||||||
"normalized_render_sha256": "fff989dcab1f37d0c219378caef6b1e627c23c2537a717564be0d8567229bccc",
|
"normalized_render_sha256": "2d39acb36fdc7f4f4b3492ff7dd21081fad98b256fa40d00aeee67bd41343f15",
|
||||||
"target": "skills/plan/references/legacy/plan-devex-review.md",
|
"target": "skills/plan/references/legacy/plan-devex-review.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -590,7 +590,7 @@
|
|||||||
"source_path": "autoplan/SKILL.md.tmpl",
|
"source_path": "autoplan/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "b2eaca9fde8f46001bea9961b8ed651d0f6f9e13",
|
"blob_sha": "b2eaca9fde8f46001bea9961b8ed651d0f6f9e13",
|
||||||
"normalized_render_sha256": "b11bef3e060400cd59a16e41c9b6f8395ace065867a1c2a70329319153a2c4dc",
|
"normalized_render_sha256": "dffedf321083151a10e7377dba6dcfd5507b678c5279f5d47a1b0d91bfe53e09",
|
||||||
"target": "skills/plan/references/legacy/autoplan.md",
|
"target": "skills/plan/references/legacy/autoplan.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -681,7 +681,7 @@
|
|||||||
"source_path": "spec/SKILL.md.tmpl",
|
"source_path": "spec/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "6c0c14e1b37e1e56d85427e9c8d080a6df908992",
|
"blob_sha": "6c0c14e1b37e1e56d85427e9c8d080a6df908992",
|
||||||
"normalized_render_sha256": "059ec7a95791f6fc559f4e2321d7340ef5ae7e4ba89949df401f74d91411bfd3",
|
"normalized_render_sha256": "76b7c03e6d8e7b852beda0a58409d97153771dd8f7b870bbdda23e996ac23fc1",
|
||||||
"target": "skills/plan/references/legacy/spec.md",
|
"target": "skills/plan/references/legacy/spec.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -814,7 +814,7 @@
|
|||||||
"source_path": "plan-tune/SKILL.md.tmpl",
|
"source_path": "plan-tune/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "dc1214d4c023ed2b126aca8aedb4153b222e73c5",
|
"blob_sha": "dc1214d4c023ed2b126aca8aedb4153b222e73c5",
|
||||||
"normalized_render_sha256": "306bbf971a2867e1f39cce82d64289d6c457bceb07439ddd6f4a3ff8f8ae5e9a",
|
"normalized_render_sha256": "f2204078e497a347b48a2b0899400baf3b6ab54f097bbd57d06deb5f71126ce9",
|
||||||
"target": "skills/plan/references/legacy/plan-tune.md",
|
"target": "skills/plan/references/legacy/plan-tune.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -893,7 +893,7 @@
|
|||||||
"source_path": "context-save/SKILL.md.tmpl",
|
"source_path": "context-save/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "a3702bc95439cddd87841aba836708bf511ef55d",
|
"blob_sha": "a3702bc95439cddd87841aba836708bf511ef55d",
|
||||||
"normalized_render_sha256": "348b840c60cecd8818d75f63ebb8e3effae659437137ce75c1ba6124177120b6",
|
"normalized_render_sha256": "f457da8b2cc1f9a4ed8ba82f4ea570a69460ce0147e171b5023d66324b6dc899",
|
||||||
"target": "skills/plan/references/legacy/context-save.md",
|
"target": "skills/plan/references/legacy/context-save.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -968,7 +968,7 @@
|
|||||||
"source_path": "context-restore/SKILL.md.tmpl",
|
"source_path": "context-restore/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "55889f6e06d3ba896f33a16969959c700bc24f1e",
|
"blob_sha": "55889f6e06d3ba896f33a16969959c700bc24f1e",
|
||||||
"normalized_render_sha256": "c14726232c67616485c115dd7ca0898992bab9c7990629b40dc3b6f1c0dec0ee",
|
"normalized_render_sha256": "44c64ae4a63d0ed0fbc427ee2e4f0330d5074c14cdc589baa660dd7a22dbcdf9",
|
||||||
"target": "skills/plan/references/legacy/context-restore.md",
|
"target": "skills/plan/references/legacy/context-restore.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1040,7 +1040,7 @@
|
|||||||
"source_path": "learn/SKILL.md.tmpl",
|
"source_path": "learn/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "90d08d2298cccd0d5090f194a2cd76a5361b4323",
|
"blob_sha": "90d08d2298cccd0d5090f194a2cd76a5361b4323",
|
||||||
"normalized_render_sha256": "0d1bbdf1bba2eaae206a350d47fb25ab50d49611262cb376861e83f78822f762",
|
"normalized_render_sha256": "b56cfcec0690c47124cf62e40aea16658933b61d44adbe821449f8c65a96a7c4",
|
||||||
"target": "skills/plan/references/legacy/learn.md",
|
"target": "skills/plan/references/legacy/learn.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1113,7 +1113,7 @@
|
|||||||
"source_path": "retro/SKILL.md.tmpl",
|
"source_path": "retro/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "b0819c8a6b736baf489179ba587442cf9973b9d2",
|
"blob_sha": "b0819c8a6b736baf489179ba587442cf9973b9d2",
|
||||||
"normalized_render_sha256": "c92e69da5c62e4bb5a426f4fb5623b41215e538315e2faebece8ba118cacaf71",
|
"normalized_render_sha256": "d2dd2fe80fbeb5573266700052e0ce5e781dcd31ed986cd9203880bc98c9d9c8",
|
||||||
"target": "skills/plan/references/legacy/retro.md",
|
"target": "skills/plan/references/legacy/retro.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1240,7 +1240,7 @@
|
|||||||
"source_path": "setup-gbrain/SKILL.md.tmpl",
|
"source_path": "setup-gbrain/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "f48581543b46ecf889f4f86fb7a0d9e75d0bd6ca",
|
"blob_sha": "f48581543b46ecf889f4f86fb7a0d9e75d0bd6ca",
|
||||||
"normalized_render_sha256": "244ebee93e8871d59c1b0eac040bed362783e48a9b134171d743750ce9a59b29",
|
"normalized_render_sha256": "ea0759f957601c05a6e131ee3d1d9e07c732b7852d8a7b10c1fdc259e6e12c3b",
|
||||||
"target": "skills/plan/references/legacy/setup-gbrain.md",
|
"target": "skills/plan/references/legacy/setup-gbrain.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1340,7 +1340,7 @@
|
|||||||
"source_path": "sync-gbrain/SKILL.md.tmpl",
|
"source_path": "sync-gbrain/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "2ec065472e263a07f3818ed87ee9a6a2e13ca3ae",
|
"blob_sha": "2ec065472e263a07f3818ed87ee9a6a2e13ca3ae",
|
||||||
"normalized_render_sha256": "175e7d0d2998bd4c8ddcd9a84228c41ba4a5cf3aca3a8bc09ddfc5a303c1df30",
|
"normalized_render_sha256": "973d3d126e97f2c720bc048e6a124e51c0195f9bc7a714ffc41fd57af37f4e73",
|
||||||
"target": "skills/plan/references/legacy/sync-gbrain.md",
|
"target": "skills/plan/references/legacy/sync-gbrain.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1416,7 +1416,7 @@
|
|||||||
"source_path": "design-consultation/SKILL.md.tmpl",
|
"source_path": "design-consultation/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "64af56ecdbd132cb7c28344e8e4ecb2e5dacf811",
|
"blob_sha": "64af56ecdbd132cb7c28344e8e4ecb2e5dacf811",
|
||||||
"normalized_render_sha256": "afa1f2b58d22d9f0f9064336ce7e9836430a298e1deb56f5330390f91df3f680",
|
"normalized_render_sha256": "d323457820291635bc4c46e4559ce6f4d194b940607b76208e95df0c86ffcb0b",
|
||||||
"target": "skills/design/references/legacy/design-consultation.md",
|
"target": "skills/design/references/legacy/design-consultation.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1504,7 +1504,7 @@
|
|||||||
"source_path": "design-shotgun/SKILL.md.tmpl",
|
"source_path": "design-shotgun/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "230dbc2922f05bf272bf5168a958a12604fac1bc",
|
"blob_sha": "230dbc2922f05bf272bf5168a958a12604fac1bc",
|
||||||
"normalized_render_sha256": "1db4cd23ee115ce841d2db898cc442141588635d43018393703aa28ce40d48f2",
|
"normalized_render_sha256": "e27c29760f1edffffee08f131b2c0ee76720eb447d3bb05eee4278467d785620",
|
||||||
"target": "skills/design/references/legacy/design-shotgun.md",
|
"target": "skills/design/references/legacy/design-shotgun.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1591,7 +1591,7 @@
|
|||||||
"source_path": "design-html/SKILL.md.tmpl",
|
"source_path": "design-html/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "3cdec9a14d62d2e046ed924c972efc30a7d43aca",
|
"blob_sha": "3cdec9a14d62d2e046ed924c972efc30a7d43aca",
|
||||||
"normalized_render_sha256": "cbb1b4357bedbb0fffe23c3e0ad31ee8c2a198a31443edb660e5c836e67e94e6",
|
"normalized_render_sha256": "40682d97ac83aa9178487348d5abf176334fd439e2d12f8e5cda1f8b20cd2c30",
|
||||||
"target": "skills/design/references/legacy/design-html.md",
|
"target": "skills/design/references/legacy/design-html.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1687,7 +1687,7 @@
|
|||||||
"source_path": "plan-design-review/SKILL.md.tmpl",
|
"source_path": "plan-design-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "7178c991e41277410de500298cf81372543861af",
|
"blob_sha": "7178c991e41277410de500298cf81372543861af",
|
||||||
"normalized_render_sha256": "2f7a5d113c466d75ca4524e424c072044d92ae7ab93009f1fbe3ae5965e8aa34",
|
"normalized_render_sha256": "1ff3644728bee14a4a002b91bada44b1c95a20ee5779ed458dabca2485a19e78",
|
||||||
"target": "skills/design/references/legacy/plan-design-review.md",
|
"target": "skills/design/references/legacy/plan-design-review.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -1820,7 +1820,7 @@
|
|||||||
"source_path": "design-review/SKILL.md.tmpl",
|
"source_path": "design-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "bdcda48e29b489a1cc49faa333922412251d4b41",
|
"blob_sha": "bdcda48e29b489a1cc49faa333922412251d4b41",
|
||||||
"normalized_render_sha256": "33584047a11aa46a1b6a2bef5bf97a4d0b443bb6c9542685732e7d4dff795a2e",
|
"normalized_render_sha256": "fe15a4fae62fba41432ae18bbf4ef5620058b784b7bf9768304d0d1dd17bf45b",
|
||||||
"target": "skills/design/references/legacy/design-review.md",
|
"target": "skills/design/references/legacy/design-review.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2022,7 +2022,7 @@
|
|||||||
"source_path": "diagram/SKILL.md.tmpl",
|
"source_path": "diagram/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "9e19a52c6b7f727ce4faf5c1f9c14514ecb52f50",
|
"blob_sha": "9e19a52c6b7f727ce4faf5c1f9c14514ecb52f50",
|
||||||
"normalized_render_sha256": "21f18fa4957b79bf5941abfebd1b222dee3eb960520e0deac1c32d0b6fd62a38",
|
"normalized_render_sha256": "18b1db5eb50d85a6da26b60ac72a19c144e95bb4a2d92b2d23a87086c49c01b7",
|
||||||
"target": "skills/design/references/legacy/diagram.md",
|
"target": "skills/design/references/legacy/diagram.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2095,7 +2095,7 @@
|
|||||||
"source_path": "make-pdf/SKILL.md.tmpl",
|
"source_path": "make-pdf/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "9133a711d4f3d056a21f790e8ec3b98f13fbaa50",
|
"blob_sha": "9133a711d4f3d056a21f790e8ec3b98f13fbaa50",
|
||||||
"normalized_render_sha256": "c092bc644ff9b8929d9cbdfedb6f2761b40ce8e1fca53d13ad350ba91195104d",
|
"normalized_render_sha256": "ece1cfa64bb3cbb3979ce06890e09bbc2ccab4e1d49310c57dc28e70e1236ee9",
|
||||||
"target": "skills/design/references/legacy/make-pdf.md",
|
"target": "skills/design/references/legacy/make-pdf.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2162,7 +2162,7 @@
|
|||||||
"source_path": "qa/SKILL.md.tmpl",
|
"source_path": "qa/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "11997f7b878282c34b6bfd3d4b7a8131f9ad4da8",
|
"blob_sha": "11997f7b878282c34b6bfd3d4b7a8131f9ad4da8",
|
||||||
"normalized_render_sha256": "b1387290067842593297c8d64dc578a890a336ce5a8b60085e51b52c55ebaade",
|
"normalized_render_sha256": "e7cd5615adaf54413daa97838cb364810317dd7d661cec5cc4ed40eb48192e55",
|
||||||
"target": "skills/qa/references/legacy/qa.md",
|
"target": "skills/qa/references/legacy/qa.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2288,7 +2288,7 @@
|
|||||||
"source_path": "qa-only/SKILL.md.tmpl",
|
"source_path": "qa-only/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "75c4123cc5c406ffdd36c71a094335c137135b1e",
|
"blob_sha": "75c4123cc5c406ffdd36c71a094335c137135b1e",
|
||||||
"normalized_render_sha256": "e360ea826399287e00b030c9aa0bcda16e06ab004f5dcdb14db309bad0ccea25",
|
"normalized_render_sha256": "376eff42459f5b8755bd95934cce615db0fca16504c8e82f84b2704c63f62af3",
|
||||||
"target": "skills/qa/references/legacy/qa-only.md",
|
"target": "skills/qa/references/legacy/qa-only.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2389,7 +2389,7 @@
|
|||||||
"source_path": "ios-qa/SKILL.md.tmpl",
|
"source_path": "ios-qa/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "e93d2831a31df65ec8e4e8693919ef5bf148457f",
|
"blob_sha": "e93d2831a31df65ec8e4e8693919ef5bf148457f",
|
||||||
"normalized_render_sha256": "a9353a4d837240f85c0e13144e66575f9e267926090cfc0f344a08b5fb09b98c",
|
"normalized_render_sha256": "73ea0aabaa9e7c8fdd4ae279f519303a78682540b2340816f97e239718908e62",
|
||||||
"target": "skills/qa/references/legacy/ios-qa.md",
|
"target": "skills/qa/references/legacy/ios-qa.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2466,7 +2466,7 @@
|
|||||||
"source_path": "devex-review/SKILL.md.tmpl",
|
"source_path": "devex-review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "081d4f35bbdec0c6b3da8ae71615ec4d41a84551",
|
"blob_sha": "081d4f35bbdec0c6b3da8ae71615ec4d41a84551",
|
||||||
"normalized_render_sha256": "9fbc11b3fe252c281581512d67f6915c72e34bb2fdc7bc795e3077ee0e48d34e",
|
"normalized_render_sha256": "4a907c759b6cf4202fbacaea504b1eb601a53dd35b206109d6c5105168ade7e1",
|
||||||
"target": "skills/qa/references/legacy/devex-review.md",
|
"target": "skills/qa/references/legacy/devex-review.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2565,7 +2565,7 @@
|
|||||||
"source_path": "benchmark/SKILL.md.tmpl",
|
"source_path": "benchmark/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "038f16f5fba4ae4e9eae922e3276bba8ef88149e",
|
"blob_sha": "038f16f5fba4ae4e9eae922e3276bba8ef88149e",
|
||||||
"normalized_render_sha256": "a4554b8b139ee95c9f25c2e747f9e2214b2f0db64401057529e5ec775be323cd",
|
"normalized_render_sha256": "05ac1b123a605201546a7e95899a5b55708ca7fbb7569c58b4d755c52b45a92d",
|
||||||
"target": "skills/qa/references/legacy/benchmark.md",
|
"target": "skills/qa/references/legacy/benchmark.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2631,7 +2631,7 @@
|
|||||||
"source_path": "canary/SKILL.md.tmpl",
|
"source_path": "canary/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "d1eb2950aba2fa2b09d90f13143492c60d46793c",
|
"blob_sha": "d1eb2950aba2fa2b09d90f13143492c60d46793c",
|
||||||
"normalized_render_sha256": "329b61120f60893d023533cbc493389d1c7476819fb785422de0e7d34e0c2c0b",
|
"normalized_render_sha256": "89be5f218da2bd812303c87b8c177081727727e5e0d2dc74eb7a73299794d5ef",
|
||||||
"target": "skills/qa/references/legacy/canary.md",
|
"target": "skills/qa/references/legacy/canary.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2710,7 +2710,7 @@
|
|||||||
"source_path": "browse/SKILL.md.tmpl",
|
"source_path": "browse/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "9a159e4c9820172c229e2174d4a62a8f9668ab93",
|
"blob_sha": "9a159e4c9820172c229e2174d4a62a8f9668ab93",
|
||||||
"normalized_render_sha256": "b7fd526a00444003cad654abb15c2d17606cc5295f38533754e95108038d3467",
|
"normalized_render_sha256": "1b532bd904b1fa1686113e8c96b70015ea6b2e6df7319a72c299de901fe5e81b",
|
||||||
"target": "skills/qa/references/legacy/browse.md",
|
"target": "skills/qa/references/legacy/browse.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2798,7 +2798,7 @@
|
|||||||
"source_path": "open-gstack-browser/SKILL.md.tmpl",
|
"source_path": "open-gstack-browser/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "ef91a527890a3ac3622cc7dc84bad1ff7b64443b",
|
"blob_sha": "ef91a527890a3ac3622cc7dc84bad1ff7b64443b",
|
||||||
"normalized_render_sha256": "9e4a08db3e17badfc67703f7c5e66f80a7f05e0b96fad31fc48b8216964d7449",
|
"normalized_render_sha256": "df626d71b8cea4a02d2fb7aef3169563dd132bf17a9d6d84f287894cad84d2cf",
|
||||||
"target": "skills/qa/references/legacy/open-gstack-browser.md",
|
"target": "skills/qa/references/legacy/open-gstack-browser.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2873,7 +2873,7 @@
|
|||||||
"source_path": "setup-browser-cookies/SKILL.md.tmpl",
|
"source_path": "setup-browser-cookies/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "f812d9f56f27c32fb5f102083bbe418344c1a652",
|
"blob_sha": "f812d9f56f27c32fb5f102083bbe418344c1a652",
|
||||||
"normalized_render_sha256": "8ab5dfb05136a637ce41067d9e50ade76c4a8b957587e4eab134eaa260b29ac3",
|
"normalized_render_sha256": "04c161a58c1a9010efe38095b383b0e1d445a2b678e5bf931a1281d45196940d",
|
||||||
"target": "skills/qa/references/legacy/setup-browser-cookies.md",
|
"target": "skills/qa/references/legacy/setup-browser-cookies.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -2934,7 +2934,7 @@
|
|||||||
"source_path": "pair-agent/SKILL.md.tmpl",
|
"source_path": "pair-agent/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "75ed42d590f99c46cd0883c37bb1f2f9f499211c",
|
"blob_sha": "75ed42d590f99c46cd0883c37bb1f2f9f499211c",
|
||||||
"normalized_render_sha256": "6882bc549c689ff50fb06d5e72a597939aa651926c50067330d1e6fd86cd6b58",
|
"normalized_render_sha256": "8557ca390d0b6548f956d2c0e9316f1cf137689d4dc17d40a4525d19f22bc457",
|
||||||
"target": "skills/qa/references/legacy/pair-agent.md",
|
"target": "skills/qa/references/legacy/pair-agent.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3017,7 +3017,7 @@
|
|||||||
"source_path": "scrape/SKILL.md.tmpl",
|
"source_path": "scrape/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "4cb4f17c074edcdce0bc8d133f19a6a739964851",
|
"blob_sha": "4cb4f17c074edcdce0bc8d133f19a6a739964851",
|
||||||
"normalized_render_sha256": "03ef708a4c9a1f3de961c48767617502c564690faa7240b3ca39b20496a17f98",
|
"normalized_render_sha256": "82b7214021c997000822b2b4adcae19443490198556a7e6af54d8937ae504943",
|
||||||
"target": "skills/qa/references/legacy/scrape.md",
|
"target": "skills/qa/references/legacy/scrape.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3094,7 +3094,7 @@
|
|||||||
"source_path": "skillify/SKILL.md.tmpl",
|
"source_path": "skillify/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "21fb2f503e3d40683fa782b21abf05a8f0fef69b",
|
"blob_sha": "21fb2f503e3d40683fa782b21abf05a8f0fef69b",
|
||||||
"normalized_render_sha256": "b0743c957157e19bd90b457fd3ac9d6924c3aedce969c10af8d7973c2bcd6c9f",
|
"normalized_render_sha256": "8743671a165c951e852d1f37418aa6c0bd7eeb4f32866dc25f55f7d8eb26f1d5",
|
||||||
"target": "skills/qa/references/legacy/skillify.md",
|
"target": "skills/qa/references/legacy/skillify.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3177,7 +3177,7 @@
|
|||||||
"source_path": "benchmark-models/SKILL.md.tmpl",
|
"source_path": "benchmark-models/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "034cda182406dc04a82c4336ac3ebc36b5fc41b1",
|
"blob_sha": "034cda182406dc04a82c4336ac3ebc36b5fc41b1",
|
||||||
"normalized_render_sha256": "2ef0679d45f21bacc09cd774ff96bb3b82853a8e89d8606847c4f9416a47a48b",
|
"normalized_render_sha256": "3ea3c6cd3542350d4130ee0d5e170c905d0c5c3da096b1fc0e805e095af9321c",
|
||||||
"target": "skills/qa/references/legacy/benchmark-models.md",
|
"target": "skills/qa/references/legacy/benchmark-models.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3237,7 +3237,7 @@
|
|||||||
"source_path": "investigate/SKILL.md.tmpl",
|
"source_path": "investigate/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "67e254d743ffb9060f48e3f6d4b715c077ee688d",
|
"blob_sha": "67e254d743ffb9060f48e3f6d4b715c077ee688d",
|
||||||
"normalized_render_sha256": "91f19c8d736a9a6077941f63f52853634325059e5ac4d8808c4ba6dbceca1a30",
|
"normalized_render_sha256": "ee817d27e0b303b1e173ab2c572c70f55ef2211225d366a166d2e26cbbe3b2ab",
|
||||||
"target": "skills/debug/references/legacy/investigate.md",
|
"target": "skills/debug/references/legacy/investigate.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3433,7 +3433,7 @@
|
|||||||
"source_path": "freeze/SKILL.md.tmpl",
|
"source_path": "freeze/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "c0b31aa7f9f216fc5a351d91f4bcff68c828d090",
|
"blob_sha": "c0b31aa7f9f216fc5a351d91f4bcff68c828d090",
|
||||||
"normalized_render_sha256": "433bb7c1909852c83978ae282c582590c5136abe56020e7d0be39749822c345b",
|
"normalized_render_sha256": "036fe2c7d5c154982ba3509e9b9ab1f5867f86c1d71beb569802d7f7be46ed7c",
|
||||||
"target": "skills/debug/references/legacy/freeze.md",
|
"target": "skills/debug/references/legacy/freeze.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3477,7 +3477,7 @@
|
|||||||
"source_path": "guard/SKILL.md.tmpl",
|
"source_path": "guard/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "3d34ee0c181ec7b263bf6092ba8f384619c5efb6",
|
"blob_sha": "3d34ee0c181ec7b263bf6092ba8f384619c5efb6",
|
||||||
"normalized_render_sha256": "ff8170babcc9ad20f6de292db838d2c4545f0ed98dddd184ab5e7c52c073dc7e",
|
"normalized_render_sha256": "36072a06a2a2ab6c1beec2a888417fb96eb1a50f284cb26ee3796b7c69857be8",
|
||||||
"target": "skills/debug/references/legacy/guard.md",
|
"target": "skills/debug/references/legacy/guard.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3520,7 +3520,7 @@
|
|||||||
"source_path": "unfreeze/SKILL.md.tmpl",
|
"source_path": "unfreeze/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "88e413fe5a49a45d46d8867b2d80ace30b3b45aa",
|
"blob_sha": "88e413fe5a49a45d46d8867b2d80ace30b3b45aa",
|
||||||
"normalized_render_sha256": "51d6183901e866697382b7e900e2154e8bfb6a9ebf4f3e1bb3ad29925fad0e20",
|
"normalized_render_sha256": "19cd17084af59cb912f9507bf8ffdc81e38aa1fbef14605a838efbc6521e9534",
|
||||||
"target": "skills/debug/references/legacy/unfreeze.md",
|
"target": "skills/debug/references/legacy/unfreeze.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3562,7 +3562,7 @@
|
|||||||
"source_path": "review/SKILL.md.tmpl",
|
"source_path": "review/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "ba1ea88068de4b09cf717eb4ae42aa247d198314",
|
"blob_sha": "ba1ea88068de4b09cf717eb4ae42aa247d198314",
|
||||||
"normalized_render_sha256": "9d6398fe0d2900fcce8ae1eb0b390e21f05c94d6ae3a4e21c911025cdc1fd963",
|
"normalized_render_sha256": "0afa76278ec061e56a36048eb9034a2cda6e56ea70bba321a0414bc279ddf84b",
|
||||||
"target": "skills/review/references/legacy/review.md",
|
"target": "skills/review/references/legacy/review.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3667,7 +3667,7 @@
|
|||||||
"source_path": "cso/SKILL.md.tmpl",
|
"source_path": "cso/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "413fb099597b55dadca116e45a202aa693a94b74",
|
"blob_sha": "413fb099597b55dadca116e45a202aa693a94b74",
|
||||||
"normalized_render_sha256": "2cecaf39e950a0ec848f85c11f9678b6a7644c0251c07be42cd52d4b2e6b61a6",
|
"normalized_render_sha256": "d79cf702cef33e878da8569c63936e3bdf811b194d8abbce925b6bb759f05cf7",
|
||||||
"target": "skills/review/references/legacy/cso.md",
|
"target": "skills/review/references/legacy/cso.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3769,7 +3769,7 @@
|
|||||||
"source_path": "health/SKILL.md.tmpl",
|
"source_path": "health/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "f92eb7347ec4f77dd8dbf464d63fcdf6a3459908",
|
"blob_sha": "f92eb7347ec4f77dd8dbf464d63fcdf6a3459908",
|
||||||
"normalized_render_sha256": "ff664221e7de57e66c1b45d719982d90f38e0288914b34731ba4dd73541347e8",
|
"normalized_render_sha256": "514ff165b393a25707c9ed336869ac0b50c63a00d90a21b1656276e1b97842d9",
|
||||||
"target": "skills/review/references/legacy/health.md",
|
"target": "skills/review/references/legacy/health.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -3842,7 +3842,7 @@
|
|||||||
"source_path": "codex/SKILL.md.tmpl",
|
"source_path": "codex/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "333de7d8d590cc78184b0e2371171f6121408f73",
|
"blob_sha": "333de7d8d590cc78184b0e2371171f6121408f73",
|
||||||
"normalized_render_sha256": "0df6ff685d230f87763b4c43f957e20854fe1319d78247d683e5250e2accb188",
|
"normalized_render_sha256": "94ebbe955a1063f88712c51723023765519eab8986b029bf1222d0ec19b79e12",
|
||||||
"target": "skills/review/references/legacy/codex.md",
|
"target": "skills/review/references/legacy/codex.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -4001,7 +4001,7 @@
|
|||||||
"source_path": "ship/SKILL.md.tmpl",
|
"source_path": "ship/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "068ac4fe54bcb46572295d48263b11bd38fcde18",
|
"blob_sha": "068ac4fe54bcb46572295d48263b11bd38fcde18",
|
||||||
"normalized_render_sha256": "ab7a7219653b0fc5cdad0bb2959394798bc50ae4db4dc24b76c0454dd1b1397a",
|
"normalized_render_sha256": "ca55c56483c524c732cf4cd1a7b7ef36f379666577549ef989823b98bce8c5b5",
|
||||||
"target": "skills/ship/references/legacy/ship.md",
|
"target": "skills/ship/references/legacy/ship.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -4136,7 +4136,7 @@
|
|||||||
"source_path": "land-and-deploy/SKILL.md.tmpl",
|
"source_path": "land-and-deploy/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "98976ad020d541d251cc7e34802a13458ddc88e2",
|
"blob_sha": "98976ad020d541d251cc7e34802a13458ddc88e2",
|
||||||
"normalized_render_sha256": "3fab0678a9a7a76664330c74db2bd25b56c335ac72ce4e691c2f2564a7ede819",
|
"normalized_render_sha256": "6920f3d97ce474b8f20c8b3e38ca9d3c03973e47af33103a60bab7c02eb867bd",
|
||||||
"target": "skills/ship/references/legacy/land-and-deploy.md",
|
"target": "skills/ship/references/legacy/land-and-deploy.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -4244,7 +4244,7 @@
|
|||||||
"source_path": "landing-report/SKILL.md.tmpl",
|
"source_path": "landing-report/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "32a8cc1ab036b1ff8692f0400b68d8b56224a251",
|
"blob_sha": "32a8cc1ab036b1ff8692f0400b68d8b56224a251",
|
||||||
"normalized_render_sha256": "4f9512bafcfd995c4c35cdff869ed60f8a9a9ef12f20bc18bf7b898cbd2faa53",
|
"normalized_render_sha256": "ae5050b0558b5324f58ee9181dc83ac0189b63da70d94f86792c08e112765fe9",
|
||||||
"target": "skills/ship/references/legacy/landing-report.md",
|
"target": "skills/ship/references/legacy/landing-report.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -4318,7 +4318,7 @@
|
|||||||
"source_path": "document-release/SKILL.md.tmpl",
|
"source_path": "document-release/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "7621cb31290217b5c7cc8fb000e910b3dd38128f",
|
"blob_sha": "7621cb31290217b5c7cc8fb000e910b3dd38128f",
|
||||||
"normalized_render_sha256": "e5aa85ac93b36b638d075d152f9d7108c0108727056f61331b25fe33de569a59",
|
"normalized_render_sha256": "21de7096aa788e3c4206587761f3122016f4cfc3080ec07f07cd7698075307a5",
|
||||||
"target": "skills/ship/references/legacy/document-release.md",
|
"target": "skills/ship/references/legacy/document-release.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -4475,7 +4475,7 @@
|
|||||||
"source_path": "document-generate/SKILL.md.tmpl",
|
"source_path": "document-generate/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "d3ef0cbc3786c4010b3c692fb94246f56a7e1d7b",
|
"blob_sha": "d3ef0cbc3786c4010b3c692fb94246f56a7e1d7b",
|
||||||
"normalized_render_sha256": "71726ef3082b6c00a5cad19d28da4d830f8e9b261d213a7938c4e1ce3b8c54bb",
|
"normalized_render_sha256": "d91adb16f1749c24bc7a05aa6cff3ff00bb0db005872751f417e66de2057e620",
|
||||||
"target": "skills/ship/references/legacy/document-generate.md",
|
"target": "skills/ship/references/legacy/document-generate.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -4677,7 +4677,7 @@
|
|||||||
"source_path": "ios-sync/SKILL.md.tmpl",
|
"source_path": "ios-sync/SKILL.md.tmpl",
|
||||||
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
|
||||||
"blob_sha": "156a33c4c35d3bad804e44c93ae4c931878489f3",
|
"blob_sha": "156a33c4c35d3bad804e44c93ae4c931878489f3",
|
||||||
"normalized_render_sha256": "c51e8865876efae833e92d54b37780afd4fa6240c13231dfb7d4635948fbc73f",
|
"normalized_render_sha256": "88f9f20aa406c13098ebd2709afc6487bb42c5466ac9f757bf4d9baff7f028d0",
|
||||||
"target": "skills/ship/references/legacy/ios-sync.md",
|
"target": "skills/ship/references/legacy/ios-sync.md",
|
||||||
"disposition": "BUG_FIX",
|
"disposition": "BUG_FIX",
|
||||||
"overlays": [
|
"overlays": [
|
||||||
@@ -5759,7 +5759,7 @@
|
|||||||
"owner_tree": "design",
|
"owner_tree": "design",
|
||||||
"consumer_tree": "plan",
|
"consumer_tree": "plan",
|
||||||
"target": "skills/plan/references/legacy/plan-design-review.md",
|
"target": "skills/plan/references/legacy/plan-design-review.md",
|
||||||
"sha256": "0c9930db5c50e873318cbbf00b9147edff82a210fdbdf2aacb2a8edfdf1f6463",
|
"sha256": "5ff3595a7a6e9136d68678e2810001033beb0b92c3f139b1c749e73398ed4b9a",
|
||||||
"disposition": "SHARED_MODULE"
|
"disposition": "SHARED_MODULE"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -5767,7 +5767,7 @@
|
|||||||
"owner_tree": "debug",
|
"owner_tree": "debug",
|
||||||
"consumer_tree": "qa",
|
"consumer_tree": "qa",
|
||||||
"target": "skills/qa/references/legacy/investigate.md",
|
"target": "skills/qa/references/legacy/investigate.md",
|
||||||
"sha256": "abc5ef0411163a0959605f259e54623033f0936942a347e74ed82f13af001a3c",
|
"sha256": "ebd663fead64cc7d92969742d06bbb18be6f21be7010bba82fc82a27f84efc5e",
|
||||||
"disposition": "SHARED_MODULE"
|
"disposition": "SHARED_MODULE"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -5775,7 +5775,7 @@
|
|||||||
"owner_tree": "qa",
|
"owner_tree": "qa",
|
||||||
"consumer_tree": "ship",
|
"consumer_tree": "ship",
|
||||||
"target": "skills/ship/references/legacy/canary.md",
|
"target": "skills/ship/references/legacy/canary.md",
|
||||||
"sha256": "21252c073bfa2c90f5ad6883feb8ee63d893febbd981a842ec5f7611b8807f2e",
|
"sha256": "9fcf4fdea7d52113c8f5b5cc81c1fb36df591cf9e07bcc38c4ee106b15245997",
|
||||||
"disposition": "SHARED_MODULE"
|
"disposition": "SHARED_MODULE"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -5783,7 +5783,7 @@
|
|||||||
"owner_tree": "plan",
|
"owner_tree": "plan",
|
||||||
"consumer_tree": "ship",
|
"consumer_tree": "ship",
|
||||||
"target": "skills/ship/references/legacy/context-restore.md",
|
"target": "skills/ship/references/legacy/context-restore.md",
|
||||||
"sha256": "8658c29bfbe2097aa9e3cc4e6b04fd0c15f77fd3c256c238415dffa93e120982",
|
"sha256": "1b1bd416815b759ea2f60565f0959c129d62e88991118680aab45669e54da82f",
|
||||||
"disposition": "SHARED_MODULE"
|
"disposition": "SHARED_MODULE"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -6494,6 +6494,7 @@
|
|||||||
"runtime_helpers": [
|
"runtime_helpers": [
|
||||||
{
|
{
|
||||||
"name": "browse",
|
"name": "browse",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "browse/dist/browse",
|
"source_path": "browse/dist/browse",
|
||||||
"platform_source_paths": {
|
"platform_source_paths": {
|
||||||
"posix": "browse/dist/browse",
|
"posix": "browse/dist/browse",
|
||||||
@@ -6550,8 +6551,66 @@
|
|||||||
],
|
],
|
||||||
"stable_path": "${GSTACK_HOME:-$HOME/.gstack}/bin/browse"
|
"stable_path": "${GSTACK_HOME:-$HOME/.gstack}/bin/browse"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "bun",
|
||||||
|
"delivery": "managed-runtime-artifact",
|
||||||
|
"component": "core",
|
||||||
|
"build_step": "managed-bun",
|
||||||
|
"source_path": ".gstack-runtime-tools/bun",
|
||||||
|
"consumer_modules": [
|
||||||
|
"autoplan",
|
||||||
|
"benchmark",
|
||||||
|
"benchmark-models",
|
||||||
|
"browse",
|
||||||
|
"canary",
|
||||||
|
"codex",
|
||||||
|
"context-restore",
|
||||||
|
"context-save",
|
||||||
|
"cso",
|
||||||
|
"design-consultation",
|
||||||
|
"design-html",
|
||||||
|
"design-review",
|
||||||
|
"design-shotgun",
|
||||||
|
"devex-review",
|
||||||
|
"diagram",
|
||||||
|
"document-generate",
|
||||||
|
"document-release",
|
||||||
|
"freeze",
|
||||||
|
"guard",
|
||||||
|
"health",
|
||||||
|
"investigate",
|
||||||
|
"ios-qa",
|
||||||
|
"ios-sync",
|
||||||
|
"land-and-deploy",
|
||||||
|
"landing-report",
|
||||||
|
"learn",
|
||||||
|
"make-pdf",
|
||||||
|
"office-hours",
|
||||||
|
"open-gstack-browser",
|
||||||
|
"pair-agent",
|
||||||
|
"plan-ceo-review",
|
||||||
|
"plan-design-review",
|
||||||
|
"plan-devex-review",
|
||||||
|
"plan-eng-review",
|
||||||
|
"plan-tune",
|
||||||
|
"qa",
|
||||||
|
"qa-only",
|
||||||
|
"retro",
|
||||||
|
"review",
|
||||||
|
"scrape",
|
||||||
|
"setup-browser-cookies",
|
||||||
|
"setup-gbrain",
|
||||||
|
"ship",
|
||||||
|
"skillify",
|
||||||
|
"spec",
|
||||||
|
"sync-gbrain",
|
||||||
|
"unfreeze"
|
||||||
|
],
|
||||||
|
"stable_path": "${GSTACK_HOME:-$HOME/.gstack}/bin/bun"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack",
|
"name": "gstack",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack",
|
"source_path": "bin/gstack",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"diagram",
|
"diagram",
|
||||||
@@ -6564,6 +6623,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-artifacts-init",
|
"name": "gstack-artifacts-init",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-artifacts-init",
|
"source_path": "bin/gstack-artifacts-init",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6572,6 +6632,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-brain-cache",
|
"name": "gstack-brain-cache",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-brain-cache",
|
"source_path": "bin/gstack-brain-cache",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"office-hours",
|
"office-hours",
|
||||||
@@ -6584,6 +6645,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-codex-probe",
|
"name": "gstack-codex-probe",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-codex-probe",
|
"source_path": "bin/gstack-codex-probe",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"autoplan",
|
"autoplan",
|
||||||
@@ -6593,6 +6655,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-config",
|
"name": "gstack-config",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-config",
|
"source_path": "bin/gstack-config",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"autoplan",
|
"autoplan",
|
||||||
@@ -6607,6 +6670,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-decision-log",
|
"name": "gstack-decision-log",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-decision-log",
|
"source_path": "bin/gstack-decision-log",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"ship",
|
"ship",
|
||||||
@@ -6616,6 +6680,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-design",
|
"name": "gstack-design",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "design/dist/design",
|
"source_path": "design/dist/design",
|
||||||
"platform_source_paths": {
|
"platform_source_paths": {
|
||||||
"posix": "design/dist/design",
|
"posix": "design/dist/design",
|
||||||
@@ -6674,6 +6739,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-developer-profile",
|
"name": "gstack-developer-profile",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-developer-profile",
|
"source_path": "bin/gstack-developer-profile",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"office-hours",
|
"office-hours",
|
||||||
@@ -6683,6 +6749,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-diff-scope",
|
"name": "gstack-diff-scope",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-diff-scope",
|
"source_path": "bin/gstack-diff-scope",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"land-and-deploy",
|
"land-and-deploy",
|
||||||
@@ -6692,6 +6759,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-distill-apply",
|
"name": "gstack-distill-apply",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-distill-apply",
|
"source_path": "bin/gstack-distill-apply",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"plan-tune"
|
"plan-tune"
|
||||||
@@ -6700,6 +6768,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-distill-free-text",
|
"name": "gstack-distill-free-text",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-distill-free-text",
|
"source_path": "bin/gstack-distill-free-text",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"plan-tune"
|
"plan-tune"
|
||||||
@@ -6708,6 +6777,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-detect",
|
"name": "gstack-gbrain-detect",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-detect",
|
"source_path": "bin/gstack-gbrain-detect",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain",
|
"setup-gbrain",
|
||||||
@@ -6717,6 +6787,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-install",
|
"name": "gstack-gbrain-install",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-install",
|
"source_path": "bin/gstack-gbrain-install",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6725,6 +6796,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-lib.sh",
|
"name": "gstack-gbrain-lib.sh",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-lib.sh",
|
"source_path": "bin/gstack-gbrain-lib.sh",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6733,6 +6805,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-mcp-verify",
|
"name": "gstack-gbrain-mcp-verify",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-mcp-verify",
|
"source_path": "bin/gstack-gbrain-mcp-verify",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6741,6 +6814,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-repo-policy",
|
"name": "gstack-gbrain-repo-policy",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-repo-policy",
|
"source_path": "bin/gstack-gbrain-repo-policy",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6749,6 +6823,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-source-wireup",
|
"name": "gstack-gbrain-source-wireup",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-source-wireup",
|
"source_path": "bin/gstack-gbrain-source-wireup",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6757,6 +6832,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-supabase-provision",
|
"name": "gstack-gbrain-supabase-provision",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-supabase-provision",
|
"source_path": "bin/gstack-gbrain-supabase-provision",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6765,6 +6841,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-supabase-verify",
|
"name": "gstack-gbrain-supabase-verify",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-supabase-verify",
|
"source_path": "bin/gstack-gbrain-supabase-verify",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6773,14 +6850,17 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-sync",
|
"name": "gstack-gbrain-sync",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-sync.ts",
|
"source_path": "bin/gstack-gbrain-sync.ts",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain",
|
||||||
|
"sync-gbrain"
|
||||||
],
|
],
|
||||||
"stable_path": "${GSTACK_HOME:-$HOME/.gstack}/bin/gstack-gbrain-sync"
|
"stable_path": "${GSTACK_HOME:-$HOME/.gstack}/bin/gstack-gbrain-sync"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-sync.ts",
|
"name": "gstack-gbrain-sync.ts",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-sync.ts",
|
"source_path": "bin/gstack-gbrain-sync.ts",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"sync-gbrain"
|
"sync-gbrain"
|
||||||
@@ -6789,6 +6869,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-global-discover",
|
"name": "gstack-global-discover",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-global-discover.ts",
|
"source_path": "bin/gstack-global-discover.ts",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"retro"
|
"retro"
|
||||||
@@ -6797,6 +6878,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-learnings-log",
|
"name": "gstack-learnings-log",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-learnings-log",
|
"source_path": "bin/gstack-learnings-log",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"cso",
|
"cso",
|
||||||
@@ -6817,6 +6899,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-learnings-search",
|
"name": "gstack-learnings-search",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-learnings-search",
|
"source_path": "bin/gstack-learnings-search",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"cso",
|
"cso",
|
||||||
@@ -6835,6 +6918,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-memory-ingest",
|
"name": "gstack-memory-ingest",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-memory-ingest.ts",
|
"source_path": "bin/gstack-memory-ingest.ts",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -6843,6 +6927,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-model-benchmark",
|
"name": "gstack-model-benchmark",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-model-benchmark",
|
"source_path": "bin/gstack-model-benchmark",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"benchmark-models"
|
"benchmark-models"
|
||||||
@@ -6851,6 +6936,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-next-version",
|
"name": "gstack-next-version",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-next-version",
|
"source_path": "bin/gstack-next-version",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"land-and-deploy",
|
"land-and-deploy",
|
||||||
@@ -6862,6 +6948,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-paths",
|
"name": "gstack-paths",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-paths",
|
"source_path": "bin/gstack-paths",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"codex",
|
"codex",
|
||||||
@@ -6879,6 +6966,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-pr-title-rewrite.sh",
|
"name": "gstack-pr-title-rewrite.sh",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-pr-title-rewrite.sh",
|
"source_path": "bin/gstack-pr-title-rewrite.sh",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"ship"
|
"ship"
|
||||||
@@ -6887,6 +6975,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-question-preference",
|
"name": "gstack-question-preference",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-question-preference",
|
"source_path": "bin/gstack-question-preference",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"plan-tune"
|
"plan-tune"
|
||||||
@@ -6895,6 +6984,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-redact",
|
"name": "gstack-redact",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-redact",
|
"source_path": "bin/gstack-redact",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"document-generate",
|
"document-generate",
|
||||||
@@ -6905,6 +6995,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-redact-audit-log",
|
"name": "gstack-redact-audit-log",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-redact-audit-log",
|
"source_path": "bin/gstack-redact-audit-log",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"spec"
|
"spec"
|
||||||
@@ -6913,6 +7004,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-review-log",
|
"name": "gstack-review-log",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-review-log",
|
"source_path": "bin/gstack-review-log",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"autoplan",
|
"autoplan",
|
||||||
@@ -6924,6 +7016,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-review-read",
|
"name": "gstack-review-read",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-review-read",
|
"source_path": "bin/gstack-review-read",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"devex-review",
|
"devex-review",
|
||||||
@@ -6935,6 +7028,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-slug",
|
"name": "gstack-slug",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-slug",
|
"source_path": "bin/gstack-slug",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"autoplan",
|
"autoplan",
|
||||||
@@ -6966,6 +7060,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-taste-update",
|
"name": "gstack-taste-update",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-taste-update",
|
"source_path": "bin/gstack-taste-update",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"design-consultation",
|
"design-consultation",
|
||||||
@@ -6975,6 +7070,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-version-bump",
|
"name": "gstack-version-bump",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-version-bump",
|
"source_path": "bin/gstack-version-bump",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"ship"
|
"ship"
|
||||||
@@ -6983,6 +7079,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "make-pdf",
|
"name": "make-pdf",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "make-pdf/dist/pdf",
|
"source_path": "make-pdf/dist/pdf",
|
||||||
"platform_source_paths": {
|
"platform_source_paths": {
|
||||||
"posix": "make-pdf/dist/pdf",
|
"posix": "make-pdf/dist/pdf",
|
||||||
@@ -7041,6 +7138,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "remote-slug",
|
"name": "remote-slug",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "browse/bin/remote-slug",
|
"source_path": "browse/bin/remote-slug",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"autoplan",
|
"autoplan",
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
"helpers": [
|
"helpers": [
|
||||||
{
|
{
|
||||||
"name": "browse",
|
"name": "browse",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "browse/dist/browse",
|
"source_path": "browse/dist/browse",
|
||||||
"platform_source_paths": {
|
"platform_source_paths": {
|
||||||
"posix": "browse/dist/browse",
|
"posix": "browse/dist/browse",
|
||||||
@@ -61,8 +62,66 @@
|
|||||||
],
|
],
|
||||||
"stable_path": "${GSTACK_HOME:-$HOME/.gstack}/bin/browse"
|
"stable_path": "${GSTACK_HOME:-$HOME/.gstack}/bin/browse"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "bun",
|
||||||
|
"delivery": "managed-runtime-artifact",
|
||||||
|
"component": "core",
|
||||||
|
"build_step": "managed-bun",
|
||||||
|
"source_path": ".gstack-runtime-tools/bun",
|
||||||
|
"consumer_modules": [
|
||||||
|
"autoplan",
|
||||||
|
"benchmark",
|
||||||
|
"benchmark-models",
|
||||||
|
"browse",
|
||||||
|
"canary",
|
||||||
|
"codex",
|
||||||
|
"context-restore",
|
||||||
|
"context-save",
|
||||||
|
"cso",
|
||||||
|
"design-consultation",
|
||||||
|
"design-html",
|
||||||
|
"design-review",
|
||||||
|
"design-shotgun",
|
||||||
|
"devex-review",
|
||||||
|
"diagram",
|
||||||
|
"document-generate",
|
||||||
|
"document-release",
|
||||||
|
"freeze",
|
||||||
|
"guard",
|
||||||
|
"health",
|
||||||
|
"investigate",
|
||||||
|
"ios-qa",
|
||||||
|
"ios-sync",
|
||||||
|
"land-and-deploy",
|
||||||
|
"landing-report",
|
||||||
|
"learn",
|
||||||
|
"make-pdf",
|
||||||
|
"office-hours",
|
||||||
|
"open-gstack-browser",
|
||||||
|
"pair-agent",
|
||||||
|
"plan-ceo-review",
|
||||||
|
"plan-design-review",
|
||||||
|
"plan-devex-review",
|
||||||
|
"plan-eng-review",
|
||||||
|
"plan-tune",
|
||||||
|
"qa",
|
||||||
|
"qa-only",
|
||||||
|
"retro",
|
||||||
|
"review",
|
||||||
|
"scrape",
|
||||||
|
"setup-browser-cookies",
|
||||||
|
"setup-gbrain",
|
||||||
|
"ship",
|
||||||
|
"skillify",
|
||||||
|
"spec",
|
||||||
|
"sync-gbrain",
|
||||||
|
"unfreeze"
|
||||||
|
],
|
||||||
|
"stable_path": "${GSTACK_HOME:-$HOME/.gstack}/bin/bun"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack",
|
"name": "gstack",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack",
|
"source_path": "bin/gstack",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"diagram",
|
"diagram",
|
||||||
@@ -75,6 +134,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-artifacts-init",
|
"name": "gstack-artifacts-init",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-artifacts-init",
|
"source_path": "bin/gstack-artifacts-init",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -83,6 +143,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-brain-cache",
|
"name": "gstack-brain-cache",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-brain-cache",
|
"source_path": "bin/gstack-brain-cache",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"office-hours",
|
"office-hours",
|
||||||
@@ -95,6 +156,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-codex-probe",
|
"name": "gstack-codex-probe",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-codex-probe",
|
"source_path": "bin/gstack-codex-probe",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"autoplan",
|
"autoplan",
|
||||||
@@ -104,6 +166,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-config",
|
"name": "gstack-config",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-config",
|
"source_path": "bin/gstack-config",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"autoplan",
|
"autoplan",
|
||||||
@@ -118,6 +181,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-decision-log",
|
"name": "gstack-decision-log",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-decision-log",
|
"source_path": "bin/gstack-decision-log",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"ship",
|
"ship",
|
||||||
@@ -127,6 +191,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-design",
|
"name": "gstack-design",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "design/dist/design",
|
"source_path": "design/dist/design",
|
||||||
"platform_source_paths": {
|
"platform_source_paths": {
|
||||||
"posix": "design/dist/design",
|
"posix": "design/dist/design",
|
||||||
@@ -185,6 +250,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-developer-profile",
|
"name": "gstack-developer-profile",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-developer-profile",
|
"source_path": "bin/gstack-developer-profile",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"office-hours",
|
"office-hours",
|
||||||
@@ -194,6 +260,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-diff-scope",
|
"name": "gstack-diff-scope",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-diff-scope",
|
"source_path": "bin/gstack-diff-scope",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"land-and-deploy",
|
"land-and-deploy",
|
||||||
@@ -203,6 +270,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-distill-apply",
|
"name": "gstack-distill-apply",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-distill-apply",
|
"source_path": "bin/gstack-distill-apply",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"plan-tune"
|
"plan-tune"
|
||||||
@@ -211,6 +279,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-distill-free-text",
|
"name": "gstack-distill-free-text",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-distill-free-text",
|
"source_path": "bin/gstack-distill-free-text",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"plan-tune"
|
"plan-tune"
|
||||||
@@ -219,6 +288,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-detect",
|
"name": "gstack-gbrain-detect",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-detect",
|
"source_path": "bin/gstack-gbrain-detect",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain",
|
"setup-gbrain",
|
||||||
@@ -228,6 +298,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-install",
|
"name": "gstack-gbrain-install",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-install",
|
"source_path": "bin/gstack-gbrain-install",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -236,6 +307,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-lib.sh",
|
"name": "gstack-gbrain-lib.sh",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-lib.sh",
|
"source_path": "bin/gstack-gbrain-lib.sh",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -244,6 +316,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-mcp-verify",
|
"name": "gstack-gbrain-mcp-verify",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-mcp-verify",
|
"source_path": "bin/gstack-gbrain-mcp-verify",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -252,6 +325,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-repo-policy",
|
"name": "gstack-gbrain-repo-policy",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-repo-policy",
|
"source_path": "bin/gstack-gbrain-repo-policy",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -260,6 +334,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-source-wireup",
|
"name": "gstack-gbrain-source-wireup",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-source-wireup",
|
"source_path": "bin/gstack-gbrain-source-wireup",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -268,6 +343,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-supabase-provision",
|
"name": "gstack-gbrain-supabase-provision",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-supabase-provision",
|
"source_path": "bin/gstack-gbrain-supabase-provision",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -276,6 +352,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-supabase-verify",
|
"name": "gstack-gbrain-supabase-verify",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-supabase-verify",
|
"source_path": "bin/gstack-gbrain-supabase-verify",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -284,14 +361,17 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-sync",
|
"name": "gstack-gbrain-sync",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-sync.ts",
|
"source_path": "bin/gstack-gbrain-sync.ts",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain",
|
||||||
|
"sync-gbrain"
|
||||||
],
|
],
|
||||||
"stable_path": "${GSTACK_HOME:-$HOME/.gstack}/bin/gstack-gbrain-sync"
|
"stable_path": "${GSTACK_HOME:-$HOME/.gstack}/bin/gstack-gbrain-sync"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-gbrain-sync.ts",
|
"name": "gstack-gbrain-sync.ts",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-gbrain-sync.ts",
|
"source_path": "bin/gstack-gbrain-sync.ts",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"sync-gbrain"
|
"sync-gbrain"
|
||||||
@@ -300,6 +380,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-global-discover",
|
"name": "gstack-global-discover",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-global-discover.ts",
|
"source_path": "bin/gstack-global-discover.ts",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"retro"
|
"retro"
|
||||||
@@ -308,6 +389,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-learnings-log",
|
"name": "gstack-learnings-log",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-learnings-log",
|
"source_path": "bin/gstack-learnings-log",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"cso",
|
"cso",
|
||||||
@@ -328,6 +410,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-learnings-search",
|
"name": "gstack-learnings-search",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-learnings-search",
|
"source_path": "bin/gstack-learnings-search",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"cso",
|
"cso",
|
||||||
@@ -346,6 +429,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-memory-ingest",
|
"name": "gstack-memory-ingest",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-memory-ingest.ts",
|
"source_path": "bin/gstack-memory-ingest.ts",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"setup-gbrain"
|
"setup-gbrain"
|
||||||
@@ -354,6 +438,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-model-benchmark",
|
"name": "gstack-model-benchmark",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-model-benchmark",
|
"source_path": "bin/gstack-model-benchmark",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"benchmark-models"
|
"benchmark-models"
|
||||||
@@ -362,6 +447,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-next-version",
|
"name": "gstack-next-version",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-next-version",
|
"source_path": "bin/gstack-next-version",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"land-and-deploy",
|
"land-and-deploy",
|
||||||
@@ -373,6 +459,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-paths",
|
"name": "gstack-paths",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-paths",
|
"source_path": "bin/gstack-paths",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"codex",
|
"codex",
|
||||||
@@ -390,6 +477,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-pr-title-rewrite.sh",
|
"name": "gstack-pr-title-rewrite.sh",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-pr-title-rewrite.sh",
|
"source_path": "bin/gstack-pr-title-rewrite.sh",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"ship"
|
"ship"
|
||||||
@@ -398,6 +486,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-question-preference",
|
"name": "gstack-question-preference",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-question-preference",
|
"source_path": "bin/gstack-question-preference",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"plan-tune"
|
"plan-tune"
|
||||||
@@ -406,6 +495,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-redact",
|
"name": "gstack-redact",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-redact",
|
"source_path": "bin/gstack-redact",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"document-generate",
|
"document-generate",
|
||||||
@@ -416,6 +506,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-redact-audit-log",
|
"name": "gstack-redact-audit-log",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-redact-audit-log",
|
"source_path": "bin/gstack-redact-audit-log",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"spec"
|
"spec"
|
||||||
@@ -424,6 +515,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-review-log",
|
"name": "gstack-review-log",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-review-log",
|
"source_path": "bin/gstack-review-log",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"autoplan",
|
"autoplan",
|
||||||
@@ -435,6 +527,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-review-read",
|
"name": "gstack-review-read",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-review-read",
|
"source_path": "bin/gstack-review-read",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"devex-review",
|
"devex-review",
|
||||||
@@ -446,6 +539,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-slug",
|
"name": "gstack-slug",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-slug",
|
"source_path": "bin/gstack-slug",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"autoplan",
|
"autoplan",
|
||||||
@@ -477,6 +571,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-taste-update",
|
"name": "gstack-taste-update",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-taste-update",
|
"source_path": "bin/gstack-taste-update",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"design-consultation",
|
"design-consultation",
|
||||||
@@ -486,6 +581,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "gstack-version-bump",
|
"name": "gstack-version-bump",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "bin/gstack-version-bump",
|
"source_path": "bin/gstack-version-bump",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"ship"
|
"ship"
|
||||||
@@ -494,6 +590,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "make-pdf",
|
"name": "make-pdf",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "make-pdf/dist/pdf",
|
"source_path": "make-pdf/dist/pdf",
|
||||||
"platform_source_paths": {
|
"platform_source_paths": {
|
||||||
"posix": "make-pdf/dist/pdf",
|
"posix": "make-pdf/dist/pdf",
|
||||||
@@ -552,6 +649,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "remote-slug",
|
"name": "remote-slug",
|
||||||
|
"delivery": "repository-payload",
|
||||||
"source_path": "browse/bin/remote-slug",
|
"source_path": "browse/bin/remote-slug",
|
||||||
"consumer_modules": [
|
"consumer_modules": [
|
||||||
"autoplan",
|
"autoplan",
|
||||||
|
|||||||
@@ -58,15 +58,15 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mechanical_port": {
|
"mechanical_port": {
|
||||||
"rendered_sha256": "b2f811568920dfdbd500372df13855041ecb2b8b73e3629f3c71d87c5a78e034",
|
"rendered_sha256": "811b50b2cf2e20768138c50ef67471402ad1e361bd07958c63107c5081cf21b7",
|
||||||
"differs_from_baseline": true,
|
"differs_from_baseline": true,
|
||||||
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
||||||
},
|
},
|
||||||
"candidate": {
|
"candidate": {
|
||||||
"target_path": "skills/plan/references/legacy/plan-ceo-review.md",
|
"target_path": "skills/plan/references/legacy/plan-ceo-review.md",
|
||||||
"rendered_legacy_body_sha256": "b2f811568920dfdbd500372df13855041ecb2b8b73e3629f3c71d87c5a78e034",
|
"rendered_legacy_body_sha256": "811b50b2cf2e20768138c50ef67471402ad1e361bd07958c63107c5081cf21b7",
|
||||||
"semantic_signature": {
|
"semantic_signature": {
|
||||||
"normalized_sha256": "b2f811568920dfdbd500372df13855041ecb2b8b73e3629f3c71d87c5a78e034",
|
"normalized_sha256": "811b50b2cf2e20768138c50ef67471402ad1e361bd07958c63107c5081cf21b7",
|
||||||
"headings_sha256": "aee8af5dbf376874037f52d130bc6a804d4f27c989afd787b769ef53a9bbc56b",
|
"headings_sha256": "aee8af5dbf376874037f52d130bc6a804d4f27c989afd787b769ef53a9bbc56b",
|
||||||
"questions_sha256": "442f02fed4d7a2e9e868795fe12aa5df3fb74a1dd8e538fbc76b8b1907345a81",
|
"questions_sha256": "442f02fed4d7a2e9e868795fe12aa5df3fb74a1dd8e538fbc76b8b1907345a81",
|
||||||
"obligations_sha256": "305f7bea6815e4aa1d968c20c0823e0f98f34bf475065f0091f918c8eaa5ba85",
|
"obligations_sha256": "305f7bea6815e4aa1d968c20c0823e0f98f34bf475065f0091f918c8eaa5ba85",
|
||||||
|
|||||||
@@ -60,15 +60,15 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mechanical_port": {
|
"mechanical_port": {
|
||||||
"rendered_sha256": "9d6398fe0d2900fcce8ae1eb0b390e21f05c94d6ae3a4e21c911025cdc1fd963",
|
"rendered_sha256": "0afa76278ec061e56a36048eb9034a2cda6e56ea70bba321a0414bc279ddf84b",
|
||||||
"differs_from_baseline": true,
|
"differs_from_baseline": true,
|
||||||
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
||||||
},
|
},
|
||||||
"candidate": {
|
"candidate": {
|
||||||
"target_path": "skills/review/references/legacy/review.md",
|
"target_path": "skills/review/references/legacy/review.md",
|
||||||
"rendered_legacy_body_sha256": "9d6398fe0d2900fcce8ae1eb0b390e21f05c94d6ae3a4e21c911025cdc1fd963",
|
"rendered_legacy_body_sha256": "0afa76278ec061e56a36048eb9034a2cda6e56ea70bba321a0414bc279ddf84b",
|
||||||
"semantic_signature": {
|
"semantic_signature": {
|
||||||
"normalized_sha256": "9d6398fe0d2900fcce8ae1eb0b390e21f05c94d6ae3a4e21c911025cdc1fd963",
|
"normalized_sha256": "0afa76278ec061e56a36048eb9034a2cda6e56ea70bba321a0414bc279ddf84b",
|
||||||
"headings_sha256": "8ed11544f49943c2974265c86ad258f53207aaed6f289ea2e6afd1239eee26d8",
|
"headings_sha256": "8ed11544f49943c2974265c86ad258f53207aaed6f289ea2e6afd1239eee26d8",
|
||||||
"questions_sha256": "477b52941fada9cd9a3c3863c90310e198fca3dead264006f1431b0fde20f807",
|
"questions_sha256": "477b52941fada9cd9a3c3863c90310e198fca3dead264006f1431b0fde20f807",
|
||||||
"obligations_sha256": "2e21e383f16f209a665d66710ca6d0ebae5a7fea3a200fc23506cfc584ca74b9",
|
"obligations_sha256": "2e21e383f16f209a665d66710ca6d0ebae5a7fea3a200fc23506cfc584ca74b9",
|
||||||
|
|||||||
@@ -53,15 +53,15 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mechanical_port": {
|
"mechanical_port": {
|
||||||
"rendered_sha256": "91f19c8d736a9a6077941f63f52853634325059e5ac4d8808c4ba6dbceca1a30",
|
"rendered_sha256": "ee817d27e0b303b1e173ab2c572c70f55ef2211225d366a166d2e26cbbe3b2ab",
|
||||||
"differs_from_baseline": true,
|
"differs_from_baseline": true,
|
||||||
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
||||||
},
|
},
|
||||||
"candidate": {
|
"candidate": {
|
||||||
"target_path": "skills/debug/references/legacy/investigate.md",
|
"target_path": "skills/debug/references/legacy/investigate.md",
|
||||||
"rendered_legacy_body_sha256": "91f19c8d736a9a6077941f63f52853634325059e5ac4d8808c4ba6dbceca1a30",
|
"rendered_legacy_body_sha256": "ee817d27e0b303b1e173ab2c572c70f55ef2211225d366a166d2e26cbbe3b2ab",
|
||||||
"semantic_signature": {
|
"semantic_signature": {
|
||||||
"normalized_sha256": "91f19c8d736a9a6077941f63f52853634325059e5ac4d8808c4ba6dbceca1a30",
|
"normalized_sha256": "ee817d27e0b303b1e173ab2c572c70f55ef2211225d366a166d2e26cbbe3b2ab",
|
||||||
"headings_sha256": "aae491f6430a9d113ece7954490bd9db9d546e55ee5f10f2ac6cd67dc4d4e284",
|
"headings_sha256": "aae491f6430a9d113ece7954490bd9db9d546e55ee5f10f2ac6cd67dc4d4e284",
|
||||||
"questions_sha256": "9e058bbca5f57ed0c9c4724b67d640e15872a0ad283d496b8913d2dd6cfe897d",
|
"questions_sha256": "9e058bbca5f57ed0c9c4724b67d640e15872a0ad283d496b8913d2dd6cfe897d",
|
||||||
"obligations_sha256": "d832c32c233beb080da54a3ebdc627da9535a158f9772dce4abee15742996a1c",
|
"obligations_sha256": "d832c32c233beb080da54a3ebdc627da9535a158f9772dce4abee15742996a1c",
|
||||||
|
|||||||
@@ -57,15 +57,15 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mechanical_port": {
|
"mechanical_port": {
|
||||||
"rendered_sha256": "1db4cd23ee115ce841d2db898cc442141588635d43018393703aa28ce40d48f2",
|
"rendered_sha256": "e27c29760f1edffffee08f131b2c0ee76720eb447d3bb05eee4278467d785620",
|
||||||
"differs_from_baseline": true,
|
"differs_from_baseline": true,
|
||||||
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
||||||
},
|
},
|
||||||
"candidate": {
|
"candidate": {
|
||||||
"target_path": "skills/design/references/legacy/design-shotgun.md",
|
"target_path": "skills/design/references/legacy/design-shotgun.md",
|
||||||
"rendered_legacy_body_sha256": "1db4cd23ee115ce841d2db898cc442141588635d43018393703aa28ce40d48f2",
|
"rendered_legacy_body_sha256": "e27c29760f1edffffee08f131b2c0ee76720eb447d3bb05eee4278467d785620",
|
||||||
"semantic_signature": {
|
"semantic_signature": {
|
||||||
"normalized_sha256": "1db4cd23ee115ce841d2db898cc442141588635d43018393703aa28ce40d48f2",
|
"normalized_sha256": "e27c29760f1edffffee08f131b2c0ee76720eb447d3bb05eee4278467d785620",
|
||||||
"headings_sha256": "54756bba54ab9183163992eb243290a41b99f896b5993d7f7a0242a5434e0ffe",
|
"headings_sha256": "54756bba54ab9183163992eb243290a41b99f896b5993d7f7a0242a5434e0ffe",
|
||||||
"questions_sha256": "2492e14286f1029d529a7ecb1fe28cffc94f2f4c922521e73b26a23147a60e29",
|
"questions_sha256": "2492e14286f1029d529a7ecb1fe28cffc94f2f4c922521e73b26a23147a60e29",
|
||||||
"obligations_sha256": "8d595f621cb352052f374d49204597142f011694db5953fb826d46c68946e94e",
|
"obligations_sha256": "8d595f621cb352052f374d49204597142f011694db5953fb826d46c68946e94e",
|
||||||
|
|||||||
@@ -57,21 +57,21 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mechanical_port": {
|
"mechanical_port": {
|
||||||
"rendered_sha256": "afa1f2b58d22d9f0f9064336ce7e9836430a298e1deb56f5330390f91df3f680",
|
"rendered_sha256": "d323457820291635bc4c46e4559ce6f4d194b940607b76208e95df0c86ffcb0b",
|
||||||
"differs_from_baseline": true,
|
"differs_from_baseline": true,
|
||||||
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
||||||
},
|
},
|
||||||
"candidate": {
|
"candidate": {
|
||||||
"target_path": "skills/design/references/legacy/design-consultation.md",
|
"target_path": "skills/design/references/legacy/design-consultation.md",
|
||||||
"rendered_legacy_body_sha256": "afa1f2b58d22d9f0f9064336ce7e9836430a298e1deb56f5330390f91df3f680",
|
"rendered_legacy_body_sha256": "d323457820291635bc4c46e4559ce6f4d194b940607b76208e95df0c86ffcb0b",
|
||||||
"semantic_signature": {
|
"semantic_signature": {
|
||||||
"normalized_sha256": "afa1f2b58d22d9f0f9064336ce7e9836430a298e1deb56f5330390f91df3f680",
|
"normalized_sha256": "d323457820291635bc4c46e4559ce6f4d194b940607b76208e95df0c86ffcb0b",
|
||||||
"headings_sha256": "78cdfd5aa0c0264964542d45190c919c7adb8c01ea68a22d67dd0fad538cc643",
|
"headings_sha256": "78cdfd5aa0c0264964542d45190c919c7adb8c01ea68a22d67dd0fad538cc643",
|
||||||
"questions_sha256": "91adedef9aa8000a9aa3385381227d149dbc52cbf2d127656bf0697510b62906",
|
"questions_sha256": "91adedef9aa8000a9aa3385381227d149dbc52cbf2d127656bf0697510b62906",
|
||||||
"obligations_sha256": "bca9ced676d3f62fad557554c5268ff0b339d39ab028b1022ddff1a930bd24f7",
|
"obligations_sha256": "c36974d06c0f66d0a0f2ea3d27282ed785c7cc956cce40a8c8db35492680c972",
|
||||||
"heading_count": 12,
|
"heading_count": 12,
|
||||||
"question_count": 2,
|
"question_count": 2,
|
||||||
"obligation_count": 17
|
"obligation_count": 18
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"deterministic_comparison": {
|
"deterministic_comparison": {
|
||||||
|
|||||||
@@ -57,21 +57,21 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mechanical_port": {
|
"mechanical_port": {
|
||||||
"rendered_sha256": "33584047a11aa46a1b6a2bef5bf97a4d0b443bb6c9542685732e7d4dff795a2e",
|
"rendered_sha256": "fe15a4fae62fba41432ae18bbf4ef5620058b784b7bf9768304d0d1dd17bf45b",
|
||||||
"differs_from_baseline": true,
|
"differs_from_baseline": true,
|
||||||
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
||||||
},
|
},
|
||||||
"candidate": {
|
"candidate": {
|
||||||
"target_path": "skills/design/references/legacy/design-review.md",
|
"target_path": "skills/design/references/legacy/design-review.md",
|
||||||
"rendered_legacy_body_sha256": "33584047a11aa46a1b6a2bef5bf97a4d0b443bb6c9542685732e7d4dff795a2e",
|
"rendered_legacy_body_sha256": "fe15a4fae62fba41432ae18bbf4ef5620058b784b7bf9768304d0d1dd17bf45b",
|
||||||
"semantic_signature": {
|
"semantic_signature": {
|
||||||
"normalized_sha256": "33584047a11aa46a1b6a2bef5bf97a4d0b443bb6c9542685732e7d4dff795a2e",
|
"normalized_sha256": "fe15a4fae62fba41432ae18bbf4ef5620058b784b7bf9768304d0d1dd17bf45b",
|
||||||
"headings_sha256": "739abb73da8446c6133835f56ea0c862a7c1fd57e6702a6afe1ed1fd2fb2b2c8",
|
"headings_sha256": "739abb73da8446c6133835f56ea0c862a7c1fd57e6702a6afe1ed1fd2fb2b2c8",
|
||||||
"questions_sha256": "57579e50936d62734df12299638bdcf8ce412f24b68688b071be156312aafcbc",
|
"questions_sha256": "57579e50936d62734df12299638bdcf8ce412f24b68688b071be156312aafcbc",
|
||||||
"obligations_sha256": "e7b864611d4940a37f553642dec6bf9ba3c4eec94f0ecbe2cab19699751cacb8",
|
"obligations_sha256": "e4fe261ecc3956834dfac15cac60fc4b8057ad0c3b37ede06ee4667d61852655",
|
||||||
"heading_count": 62,
|
"heading_count": 62,
|
||||||
"question_count": 24,
|
"question_count": 24,
|
||||||
"obligation_count": 62
|
"obligation_count": 63
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"deterministic_comparison": {
|
"deterministic_comparison": {
|
||||||
|
|||||||
@@ -59,15 +59,15 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mechanical_port": {
|
"mechanical_port": {
|
||||||
"rendered_sha256": "fff989dcab1f37d0c219378caef6b1e627c23c2537a717564be0d8567229bccc",
|
"rendered_sha256": "2d39acb36fdc7f4f4b3492ff7dd21081fad98b256fa40d00aeee67bd41343f15",
|
||||||
"differs_from_baseline": true,
|
"differs_from_baseline": true,
|
||||||
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
||||||
},
|
},
|
||||||
"candidate": {
|
"candidate": {
|
||||||
"target_path": "skills/plan/references/legacy/plan-devex-review.md",
|
"target_path": "skills/plan/references/legacy/plan-devex-review.md",
|
||||||
"rendered_legacy_body_sha256": "fff989dcab1f37d0c219378caef6b1e627c23c2537a717564be0d8567229bccc",
|
"rendered_legacy_body_sha256": "2d39acb36fdc7f4f4b3492ff7dd21081fad98b256fa40d00aeee67bd41343f15",
|
||||||
"semantic_signature": {
|
"semantic_signature": {
|
||||||
"normalized_sha256": "fff989dcab1f37d0c219378caef6b1e627c23c2537a717564be0d8567229bccc",
|
"normalized_sha256": "2d39acb36fdc7f4f4b3492ff7dd21081fad98b256fa40d00aeee67bd41343f15",
|
||||||
"headings_sha256": "7aebb4be8ec2a9ba9034b835bb07a244053a62156eabec252e0d78b3523f248a",
|
"headings_sha256": "7aebb4be8ec2a9ba9034b835bb07a244053a62156eabec252e0d78b3523f248a",
|
||||||
"questions_sha256": "5d2d6b27d20c553887edf16ec79a25c0ecab599418052d8e5fc52a172ceb8afe",
|
"questions_sha256": "5d2d6b27d20c553887edf16ec79a25c0ecab599418052d8e5fc52a172ceb8afe",
|
||||||
"obligations_sha256": "44fe82d36ea1aca78b396ef65052cff618b4f444fcb6f9ace283c116d0add332",
|
"obligations_sha256": "44fe82d36ea1aca78b396ef65052cff618b4f444fcb6f9ace283c116d0add332",
|
||||||
|
|||||||
@@ -58,15 +58,15 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mechanical_port": {
|
"mechanical_port": {
|
||||||
"rendered_sha256": "ee268f1d24769509b89b7db998372a773d9e7bc376306a68319af4f74c6fe713",
|
"rendered_sha256": "0ed7d4a6ec9dadf363ef5d9311392067a3d90bddac9c1ec781d0f25db55e13ae",
|
||||||
"differs_from_baseline": true,
|
"differs_from_baseline": true,
|
||||||
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
||||||
},
|
},
|
||||||
"candidate": {
|
"candidate": {
|
||||||
"target_path": "skills/plan/references/legacy/plan-eng-review.md",
|
"target_path": "skills/plan/references/legacy/plan-eng-review.md",
|
||||||
"rendered_legacy_body_sha256": "ee268f1d24769509b89b7db998372a773d9e7bc376306a68319af4f74c6fe713",
|
"rendered_legacy_body_sha256": "0ed7d4a6ec9dadf363ef5d9311392067a3d90bddac9c1ec781d0f25db55e13ae",
|
||||||
"semantic_signature": {
|
"semantic_signature": {
|
||||||
"normalized_sha256": "ee268f1d24769509b89b7db998372a773d9e7bc376306a68319af4f74c6fe713",
|
"normalized_sha256": "0ed7d4a6ec9dadf363ef5d9311392067a3d90bddac9c1ec781d0f25db55e13ae",
|
||||||
"headings_sha256": "0200c83cdde0bdc56f79527a4e38884bf075c09b1d829a4244e979b324dc52fc",
|
"headings_sha256": "0200c83cdde0bdc56f79527a4e38884bf075c09b1d829a4244e979b324dc52fc",
|
||||||
"questions_sha256": "b74758da3f085a457fc0f9cf1b5c34dfe849fd713a5882849da0abb2edc1a73f",
|
"questions_sha256": "b74758da3f085a457fc0f9cf1b5c34dfe849fd713a5882849da0abb2edc1a73f",
|
||||||
"obligations_sha256": "186b9e3bb712898fa6e8544ba2f6fc932a161e9bb388cb7b8f7bdecb782b57f9",
|
"obligations_sha256": "186b9e3bb712898fa6e8544ba2f6fc932a161e9bb388cb7b8f7bdecb782b57f9",
|
||||||
|
|||||||
@@ -58,21 +58,21 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mechanical_port": {
|
"mechanical_port": {
|
||||||
"rendered_sha256": "b633a6ef87928ca2434f3a2b1ce88946cbe528a9e3659469e0f9cbbe8a7b146b",
|
"rendered_sha256": "1a5c9dbda769631df4c3e909fde6b97917780f6a7e9eca5a4edc8c2d0f302052",
|
||||||
"differs_from_baseline": true,
|
"differs_from_baseline": true,
|
||||||
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
||||||
},
|
},
|
||||||
"candidate": {
|
"candidate": {
|
||||||
"target_path": "skills/plan/references/legacy/office-hours.md",
|
"target_path": "skills/plan/references/legacy/office-hours.md",
|
||||||
"rendered_legacy_body_sha256": "b633a6ef87928ca2434f3a2b1ce88946cbe528a9e3659469e0f9cbbe8a7b146b",
|
"rendered_legacy_body_sha256": "1a5c9dbda769631df4c3e909fde6b97917780f6a7e9eca5a4edc8c2d0f302052",
|
||||||
"semantic_signature": {
|
"semantic_signature": {
|
||||||
"normalized_sha256": "b633a6ef87928ca2434f3a2b1ce88946cbe528a9e3659469e0f9cbbe8a7b146b",
|
"normalized_sha256": "1a5c9dbda769631df4c3e909fde6b97917780f6a7e9eca5a4edc8c2d0f302052",
|
||||||
"headings_sha256": "f50aa767e26cdfc3c8fa4c6bdcabd10e061ca0ab59e2aff4c204eaf68bfd1d56",
|
"headings_sha256": "f50aa767e26cdfc3c8fa4c6bdcabd10e061ca0ab59e2aff4c204eaf68bfd1d56",
|
||||||
"questions_sha256": "92d854d47b2f92f30cc34a59cfb6f3e18449beddcb8ebd5490162545bc8384c7",
|
"questions_sha256": "92d854d47b2f92f30cc34a59cfb6f3e18449beddcb8ebd5490162545bc8384c7",
|
||||||
"obligations_sha256": "ec3076674f71ffad877bfcd6d147fc77c218831ac13329f5c80442e5f2e7e1f0",
|
"obligations_sha256": "c6f9f220f431b50b7721ac9baa3ae3d7be5de88b489c80a45350028c96a9db84",
|
||||||
"heading_count": 34,
|
"heading_count": 34,
|
||||||
"question_count": 13,
|
"question_count": 13,
|
||||||
"obligation_count": 42
|
"obligation_count": 43
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"deterministic_comparison": {
|
"deterministic_comparison": {
|
||||||
|
|||||||
@@ -57,15 +57,15 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mechanical_port": {
|
"mechanical_port": {
|
||||||
"rendered_sha256": "a9353a4d837240f85c0e13144e66575f9e267926090cfc0f344a08b5fb09b98c",
|
"rendered_sha256": "73ea0aabaa9e7c8fdd4ae279f519303a78682540b2340816f97e239718908e62",
|
||||||
"differs_from_baseline": true,
|
"differs_from_baseline": true,
|
||||||
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
||||||
},
|
},
|
||||||
"candidate": {
|
"candidate": {
|
||||||
"target_path": "skills/qa/references/legacy/ios-qa.md",
|
"target_path": "skills/qa/references/legacy/ios-qa.md",
|
||||||
"rendered_legacy_body_sha256": "a9353a4d837240f85c0e13144e66575f9e267926090cfc0f344a08b5fb09b98c",
|
"rendered_legacy_body_sha256": "73ea0aabaa9e7c8fdd4ae279f519303a78682540b2340816f97e239718908e62",
|
||||||
"semantic_signature": {
|
"semantic_signature": {
|
||||||
"normalized_sha256": "a9353a4d837240f85c0e13144e66575f9e267926090cfc0f344a08b5fb09b98c",
|
"normalized_sha256": "73ea0aabaa9e7c8fdd4ae279f519303a78682540b2340816f97e239718908e62",
|
||||||
"headings_sha256": "79304f733fa401249340540c659f15a9da4e7a89a3d505d39437f6bcbcaf4ce5",
|
"headings_sha256": "79304f733fa401249340540c659f15a9da4e7a89a3d505d39437f6bcbcaf4ce5",
|
||||||
"questions_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
|
"questions_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
|
||||||
"obligations_sha256": "1d8b9f6b93b844f1a9ad43f1434c7b0a4b891a6e5e0ad8827f41c7eefbef239f",
|
"obligations_sha256": "1d8b9f6b93b844f1a9ad43f1434c7b0a4b891a6e5e0ad8827f41c7eefbef239f",
|
||||||
|
|||||||
@@ -57,21 +57,21 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mechanical_port": {
|
"mechanical_port": {
|
||||||
"rendered_sha256": "b1387290067842593297c8d64dc578a890a336ce5a8b60085e51b52c55ebaade",
|
"rendered_sha256": "e7cd5615adaf54413daa97838cb364810317dd7d661cec5cc4ed40eb48192e55",
|
||||||
"differs_from_baseline": true,
|
"differs_from_baseline": true,
|
||||||
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
||||||
},
|
},
|
||||||
"candidate": {
|
"candidate": {
|
||||||
"target_path": "skills/qa/references/legacy/qa.md",
|
"target_path": "skills/qa/references/legacy/qa.md",
|
||||||
"rendered_legacy_body_sha256": "b1387290067842593297c8d64dc578a890a336ce5a8b60085e51b52c55ebaade",
|
"rendered_legacy_body_sha256": "e7cd5615adaf54413daa97838cb364810317dd7d661cec5cc4ed40eb48192e55",
|
||||||
"semantic_signature": {
|
"semantic_signature": {
|
||||||
"normalized_sha256": "b1387290067842593297c8d64dc578a890a336ce5a8b60085e51b52c55ebaade",
|
"normalized_sha256": "e7cd5615adaf54413daa97838cb364810317dd7d661cec5cc4ed40eb48192e55",
|
||||||
"headings_sha256": "dd0b56f79cee31c4c3c71f32fb0a4438f686c6ae517625a7d59475deecd4c75e",
|
"headings_sha256": "dd0b56f79cee31c4c3c71f32fb0a4438f686c6ae517625a7d59475deecd4c75e",
|
||||||
"questions_sha256": "8fece376011d8a8606bcd05d52332f77b56de551b7f1abde94bff1f33ef0a9c1",
|
"questions_sha256": "8fece376011d8a8606bcd05d52332f77b56de551b7f1abde94bff1f33ef0a9c1",
|
||||||
"obligations_sha256": "e2f2395744c3e2b66bb69fd4d0acea685ab3a76b86796dc8a8f3e23bc9fb29ec",
|
"obligations_sha256": "c9a3696553c10b1338568d728f86f47c9a7a06b2defa37bd557c662d4a9086d8",
|
||||||
"heading_count": 58,
|
"heading_count": 58,
|
||||||
"question_count": 6,
|
"question_count": 6,
|
||||||
"obligation_count": 64
|
"obligation_count": 65
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"deterministic_comparison": {
|
"deterministic_comparison": {
|
||||||
|
|||||||
@@ -57,21 +57,21 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mechanical_port": {
|
"mechanical_port": {
|
||||||
"rendered_sha256": "e360ea826399287e00b030c9aa0bcda16e06ab004f5dcdb14db309bad0ccea25",
|
"rendered_sha256": "376eff42459f5b8755bd95934cce615db0fca16504c8e82f84b2704c63f62af3",
|
||||||
"differs_from_baseline": true,
|
"differs_from_baseline": true,
|
||||||
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
||||||
},
|
},
|
||||||
"candidate": {
|
"candidate": {
|
||||||
"target_path": "skills/qa/references/legacy/qa-only.md",
|
"target_path": "skills/qa/references/legacy/qa-only.md",
|
||||||
"rendered_legacy_body_sha256": "e360ea826399287e00b030c9aa0bcda16e06ab004f5dcdb14db309bad0ccea25",
|
"rendered_legacy_body_sha256": "376eff42459f5b8755bd95934cce615db0fca16504c8e82f84b2704c63f62af3",
|
||||||
"semantic_signature": {
|
"semantic_signature": {
|
||||||
"normalized_sha256": "e360ea826399287e00b030c9aa0bcda16e06ab004f5dcdb14db309bad0ccea25",
|
"normalized_sha256": "376eff42459f5b8755bd95934cce615db0fca16504c8e82f84b2704c63f62af3",
|
||||||
"headings_sha256": "0241f7efa9ffcaef764bd6517099b03394e09f90c8d1f3f015c7c7a135f78201",
|
"headings_sha256": "0241f7efa9ffcaef764bd6517099b03394e09f90c8d1f3f015c7c7a135f78201",
|
||||||
"questions_sha256": "8fece376011d8a8606bcd05d52332f77b56de551b7f1abde94bff1f33ef0a9c1",
|
"questions_sha256": "8fece376011d8a8606bcd05d52332f77b56de551b7f1abde94bff1f33ef0a9c1",
|
||||||
"obligations_sha256": "e876a6573bd7cdd581cbab5dd913c86d78e7dba1532bd9e60b8b324f56fe11d1",
|
"obligations_sha256": "9ea973707574aa3750e38a2920e65072f804fe7cddf789f1710e08b0a44d92d3",
|
||||||
"heading_count": 34,
|
"heading_count": 34,
|
||||||
"question_count": 6,
|
"question_count": 6,
|
||||||
"obligation_count": 39
|
"obligation_count": 40
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"deterministic_comparison": {
|
"deterministic_comparison": {
|
||||||
|
|||||||
@@ -56,15 +56,15 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mechanical_port": {
|
"mechanical_port": {
|
||||||
"rendered_sha256": "2cecaf39e950a0ec848f85c11f9678b6a7644c0251c07be42cd52d4b2e6b61a6",
|
"rendered_sha256": "d79cf702cef33e878da8569c63936e3bdf811b194d8abbce925b6bb759f05cf7",
|
||||||
"differs_from_baseline": true,
|
"differs_from_baseline": true,
|
||||||
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
||||||
},
|
},
|
||||||
"candidate": {
|
"candidate": {
|
||||||
"target_path": "skills/review/references/legacy/cso.md",
|
"target_path": "skills/review/references/legacy/cso.md",
|
||||||
"rendered_legacy_body_sha256": "2cecaf39e950a0ec848f85c11f9678b6a7644c0251c07be42cd52d4b2e6b61a6",
|
"rendered_legacy_body_sha256": "d79cf702cef33e878da8569c63936e3bdf811b194d8abbce925b6bb759f05cf7",
|
||||||
"semantic_signature": {
|
"semantic_signature": {
|
||||||
"normalized_sha256": "2cecaf39e950a0ec848f85c11f9678b6a7644c0251c07be42cd52d4b2e6b61a6",
|
"normalized_sha256": "d79cf702cef33e878da8569c63936e3bdf811b194d8abbce925b6bb759f05cf7",
|
||||||
"headings_sha256": "45365014bc4ff67be80c8747098a368c439104ea76ad4d1c36000fe65192e291",
|
"headings_sha256": "45365014bc4ff67be80c8747098a368c439104ea76ad4d1c36000fe65192e291",
|
||||||
"questions_sha256": "e7e23a9ccc1e3677812d260b4f38b16ef8c438e0b2346c045c1334b7045006de",
|
"questions_sha256": "e7e23a9ccc1e3677812d260b4f38b16ef8c438e0b2346c045c1334b7045006de",
|
||||||
"obligations_sha256": "2f83f56fa932b0937d9f968a7e27c974f17772ad8062b9577504dfae600622f6",
|
"obligations_sha256": "2f83f56fa932b0937d9f968a7e27c974f17772ad8062b9577504dfae600622f6",
|
||||||
|
|||||||
@@ -56,15 +56,15 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mechanical_port": {
|
"mechanical_port": {
|
||||||
"rendered_sha256": "ab7a7219653b0fc5cdad0bb2959394798bc50ae4db4dc24b76c0454dd1b1397a",
|
"rendered_sha256": "ca55c56483c524c732cf4cd1a7b7ef36f379666577549ef989823b98bce8c5b5",
|
||||||
"differs_from_baseline": true,
|
"differs_from_baseline": true,
|
||||||
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
||||||
},
|
},
|
||||||
"candidate": {
|
"candidate": {
|
||||||
"target_path": "skills/ship/references/legacy/ship.md",
|
"target_path": "skills/ship/references/legacy/ship.md",
|
||||||
"rendered_legacy_body_sha256": "ab7a7219653b0fc5cdad0bb2959394798bc50ae4db4dc24b76c0454dd1b1397a",
|
"rendered_legacy_body_sha256": "ca55c56483c524c732cf4cd1a7b7ef36f379666577549ef989823b98bce8c5b5",
|
||||||
"semantic_signature": {
|
"semantic_signature": {
|
||||||
"normalized_sha256": "ab7a7219653b0fc5cdad0bb2959394798bc50ae4db4dc24b76c0454dd1b1397a",
|
"normalized_sha256": "ca55c56483c524c732cf4cd1a7b7ef36f379666577549ef989823b98bce8c5b5",
|
||||||
"headings_sha256": "42c12606506cfd2cfd31dc678c91d63b0212aa4e424730f5b9e257ab033c4958",
|
"headings_sha256": "42c12606506cfd2cfd31dc678c91d63b0212aa4e424730f5b9e257ab033c4958",
|
||||||
"questions_sha256": "943ac3bc0b28becb558873810d1884e4311865a10cbd44a2b8c8ae0184fece84",
|
"questions_sha256": "943ac3bc0b28becb558873810d1884e4311865a10cbd44a2b8c8ae0184fece84",
|
||||||
"obligations_sha256": "134233894787ff09edb0506fdede185d24a756fc3278fe2e81790296bd48ca8c",
|
"obligations_sha256": "134233894787ff09edb0506fdede185d24a756fc3278fe2e81790296bd48ca8c",
|
||||||
|
|||||||
@@ -58,15 +58,15 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mechanical_port": {
|
"mechanical_port": {
|
||||||
"rendered_sha256": "059ec7a95791f6fc559f4e2321d7340ef5ae7e4ba89949df401f74d91411bfd3",
|
"rendered_sha256": "76b7c03e6d8e7b852beda0a58409d97153771dd8f7b870bbdda23e996ac23fc1",
|
||||||
"differs_from_baseline": true,
|
"differs_from_baseline": true,
|
||||||
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
"allowed_difference": "Canonical GStack 2 carve: exclude the retired shared onboarding wrapper and host hook advisory; resolve retired invocations to six public routes; relocate host/runtime paths; lazy-load pinned carved sections from package-local references."
|
||||||
},
|
},
|
||||||
"candidate": {
|
"candidate": {
|
||||||
"target_path": "skills/plan/references/legacy/spec.md",
|
"target_path": "skills/plan/references/legacy/spec.md",
|
||||||
"rendered_legacy_body_sha256": "059ec7a95791f6fc559f4e2321d7340ef5ae7e4ba89949df401f74d91411bfd3",
|
"rendered_legacy_body_sha256": "76b7c03e6d8e7b852beda0a58409d97153771dd8f7b870bbdda23e996ac23fc1",
|
||||||
"semantic_signature": {
|
"semantic_signature": {
|
||||||
"normalized_sha256": "059ec7a95791f6fc559f4e2321d7340ef5ae7e4ba89949df401f74d91411bfd3",
|
"normalized_sha256": "76b7c03e6d8e7b852beda0a58409d97153771dd8f7b870bbdda23e996ac23fc1",
|
||||||
"headings_sha256": "339ccc4b1c0d870b7c696ef28b1116ee22742a81d7b8713040a2766a3e36c3c3",
|
"headings_sha256": "339ccc4b1c0d870b7c696ef28b1116ee22742a81d7b8713040a2766a3e36c3c3",
|
||||||
"questions_sha256": "d98a7e322b838c543487c19d59332501a4393513b5f1a58b2ba4ac6cf911aa67",
|
"questions_sha256": "d98a7e322b838c543487c19d59332501a4393513b5f1a58b2ba4ac6cf911aa67",
|
||||||
"obligations_sha256": "7f6a3078d1b84288b26cf37943d7a036d8f7a50d7a1dcea6aefe96c297662a6b",
|
"obligations_sha256": "7f6a3078d1b84288b26cf37943d7a036d8f7a50d7a1dcea6aefe96c297662a6b",
|
||||||
|
|||||||
@@ -0,0 +1,126 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
import { randomBytes } from "node:crypto";
|
||||||
|
import http from "node:http";
|
||||||
|
import { pathToFileURL } from "node:url";
|
||||||
|
|
||||||
|
const HOST = "127.0.0.1";
|
||||||
|
|
||||||
|
export function createReadinessServer(options = {}) {
|
||||||
|
const token = options.token ?? randomBytes(24).toString("hex");
|
||||||
|
if (!/^[a-f0-9]{32,128}$/.test(token)) throw new TypeError("Readiness token must be 32-128 lowercase hex characters");
|
||||||
|
let completed = false;
|
||||||
|
let baseUrl = null;
|
||||||
|
|
||||||
|
const server = http.createServer((request, response) => {
|
||||||
|
const url = new URL(request.url ?? "/", baseUrl ?? `http://${HOST}`);
|
||||||
|
const supplied = url.searchParams.get("token");
|
||||||
|
const headers = {
|
||||||
|
"Cache-Control": "no-store",
|
||||||
|
"Content-Security-Policy": "default-src 'none'; script-src 'unsafe-inline'; connect-src 'self'; style-src 'unsafe-inline'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'",
|
||||||
|
"Referrer-Policy": "no-referrer",
|
||||||
|
"X-Content-Type-Options": "nosniff",
|
||||||
|
};
|
||||||
|
|
||||||
|
if (url.pathname === "/" && request.method === "GET") {
|
||||||
|
response.writeHead(200, { ...headers, "Content-Type": "text/html; charset=utf-8" });
|
||||||
|
response.end(renderPage(token));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (url.pathname === "/proof") {
|
||||||
|
if (request.method !== "POST") {
|
||||||
|
response.writeHead(405, { ...headers, Allow: "POST" });
|
||||||
|
response.end();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (supplied !== token) {
|
||||||
|
response.writeHead(403, headers);
|
||||||
|
response.end();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
completed = true;
|
||||||
|
response.writeHead(200, { ...headers, "Content-Type": "application/json" });
|
||||||
|
response.end(JSON.stringify({ ok: true, status: "READY" }));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (url.pathname === "/status" && request.method === "GET") {
|
||||||
|
if (supplied !== token) {
|
||||||
|
response.writeHead(403, headers);
|
||||||
|
response.end();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
response.writeHead(200, { ...headers, "Content-Type": "application/json" });
|
||||||
|
response.end(JSON.stringify({ ok: true, completed }));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
response.writeHead(404, headers);
|
||||||
|
response.end();
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
server,
|
||||||
|
token,
|
||||||
|
get completed() { return completed; },
|
||||||
|
async start() {
|
||||||
|
if (baseUrl) return { url: `${baseUrl}/?token=${token}`, baseUrl, token };
|
||||||
|
await new Promise((resolve, reject) => {
|
||||||
|
server.once("error", reject);
|
||||||
|
server.listen(options.port ?? 0, HOST, resolve);
|
||||||
|
});
|
||||||
|
const address = server.address();
|
||||||
|
if (!address || typeof address === "string") throw new Error("Readiness fixture did not acquire a TCP port");
|
||||||
|
baseUrl = `http://${HOST}:${address.port}`;
|
||||||
|
return { url: `${baseUrl}/?token=${token}`, baseUrl, token };
|
||||||
|
},
|
||||||
|
async stop() {
|
||||||
|
if (!server.listening) return;
|
||||||
|
await new Promise((resolve, reject) => server.close((error) => error ? reject(error) : resolve()));
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderPage(token) {
|
||||||
|
return `<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>GStack browser readiness</title>
|
||||||
|
<style>body{font:16px system-ui;max-width:44rem;margin:4rem auto;padding:0 1rem}button{font:inherit;padding:.7rem 1rem}#gstack-readiness-status{font-weight:700}</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main>
|
||||||
|
<h1>GStack browser readiness</h1>
|
||||||
|
<p>This local page verifies navigation, reading, interaction, console, and network access.</p>
|
||||||
|
<button id="gstack-readiness-action" type="button">Complete readiness check</button>
|
||||||
|
<p id="gstack-readiness-status" role="status">WAITING</p>
|
||||||
|
</main>
|
||||||
|
<script>
|
||||||
|
document.querySelector('#gstack-readiness-action').addEventListener('click', async () => {
|
||||||
|
const response = await fetch('/proof?token=${token}', { method: 'POST' });
|
||||||
|
const result = await response.json();
|
||||||
|
document.querySelector('#gstack-readiness-status').textContent = result.status;
|
||||||
|
console.log('gstack-browser-readiness:ready');
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function main() {
|
||||||
|
const fixture = createReadinessServer();
|
||||||
|
const started = await fixture.start();
|
||||||
|
process.stdout.write(`${JSON.stringify({ ...started, pid: process.pid })}\n`);
|
||||||
|
const stop = async () => {
|
||||||
|
await fixture.stop();
|
||||||
|
process.exitCode = fixture.completed ? 0 : 2;
|
||||||
|
};
|
||||||
|
process.once("SIGINT", stop);
|
||||||
|
process.once("SIGTERM", stop);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href) {
|
||||||
|
main().catch((error) => {
|
||||||
|
process.stderr.write(`gstack browser readiness: ${error.message}\n`);
|
||||||
|
process.exitCode = 1;
|
||||||
|
});
|
||||||
|
}
|
||||||
+4
-6
@@ -245,13 +245,11 @@ async function inspectManagedChromium(activeRoot, nodeCommand) {
|
|||||||
const result = await captureCommand(nodeCommand, [
|
const result = await captureCommand(nodeCommand, [
|
||||||
"--input-type=module",
|
"--input-type=module",
|
||||||
"--eval",
|
"--eval",
|
||||||
`const { chromium } = await import(${JSON.stringify(moduleUrl)}); process.stdout.write(chromium.executablePath());`,
|
`const { chromium } = await import(${JSON.stringify(moduleUrl)}); const browser = await chromium.launch({ headless: true }); try { process.stdout.write(browser.version()); } finally { await browser.close(); }`,
|
||||||
], { env: { ...process.env, PLAYWRIGHT_BROWSERS_PATH: browserRoot } });
|
], { env: { ...process.env, PLAYWRIGHT_BROWSERS_PATH: browserRoot } });
|
||||||
const executable = result.stdout.trim();
|
const version = result.stdout.trim();
|
||||||
const stat = await fs.lstat(executable).catch(() => null);
|
if (!version) return { ok: false, message: "managed Chromium launched without reporting a browser version" };
|
||||||
if (!stat?.isFile() || stat.isSymbolicLink()) return { ok: false, message: "Playwright could not resolve a safe managed Chromium executable" };
|
return { ok: true, message: `managed headless Chromium ${version} launches and exits cleanly`, details: { browserRoot, version } };
|
||||||
if (process.platform !== "win32") await fs.access(executable, fsConstants.X_OK);
|
|
||||||
return { ok: true, message: "managed Chromium executable is present", details: { executable } };
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return { ok: false, message: `managed Chromium is not runnable: ${error.message}` };
|
return { ok: false, message: `managed Chromium is not runnable: ${error.message}` };
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ import os from "node:os";
|
|||||||
import path from "node:path";
|
import path from "node:path";
|
||||||
import process from "node:process";
|
import process from "node:process";
|
||||||
import { createHash } from "node:crypto";
|
import { createHash } from "node:crypto";
|
||||||
import { createReadStream } from "node:fs";
|
import { constants as fsConstants, createReadStream } from "node:fs";
|
||||||
import { spawn } from "node:child_process";
|
import { spawn } from "node:child_process";
|
||||||
import { fileURLToPath } from "node:url";
|
import { fileURLToPath } from "node:url";
|
||||||
|
|
||||||
@@ -104,7 +104,7 @@ export async function main(argv = process.argv.slice(2), options = {}) {
|
|||||||
const root = path.join(temporary, "merged", "gstack");
|
const root = path.join(temporary, "merged", "gstack");
|
||||||
await fs.mkdir(root, { recursive: true, mode: 0o700 });
|
await fs.mkdir(root, { recursive: true, mode: 0o700 });
|
||||||
const claimedFiles = new Set();
|
const claimedFiles = new Set();
|
||||||
if (reusable) await seedReusableRuntime(reusable.root, root, claimedFiles);
|
if (reusable) await seedReusableRuntime(reusable, root, claimedFiles);
|
||||||
for (const item of plan.downloads) {
|
for (const item of plan.downloads) {
|
||||||
const archive = path.join(temporary, `${item.component}.tar.gz`);
|
const archive = path.join(temporary, `${item.component}.tar.gz`);
|
||||||
await downloadVerified(fetch_, item.artifact.url, archive, item.artifact.sha256, item.artifact.bytes);
|
await downloadVerified(fetch_, item.artifact.url, archive, item.artifact.sha256, item.artifact.bytes);
|
||||||
@@ -206,6 +206,100 @@ function sameGraph(actual, expected) {
|
|||||||
return JSON.stringify(normalize(actual)) === JSON.stringify(normalize(expected));
|
return JSON.stringify(normalize(actual)) === JSON.stringify(normalize(expected));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function selectedComponents(capabilities) {
|
||||||
|
const selected = new Set(["core"]);
|
||||||
|
for (const capability of capabilities) {
|
||||||
|
for (const component of CAPABILITY_COMPONENTS[capability] ?? []) selected.add(component);
|
||||||
|
}
|
||||||
|
const pending = [...selected];
|
||||||
|
while (pending.length) {
|
||||||
|
for (const dependency of COMPONENT_DEPENDENCIES[pending.pop()] ?? []) {
|
||||||
|
if (!selected.has(dependency)) {
|
||||||
|
selected.add(dependency);
|
||||||
|
pending.push(dependency);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return [...selected].sort();
|
||||||
|
}
|
||||||
|
|
||||||
|
function buildComponentPlan(manifest, target, capabilities, reusable) {
|
||||||
|
const components = selectedComponents(capabilities);
|
||||||
|
const retained = new Set(reusable?.components ?? []);
|
||||||
|
const downloads = components
|
||||||
|
.filter((component) => !retained.has(component))
|
||||||
|
.map((component) => ({ component, artifact: manifest.targets[target].components[component] }));
|
||||||
|
const downloadBytes = downloads.reduce((total, item) => total + item.artifact.bytes, 0);
|
||||||
|
return {
|
||||||
|
target,
|
||||||
|
version: manifest.version,
|
||||||
|
capabilities,
|
||||||
|
components,
|
||||||
|
reusedComponents: components.filter((component) => retained.has(component)),
|
||||||
|
downloads,
|
||||||
|
downloadBytes,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function printComponentPlan(stdout, plan) {
|
||||||
|
stdout.write(`GStack optional runtime ${plan.version} for ${plan.target}\n`);
|
||||||
|
stdout.write(`Capabilities: ${plan.capabilities.join(", ")}\n`);
|
||||||
|
stdout.write(`Components: ${plan.components.join(", ")}\n`);
|
||||||
|
if (plan.reusedComponents.length) stdout.write(`Reusing: ${plan.reusedComponents.join(", ")}\n`);
|
||||||
|
stdout.write(`Download: ${plan.downloadBytes} bytes across ${plan.downloads.length} component(s)\n`);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function inspectReusableRuntime(home, version) {
|
||||||
|
const versions = path.join(home, "versions");
|
||||||
|
const pointer = JSON.parse(await fs.readFile(path.join(versions, "current.json"), "utf8"));
|
||||||
|
if (pointer?.schemaVersion !== 2 || pointer?.status !== "active" ||
|
||||||
|
typeof pointer.current !== "string" || !/^[A-Za-z0-9._-]{1,128}$/.test(pointer.current)) return null;
|
||||||
|
const root = path.join(versions, pointer.current);
|
||||||
|
const stat = await fs.lstat(root);
|
||||||
|
if (!stat.isDirectory() || stat.isSymbolicLink()) return null;
|
||||||
|
const bundle = JSON.parse(await fs.readFile(path.join(root, ".gstack-bundle.json"), "utf8"));
|
||||||
|
if (bundle?.schemaVersion !== 2 || bundle?.version !== version || !Array.isArray(bundle.runtimeComponents) ||
|
||||||
|
!Array.isArray(bundle.files)) return null;
|
||||||
|
const components = [...new Set(bundle.runtimeComponents)];
|
||||||
|
if (!components.length || components.some((component) => !Object.hasOwn(COMPONENT_DEPENDENCIES, component))) return null;
|
||||||
|
await assertNoLinks(root);
|
||||||
|
const files = [];
|
||||||
|
const seen = new Set();
|
||||||
|
for (const entry of bundle.files) {
|
||||||
|
const relative = entry?.path;
|
||||||
|
if (typeof relative !== "string" || !relative || relative.includes("\\") || path.posix.isAbsolute(relative) ||
|
||||||
|
path.posix.normalize(relative) !== relative || relative.split("/").includes("..") || seen.has(relative) ||
|
||||||
|
!Number.isSafeInteger(entry.size) || entry.size < 0 || !/^[a-f0-9]{64}$/.test(entry.sha256)) return null;
|
||||||
|
seen.add(relative);
|
||||||
|
const file = path.join(root, ...relative.split("/"));
|
||||||
|
const fileStat = await fs.lstat(file).catch(() => null);
|
||||||
|
if (!fileStat?.isFile() || fileStat.isSymbolicLink() || fileStat.size !== entry.size ||
|
||||||
|
await sha256File(file) !== entry.sha256) return null;
|
||||||
|
files.push(relative);
|
||||||
|
}
|
||||||
|
return { root, components, files };
|
||||||
|
}
|
||||||
|
|
||||||
|
async function seedReusableRuntime(reusable, destination, claimedFiles) {
|
||||||
|
for (const relative of reusable.files) {
|
||||||
|
if (claimedFiles.has(relative)) throw bootstrapError(`Runtime components overlap at ${relative}`, "BOOTSTRAP_MANIFEST_INVALID");
|
||||||
|
claimedFiles.add(relative);
|
||||||
|
const target = path.join(destination, ...relative.split("/"));
|
||||||
|
await fs.mkdir(path.dirname(target), { recursive: true, mode: 0o700 });
|
||||||
|
await fs.copyFile(path.join(reusable.root, ...relative.split("/")), target, fsConstants.COPYFILE_EXCL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function sha256File(file) {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
const hash = createHash("sha256");
|
||||||
|
const stream = createReadStream(file);
|
||||||
|
stream.on("error", reject);
|
||||||
|
stream.on("data", (chunk) => hash.update(chunk));
|
||||||
|
stream.on("end", () => resolve(hash.digest("hex")));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
async function fetchJson(fetch_, url) {
|
async function fetchJson(fetch_, url) {
|
||||||
const response = await fetch_(url, { headers: { Accept: "application/json" }, redirect: "follow" });
|
const response = await fetch_(url, { headers: { Accept: "application/json" }, redirect: "follow" });
|
||||||
assertFinalDownloadUrl(response.url || url);
|
assertFinalDownloadUrl(response.url || url);
|
||||||
@@ -340,6 +434,31 @@ function safeArtifactRoot(extracted, relative) {
|
|||||||
return target;
|
return target;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function mergeComponentRoot(source, destination, claimedFiles, component) {
|
||||||
|
async function visit(relative = "") {
|
||||||
|
for (const entry of await fs.readdir(path.join(source, relative), { withFileTypes: true })) {
|
||||||
|
const child = relative ? `${relative}/${entry.name}` : entry.name;
|
||||||
|
const from = path.join(source, ...child.split("/"));
|
||||||
|
const to = path.join(destination, ...child.split("/"));
|
||||||
|
if (entry.isSymbolicLink() || (!entry.isDirectory() && !entry.isFile())) {
|
||||||
|
throw bootstrapError(`Runtime component ${component} contains a link or special file`, "BOOTSTRAP_ARCHIVE_UNSAFE");
|
||||||
|
}
|
||||||
|
if (entry.isDirectory()) {
|
||||||
|
await fs.mkdir(to, { recursive: true, mode: 0o700 });
|
||||||
|
await visit(child);
|
||||||
|
} else {
|
||||||
|
if (claimedFiles.has(child)) {
|
||||||
|
throw bootstrapError(`Runtime components overlap at ${child}`, "BOOTSTRAP_MANIFEST_INVALID");
|
||||||
|
}
|
||||||
|
claimedFiles.add(child);
|
||||||
|
await fs.mkdir(path.dirname(to), { recursive: true, mode: 0o700 });
|
||||||
|
await fs.copyFile(from, to, fsConstants.COPYFILE_EXCL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
await visit();
|
||||||
|
}
|
||||||
|
|
||||||
async function assertNoLinks(root) {
|
async function assertNoLinks(root) {
|
||||||
const pending = [root];
|
const pending = [root];
|
||||||
while (pending.length) {
|
while (pending.length) {
|
||||||
|
|||||||
@@ -0,0 +1,211 @@
|
|||||||
|
export type BrowserProviderKind =
|
||||||
|
| 'native-extension'
|
||||||
|
| 'native-in-app'
|
||||||
|
| 'native-agent'
|
||||||
|
| 'native-plugin'
|
||||||
|
| 'native-mcp'
|
||||||
|
| 'extension-only'
|
||||||
|
| 'no-native-automation';
|
||||||
|
|
||||||
|
export interface BrowserProviderContract {
|
||||||
|
id: 'claude' | 'codex' | 'gemini' | 'cursor' | 'github-copilot' | 'openclaw' | 'kimi' | 'pi';
|
||||||
|
label: string;
|
||||||
|
kind: BrowserProviderKind;
|
||||||
|
setup: readonly string[];
|
||||||
|
readiness: readonly string[];
|
||||||
|
unavailable: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const BROWSER_PROVIDER_CONTRACTS: readonly BrowserProviderContract[] = [
|
||||||
|
{
|
||||||
|
id: 'claude',
|
||||||
|
label: 'Claude in Chrome',
|
||||||
|
kind: 'native-extension',
|
||||||
|
setup: [
|
||||||
|
'Explain that Claude in Chrome requires Google Chrome, a paid Claude plan, the user-installed extension, the same signed-in Claude account, granted site permissions, and an enabled connector.',
|
||||||
|
'Ask whether the user wants to configure it now. Never install the extension, grant permissions, enable a connector, sign in, or attach a Chrome profile for them.',
|
||||||
|
'After the user completes setup, retry the active host tab/context discovery rather than treating the presence of the Claude CLI as browser readiness.',
|
||||||
|
],
|
||||||
|
readiness: [
|
||||||
|
'The Claude in Chrome tool surface is visible to the active Claude Code session.',
|
||||||
|
'Tab/context discovery returns an attached browser peer instead of a missing-extension or no-peer error.',
|
||||||
|
'The common local readiness journey completes through the Claude browser tools.',
|
||||||
|
],
|
||||||
|
unavailable: 'Offer GStack local browser or continue without browser evidence; do not substitute a different extension or remote browser.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'codex',
|
||||||
|
label: 'Codex built-in browser',
|
||||||
|
kind: 'native-in-app',
|
||||||
|
setup: [
|
||||||
|
'Explain that the built-in browser is a ChatGPT desktop-app surface on macOS and Windows and uses its own browser state.',
|
||||||
|
'Ask the user to open it from the Work/Codex toolbar (Command-Shift-B on macOS or Control-Shift-B on Windows) and approve the test site when prompted.',
|
||||||
|
'Do not infer readiness from the Codex CLI or skill installation; the active session must expose an in-app browser provider.',
|
||||||
|
],
|
||||||
|
readiness: [
|
||||||
|
'Active browser discovery returns the in-app browser provider instead of an empty provider list.',
|
||||||
|
'A tab can be created or selected after the user opens the browser surface.',
|
||||||
|
'The common local readiness journey completes through the Codex browser tools.',
|
||||||
|
],
|
||||||
|
unavailable: 'Offer GStack local browser or defer browser work; do not claim that restarting a browser-less session will create the missing host capability.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'gemini',
|
||||||
|
label: 'Gemini CLI browser agent',
|
||||||
|
kind: 'native-agent',
|
||||||
|
setup: [
|
||||||
|
'Explain that Gemini CLI has an experimental bundled `browser_agent`, disabled by default, which requires a recent local Chrome and displays a first-run consent dialog.',
|
||||||
|
'Ask whether the user wants to enable it themselves. Never edit Gemini settings, accept its consent dialog, attach an existing Chrome session, or infer readiness from the Gemini executable.',
|
||||||
|
'Prefer Gemini isolated browser mode for public or localhost QA unless the user explicitly needs and approves an existing signed-in browser session.',
|
||||||
|
],
|
||||||
|
readiness: [
|
||||||
|
'The active Gemini session exposes the callable `browser_agent` tool rather than only `google_web_search` or `web_fetch`.',
|
||||||
|
'The user has completed Gemini\'s own enablement and one-time consent without GStack acting on their behalf.',
|
||||||
|
'The common local readiness journey completes through the Gemini browser agent.',
|
||||||
|
],
|
||||||
|
unavailable: 'Offer the consented GStack local browser, evidence-limited fetch/search, or deferral; do not install a browser MCP because Gemini already bundles its experimental browser agent.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'cursor',
|
||||||
|
label: 'Cursor interactive browser provider',
|
||||||
|
kind: 'native-mcp',
|
||||||
|
setup: [
|
||||||
|
'Inspect the active Cursor tool surface for an interactive provider such as Chrome DevTools; Cursor CLI presence and parent-process environment variables are not provider evidence.',
|
||||||
|
'If an interactive provider is exposed, explain its current session/profile boundary and ask whether to use it. Never add or approve an MCP server, extension, or browser profile for the user.',
|
||||||
|
'If no interactive provider is exposed in this Cursor session, offer GStack local browser rather than assuming every Cursor installation has the same browser tools.',
|
||||||
|
],
|
||||||
|
readiness: [
|
||||||
|
'The active Cursor session exposes callable navigation, page-reading, and interaction tools and returns a live browser peer.',
|
||||||
|
'The selected browser session does not require silently attaching the user\'s personal profile.',
|
||||||
|
'The common local readiness journey completes through the discovered Cursor provider.',
|
||||||
|
],
|
||||||
|
unavailable: 'Offer GStack local browser, evidence-limited web access, or deferral; do not turn one machine\'s configured Chrome DevTools MCP into a universal Cursor capability claim.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'github-copilot',
|
||||||
|
label: 'GitHub Copilot and VS Code integrated browser',
|
||||||
|
kind: 'native-in-app',
|
||||||
|
setup: [
|
||||||
|
'Explain that current VS Code can expose built-in browser agent tools, subject to the `workbench.browser.enableChatTools` organization setting and the user\'s active tool selection.',
|
||||||
|
'Ask the user to enable the Built-in > Browser tools in the active agent session when they want to use them. Never change VS Code or organization settings for them.',
|
||||||
|
'Prefer an agent-created isolated browser page; sharing an existing browser page or its signed-in state requires the user\'s explicit action.',
|
||||||
|
],
|
||||||
|
readiness: [
|
||||||
|
'The active Copilot/VS Code agent session exposes callable browser tools such as page navigation, reading, screenshot, and interaction.',
|
||||||
|
'An isolated browser page can be opened without silently sharing an existing tab or cookie store.',
|
||||||
|
'The common local readiness journey completes through the VS Code integrated browser tools.',
|
||||||
|
],
|
||||||
|
unavailable: 'Offer GStack local browser or defer; distinguish organization-policy disablement from a transient missing browser tab.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'openclaw',
|
||||||
|
label: 'OpenClaw browser plugin',
|
||||||
|
kind: 'native-plugin',
|
||||||
|
setup: [
|
||||||
|
'Explain that OpenClaw includes a browser plugin with a dedicated managed profile, while its `user` profile can attach to an existing browser session.',
|
||||||
|
'Inspect the active OpenClaw tool policy for the callable browser tool. Never edit `plugins.allow`, enable the plugin, or attach the `user` profile without explicit user action.',
|
||||||
|
'Prefer the isolated managed profile for public and localhost QA; use an existing signed-in profile only when the user explicitly selects it.',
|
||||||
|
],
|
||||||
|
readiness: [
|
||||||
|
'The active OpenClaw agent exposes the browser tool after its plugin and tool-policy checks.',
|
||||||
|
'Browser doctor/status and tab discovery succeed for the explicitly selected profile.',
|
||||||
|
'The common local readiness journey completes through OpenClaw browser actions.',
|
||||||
|
],
|
||||||
|
unavailable: 'Offer GStack local browser or defer; do not silently repair OpenClaw plugin policy or attach a personal browser profile.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'kimi',
|
||||||
|
label: 'Kimi Code',
|
||||||
|
kind: 'no-native-automation',
|
||||||
|
setup: [
|
||||||
|
'Explain that Kimi Code loads standard Agent Skills and provides WebSearch/FetchURL when configured, but does not currently document a native interactive browser-automation harness.',
|
||||||
|
'Do not describe `kimi web` as browser automation: it is the browser-based user interface for the Kimi session.',
|
||||||
|
'Offer GStack local browser when interactive navigation, clicking, screenshots, console, or network evidence is required.',
|
||||||
|
],
|
||||||
|
readiness: [
|
||||||
|
'Kimi discovers the canonical GStack skills through its standard Agent Skills directories.',
|
||||||
|
'Fetch/search-only work may use Kimi host tools when their limitations satisfy the task.',
|
||||||
|
'Interactive browser readiness is tested against GStack local browser, not `kimi web`.',
|
||||||
|
],
|
||||||
|
unavailable: 'Continue with fetch/search-only evidence or offer the consented GStack local browser; never silently add a browser MCP or alternate backend.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'pi',
|
||||||
|
label: 'Pi coding agent',
|
||||||
|
kind: 'extension-only',
|
||||||
|
setup: [
|
||||||
|
'Explain that Pi intentionally has no core interactive browser tool; browser automation is available only through optional third-party packages or an already exposed host tool.',
|
||||||
|
'Inspect the active Pi tool surface. Never install a Pi package, run its browser installer, or treat a package listing as a live browser peer.',
|
||||||
|
'Offer GStack local browser when no already-configured interactive provider is callable.',
|
||||||
|
],
|
||||||
|
readiness: [
|
||||||
|
'An explicitly user-installed Pi browser extension exposes a callable browser tool in the active session.',
|
||||||
|
'The extension returns a live isolated session without triggering an unapproved Chromium download or profile attachment.',
|
||||||
|
'The common local readiness journey completes through that active tool.',
|
||||||
|
],
|
||||||
|
unavailable: 'Offer GStack local browser, evidence-limited continuation, or deferral; never recommend or install a third-party Pi browser package automatically.',
|
||||||
|
},
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
export function renderBrowserProviderContract(): string {
|
||||||
|
const sections = BROWSER_PROVIDER_CONTRACTS.map((provider) => `## ${provider.label}
|
||||||
|
|
||||||
|
Classification: \`${provider.kind}\`
|
||||||
|
|
||||||
|
Setup:
|
||||||
|
|
||||||
|
${provider.setup.map((step, index) => `${index + 1}. ${step}`).join('\n')}
|
||||||
|
|
||||||
|
Readiness evidence:
|
||||||
|
|
||||||
|
${provider.readiness.map((step) => `- ${step}`).join('\n')}
|
||||||
|
|
||||||
|
If unavailable: ${provider.unavailable}`).join('\n\n');
|
||||||
|
|
||||||
|
return `# Browser provider setup and readiness
|
||||||
|
|
||||||
|
Browser setup is optional and consented. The Agent Skills installer owns skill placement; this flow never enrolls another host. At onboarding, offer this flow only when the user asks to configure browser capabilities now. Otherwise run it just in time when a selected workflow first needs interactive browser evidence.
|
||||||
|
|
||||||
|
## Routing flow
|
||||||
|
|
||||||
|
1. Identify the active host and provider from callable tools in the current session, not from unrelated installed binaries, parent-application environment variables, documentation, or guessed host names. Inherited \`CODEX_*\`, bundle identifiers, and similar process metadata never override the actual agent/tool surface.
|
||||||
|
2. Show the detected provider, what user-controlled setup it requires, and the GStack local-browser fallback.
|
||||||
|
3. Ask whether to use the host-native provider, set up GStack local browser, continue without browser evidence, or defer. A selection is not permission to install another product or attach private browser state.
|
||||||
|
4. For a host-native selection, follow the matching provider section below. Never install an extension, grant site access, sign in, add an MCP server, attach an existing profile, or change host settings without the user's explicit action.
|
||||||
|
5. After setup, run the common readiness journey. Tool names or metadata alone are insufficient evidence.
|
||||||
|
6. If the journey fails, report \`needs-user-action\`, \`unavailable\`, or \`failed\` with the exact observed cause and offer the local GStack browser. Do not silently fall back.
|
||||||
|
|
||||||
|
## Provider states
|
||||||
|
|
||||||
|
- \`available\`: the current session exposes callable navigation, reading, and interaction tools, but readiness has not yet been proven.
|
||||||
|
- \`needs-user-action\`: the host has a documented provider, but the user must enable, open, approve, or connect it.
|
||||||
|
- \`ready\`: the selected provider passed the common local readiness journey in this session.
|
||||||
|
- \`unavailable\`: no suitable interactive tool is exposed in the current session.
|
||||||
|
- \`failed\`: a callable provider attempted the readiness journey and failed; include the exact failing step.
|
||||||
|
|
||||||
|
Never report \`ready\` merely because a browser binary, CLI, plugin, extension, MCP name, settings entry, or documentation exists. Present one provider decision, then continue through the selected path. Do not run \`./setup\`; it is not a GStack 2 browser setup command.
|
||||||
|
|
||||||
|
## Common local readiness journey
|
||||||
|
|
||||||
|
Start the dependency-free fixture from this skill root with:
|
||||||
|
|
||||||
|
\`node references/support/browser-provider-smoke.mjs\`
|
||||||
|
|
||||||
|
The process prints one JSON line containing a loopback URL and remains alive. Through the selected browser provider:
|
||||||
|
|
||||||
|
1. Open that exact URL.
|
||||||
|
2. Verify the heading \`GStack browser readiness\`.
|
||||||
|
3. Click \`Complete readiness check\`.
|
||||||
|
4. Verify the page status becomes \`READY\`.
|
||||||
|
5. When supported, confirm the console message \`gstack-browser-readiness:ready\` and the successful \`POST /proof\` request.
|
||||||
|
6. Stop the fixture process and confirm it releases its listener.
|
||||||
|
|
||||||
|
Mark the provider \`ready\` only after navigation, page reading, and interaction all succeed. The fixture binds to \`127.0.0.1\`, uses a per-run random token, sends no repository data, and does not persist cookies or credentials.
|
||||||
|
|
||||||
|
${sections}
|
||||||
|
|
||||||
|
## GStack local browser fallback
|
||||||
|
|
||||||
|
GStack's existing local Chromium/Playwright implementation remains the only bundled browser backend. Follow \`RUNTIME.md\` for preview and separate install consent, run \`gstack doctor\`, then run the same readiness journey with the \`browse\` launcher. Do not run \`./setup\`, add a cloud browser, remote provider, alternate local backend, or personal-profile attachment as a fallback.
|
||||||
|
`;
|
||||||
|
}
|
||||||
@@ -3,6 +3,7 @@ import { createHash } from 'node:crypto';
|
|||||||
import * as fs from 'fs';
|
import * as fs from 'fs';
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
import { BUG_FIX_OVERLAYS, overlaysForSource } from './bug-fix-overlays';
|
import { BUG_FIX_OVERLAYS, overlaysForSource } from './bug-fix-overlays';
|
||||||
|
import { renderBrowserProviderContract } from './browser-provider-contract';
|
||||||
import { contractFor, DISPATCHERS, SOURCE_ASSIGNMENTS } from './assignments';
|
import { contractFor, DISPATCHERS, SOURCE_ASSIGNMENTS } from './assignments';
|
||||||
import { SCENARIOS } from './scenarios';
|
import { SCENARIOS } from './scenarios';
|
||||||
import { runDeterministicSemanticParity } from './semantic-parity';
|
import { runDeterministicSemanticParity } from './semantic-parity';
|
||||||
@@ -493,6 +494,8 @@ function runtimeContract(): string {
|
|||||||
|
|
||||||
The six Agent Skills are useful without a GStack runtime. Never install, download, build, select, update, or remove runtime capabilities merely because a skill was invoked.
|
The six Agent Skills are useful without a GStack runtime. Never install, download, build, select, update, or remove runtime capabilities merely because a skill was invoked.
|
||||||
|
|
||||||
|
Before interactive browser work, read \`references/BROWSER-PROVIDERS.md\` in full. It owns provider detection, consented host setup, the common readiness journey, and the explicit GStack fallback. Skill installation never proves browser readiness.
|
||||||
|
|
||||||
When an active specialist first reaches a capability it cannot use, name the exact capability and why it is needed. Offer to continue without it when the judgment-only or host-native path remains valid. Before any network preview, ask whether the user wants to check official setup options and exact sizes. Disclose that an uncached preview makes one public GitHub request for signed manifest metadata and sends no repository content, private URL, file, cookie, token, or credential; then STOP. A cached already-verified manifest may preview offline, but never silently fetch.
|
When an active specialist first reaches a capability it cannot use, name the exact capability and why it is needed. Offer to continue without it when the judgment-only or host-native path remains valid. Before any network preview, ask whether the user wants to check official setup options and exact sizes. Disclose that an uncached preview makes one public GitHub request for signed manifest metadata and sends no repository content, private URL, file, cookie, token, or credential; then STOP. A cached already-verified manifest may preview offline, but never silently fetch.
|
||||||
|
|
||||||
Only after the user approves that metadata check, run the non-mutating preview from this skill root: \`node references/support/runtime-bootstrap.mjs preview --capability <name>\` (repeat \`--capability\` for additional requested capabilities). It dependency-expands, reports already verified local components, exact missing components, and their summed compressed bytes. It never downloads components or mutates runtime state. Preview consent is not install consent.
|
Only after the user approves that metadata check, run the non-mutating preview from this skill root: \`node references/support/runtime-bootstrap.mjs preview --capability <name>\` (repeat \`--capability\` for additional requested capabilities). It dependency-expands, reports already verified local components, exact missing components, and their summed compressed bytes. It never downloads components or mutates runtime state. Preview consent is not install consent.
|
||||||
@@ -559,12 +562,15 @@ Do not put secrets in run IDs, effect keys, or command arguments. Existing appro
|
|||||||
|
|
||||||
function writeSharedContracts(): void {
|
function writeSharedContracts(): void {
|
||||||
const bootstrap = fs.readFileSync(path.join(ROOT, 'runtime', 'runtime-bootstrap.mjs'));
|
const bootstrap = fs.readFileSync(path.join(ROOT, 'runtime', 'runtime-bootstrap.mjs'));
|
||||||
|
const browserSmoke = fs.readFileSync(path.join(ROOT, 'runtime', 'browser-provider-smoke.mjs'));
|
||||||
for (const tree of TREE_NAMES) {
|
for (const tree of TREE_NAMES) {
|
||||||
write(path.join(ROOT, 'skills', tree, 'references', 'SHARED-JUDGMENT.md'), sharedJudgmentContract());
|
write(path.join(ROOT, 'skills', tree, 'references', 'SHARED-JUDGMENT.md'), sharedJudgmentContract());
|
||||||
write(path.join(ROOT, 'skills', tree, 'references', 'AUTHORITY-POLICY.md'), authorityPolicyContract());
|
write(path.join(ROOT, 'skills', tree, 'references', 'AUTHORITY-POLICY.md'), authorityPolicyContract());
|
||||||
write(path.join(ROOT, 'skills', tree, 'references', 'WEB-CONTEXT.md'), webContextContract());
|
write(path.join(ROOT, 'skills', tree, 'references', 'WEB-CONTEXT.md'), webContextContract());
|
||||||
write(path.join(ROOT, 'skills', tree, 'references', 'RUNTIME.md'), runtimeContract());
|
write(path.join(ROOT, 'skills', tree, 'references', 'RUNTIME.md'), runtimeContract());
|
||||||
|
write(path.join(ROOT, 'skills', tree, 'references', 'BROWSER-PROVIDERS.md'), `${GENERATED}\n${renderBrowserProviderContract()}`);
|
||||||
write(path.join(ROOT, 'skills', tree, 'references', 'support', 'runtime-bootstrap.mjs'), bootstrap);
|
write(path.join(ROOT, 'skills', tree, 'references', 'support', 'runtime-bootstrap.mjs'), bootstrap);
|
||||||
|
write(path.join(ROOT, 'skills', tree, 'references', 'support', 'browser-provider-smoke.mjs'), browserSmoke);
|
||||||
writeJson(path.join(ROOT, 'skills', tree, 'references', 'support', 'runtime-contract.json'), RUNTIME_SKILL_CONTRACT);
|
writeJson(path.join(ROOT, 'skills', tree, 'references', 'support', 'runtime-contract.json'), RUNTIME_SKILL_CONTRACT);
|
||||||
}
|
}
|
||||||
write(path.join(ROOT, 'skills', 'qa', 'references', 'SYSTEM-FUNCTIONAL.md'), systemFunctionalContract());
|
write(path.join(ROOT, 'skills', 'qa', 'references', 'SYSTEM-FUNCTIONAL.md'), systemFunctionalContract());
|
||||||
@@ -644,9 +650,20 @@ function runtimeHelperClosure(rendered: Map<string, RenderedModuleRecord>): Arra
|
|||||||
};
|
};
|
||||||
return [...consumers].sort(([left], [right]) => left.localeCompare(right)).map(([name, sources]) => {
|
return [...consumers].sort(([left], [right]) => left.localeCompare(right)).map(([name, sources]) => {
|
||||||
const platformPaths = platformSourceOverrides[name];
|
const platformPaths = platformSourceOverrides[name];
|
||||||
|
const managedRuntimeArtifact = name === 'bun';
|
||||||
return {
|
return {
|
||||||
name,
|
name,
|
||||||
source_path: platformPaths?.posix ?? sourceOverrides[name] ?? `bin/${name}`,
|
...(managedRuntimeArtifact
|
||||||
|
? {
|
||||||
|
delivery: 'managed-runtime-artifact',
|
||||||
|
component: 'core',
|
||||||
|
build_step: 'managed-bun',
|
||||||
|
source_path: '.gstack-runtime-tools/bun',
|
||||||
|
}
|
||||||
|
: {
|
||||||
|
delivery: 'repository-payload',
|
||||||
|
source_path: platformPaths?.posix ?? sourceOverrides[name] ?? `bin/${name}`,
|
||||||
|
}),
|
||||||
...(platformPaths ? { platform_source_paths: platformPaths } : {}),
|
...(platformPaths ? { platform_source_paths: platformPaths } : {}),
|
||||||
consumer_modules: [...sources].sort(),
|
consumer_modules: [...sources].sort(),
|
||||||
stable_path: `\${GSTACK_HOME:-$HOME/.gstack}/bin/${name}`,
|
stable_path: `\${GSTACK_HOME:-$HOME/.gstack}/bin/${name}`,
|
||||||
|
|||||||
@@ -12,7 +12,11 @@ import { GSTACK2_BASE_SHA, TREE_NAMES } from './types';
|
|||||||
const CONTRACT_KEYS = ['question_order', 'pressure', 'smart_skips', 'stop_approval_gates', 'evidence', 'artifacts', 'mutation', 'exit', 'voice'];
|
const CONTRACT_KEYS = ['question_order', 'pressure', 'smart_skips', 'stop_approval_gates', 'evidence', 'artifacts', 'mutation', 'exit', 'voice'];
|
||||||
const PROVENANCE_KEYS = ['original_source_file', 'original_line_range', 'purpose', 'invocation_conditions', 'modes', 'question_sequence', 'follow_up_behavior', 'smart_skip_rules', 'pushback_rules', 'stop_gates', 'approval_gates', 'rubrics_and_scoring', 'cognitive_frameworks', 'evidence_requirements', 'artifacts_produced', 'mutation_authority', 'exit_states', 'voice', 'response_posture', 'new_location', 'parity_test'];
|
const PROVENANCE_KEYS = ['original_source_file', 'original_line_range', 'purpose', 'invocation_conditions', 'modes', 'question_sequence', 'follow_up_behavior', 'smart_skip_rules', 'pushback_rules', 'stop_gates', 'approval_gates', 'rubrics_and_scoring', 'cognitive_frameworks', 'evidence_requirements', 'artifacts_produced', 'mutation_authority', 'exit_states', 'voice', 'response_posture', 'new_location', 'parity_test'];
|
||||||
const ALLOWED_DISPOSITIONS = new Set(['VERBATIM_PORT', 'MECHANICAL_PORT', 'JUDGMENT_PRESERVING_CARVE', 'SHARED_MODULE', 'BUG_FIX', 'DUPLICATE_INFRASTRUCTURE', 'REMOVE_WITH_USER_APPROVAL']);
|
const ALLOWED_DISPOSITIONS = new Set(['VERBATIM_PORT', 'MECHANICAL_PORT', 'JUDGMENT_PRESERVING_CARVE', 'SHARED_MODULE', 'BUG_FIX', 'DUPLICATE_INFRASTRUCTURE', 'REMOVE_WITH_USER_APPROVAL']);
|
||||||
export const EXPECTED_PARITY_CHECKS = 4697;
|
// Inventory history: the componentized-runtime parity expansion added 152
|
||||||
|
// checks to the previously verified 4,681-check corpus. The first update only
|
||||||
|
// accounted for the 16 lazy-section checks; the remaining 136 cover runtime
|
||||||
|
// contracts, retired-invocation guards, and generated package closure.
|
||||||
|
export const EXPECTED_PARITY_CHECKS = 4833;
|
||||||
|
|
||||||
function sha256(value: string | Uint8Array): string {
|
function sha256(value: string | Uint8Array): string {
|
||||||
return createHash('sha256').update(value).digest('hex');
|
return createHash('sha256').update(value).digest('hex');
|
||||||
@@ -266,9 +270,20 @@ export function runParity(): ParityResult {
|
|||||||
const helperClosure = json(path.join(ROOT, 'evals', 'parity', 'runtime-helper-closure.json'));
|
const helperClosure = json(path.join(ROOT, 'evals', 'parity', 'runtime-helper-closure.json'));
|
||||||
check(JSON.stringify(helperClosure.helpers) === JSON.stringify(manifest.runtime_helpers), 'Runtime helper closure and provenance differ');
|
check(JSON.stringify(helperClosure.helpers) === JSON.stringify(manifest.runtime_helpers), 'Runtime helper closure and provenance differ');
|
||||||
for (const helper of helperClosure.helpers) {
|
for (const helper of helperClosure.helpers) {
|
||||||
const sourcePath = helper.platform_source_paths?.[process.platform === 'win32' ? 'win32' : 'posix']
|
if (helper.delivery === 'managed-runtime-artifact') {
|
||||||
?? helper.source_path;
|
check(
|
||||||
check(fs.existsSync(path.join(ROOT, sourcePath)), `Preserved helper ${helper.name} has no source payload at ${sourcePath}`);
|
helper.name === 'bun'
|
||||||
|
&& helper.component === 'core'
|
||||||
|
&& helper.build_step === 'managed-bun'
|
||||||
|
&& helper.source_path === '.gstack-runtime-tools/bun'
|
||||||
|
&& helper.stable_path.endsWith('/bin/bun'),
|
||||||
|
`Managed runtime helper ${helper.name} lacks core-component provenance`,
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
const sourcePath = helper.platform_source_paths?.[process.platform === 'win32' ? 'win32' : 'posix']
|
||||||
|
?? helper.source_path;
|
||||||
|
check(fs.existsSync(path.join(ROOT, sourcePath)), `Preserved helper ${helper.name} has no source payload at ${sourcePath}`);
|
||||||
|
}
|
||||||
check(Array.isArray(helper.consumer_modules) && helper.consumer_modules.length > 0, `Preserved helper ${helper.name} has no consumer provenance`);
|
check(Array.isArray(helper.consumer_modules) && helper.consumer_modules.length > 0, `Preserved helper ${helper.name} has no consumer provenance`);
|
||||||
}
|
}
|
||||||
for (const record of [...manifest.sources, ...manifest.sections]) {
|
for (const record of [...manifest.sources, ...manifest.sections]) {
|
||||||
|
|||||||
@@ -39,6 +39,12 @@ export const AGENT_MATRIX: readonly AgentMatrixEntry[] = [
|
|||||||
projectPath: ['.agents', 'skills'],
|
projectPath: ['.agents', 'skills'],
|
||||||
globalPath: ['.agents', 'skills'],
|
globalPath: ['.agents', 'skills'],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
agent: 'kimi-code-cli',
|
||||||
|
label: 'Kimi Code CLI',
|
||||||
|
projectPath: ['.agents', 'skills'],
|
||||||
|
globalPath: ['.agents', 'skills'],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
agent: 'cursor',
|
agent: 'cursor',
|
||||||
label: 'Cursor',
|
label: 'Cursor',
|
||||||
|
|||||||
@@ -0,0 +1,188 @@
|
|||||||
|
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
||||||
|
# Browser provider setup and readiness
|
||||||
|
|
||||||
|
Browser setup is optional and consented. The Agent Skills installer owns skill placement; this flow never enrolls another host. At onboarding, offer this flow only when the user asks to configure browser capabilities now. Otherwise run it just in time when a selected workflow first needs interactive browser evidence.
|
||||||
|
|
||||||
|
## Routing flow
|
||||||
|
|
||||||
|
1. Identify the active host and provider from callable tools in the current session, not from unrelated installed binaries, parent-application environment variables, documentation, or guessed host names. Inherited `CODEX_*`, bundle identifiers, and similar process metadata never override the actual agent/tool surface.
|
||||||
|
2. Show the detected provider, what user-controlled setup it requires, and the GStack local-browser fallback.
|
||||||
|
3. Ask whether to use the host-native provider, set up GStack local browser, continue without browser evidence, or defer. A selection is not permission to install another product or attach private browser state.
|
||||||
|
4. For a host-native selection, follow the matching provider section below. Never install an extension, grant site access, sign in, add an MCP server, attach an existing profile, or change host settings without the user's explicit action.
|
||||||
|
5. After setup, run the common readiness journey. Tool names or metadata alone are insufficient evidence.
|
||||||
|
6. If the journey fails, report `needs-user-action`, `unavailable`, or `failed` with the exact observed cause and offer the local GStack browser. Do not silently fall back.
|
||||||
|
|
||||||
|
## Provider states
|
||||||
|
|
||||||
|
- `available`: the current session exposes callable navigation, reading, and interaction tools, but readiness has not yet been proven.
|
||||||
|
- `needs-user-action`: the host has a documented provider, but the user must enable, open, approve, or connect it.
|
||||||
|
- `ready`: the selected provider passed the common local readiness journey in this session.
|
||||||
|
- `unavailable`: no suitable interactive tool is exposed in the current session.
|
||||||
|
- `failed`: a callable provider attempted the readiness journey and failed; include the exact failing step.
|
||||||
|
|
||||||
|
Never report `ready` merely because a browser binary, CLI, plugin, extension, MCP name, settings entry, or documentation exists. Present one provider decision, then continue through the selected path. Do not run `./setup`; it is not a GStack 2 browser setup command.
|
||||||
|
|
||||||
|
## Common local readiness journey
|
||||||
|
|
||||||
|
Start the dependency-free fixture from this skill root with:
|
||||||
|
|
||||||
|
`node references/support/browser-provider-smoke.mjs`
|
||||||
|
|
||||||
|
The process prints one JSON line containing a loopback URL and remains alive. Through the selected browser provider:
|
||||||
|
|
||||||
|
1. Open that exact URL.
|
||||||
|
2. Verify the heading `GStack browser readiness`.
|
||||||
|
3. Click `Complete readiness check`.
|
||||||
|
4. Verify the page status becomes `READY`.
|
||||||
|
5. When supported, confirm the console message `gstack-browser-readiness:ready` and the successful `POST /proof` request.
|
||||||
|
6. Stop the fixture process and confirm it releases its listener.
|
||||||
|
|
||||||
|
Mark the provider `ready` only after navigation, page reading, and interaction all succeed. The fixture binds to `127.0.0.1`, uses a per-run random token, sends no repository data, and does not persist cookies or credentials.
|
||||||
|
|
||||||
|
## Claude in Chrome
|
||||||
|
|
||||||
|
Classification: `native-extension`
|
||||||
|
|
||||||
|
Setup:
|
||||||
|
|
||||||
|
1. Explain that Claude in Chrome requires Google Chrome, a paid Claude plan, the user-installed extension, the same signed-in Claude account, granted site permissions, and an enabled connector.
|
||||||
|
2. Ask whether the user wants to configure it now. Never install the extension, grant permissions, enable a connector, sign in, or attach a Chrome profile for them.
|
||||||
|
3. After the user completes setup, retry the active host tab/context discovery rather than treating the presence of the Claude CLI as browser readiness.
|
||||||
|
|
||||||
|
Readiness evidence:
|
||||||
|
|
||||||
|
- The Claude in Chrome tool surface is visible to the active Claude Code session.
|
||||||
|
- Tab/context discovery returns an attached browser peer instead of a missing-extension or no-peer error.
|
||||||
|
- The common local readiness journey completes through the Claude browser tools.
|
||||||
|
|
||||||
|
If unavailable: Offer GStack local browser or continue without browser evidence; do not substitute a different extension or remote browser.
|
||||||
|
|
||||||
|
## Codex built-in browser
|
||||||
|
|
||||||
|
Classification: `native-in-app`
|
||||||
|
|
||||||
|
Setup:
|
||||||
|
|
||||||
|
1. Explain that the built-in browser is a ChatGPT desktop-app surface on macOS and Windows and uses its own browser state.
|
||||||
|
2. Ask the user to open it from the Work/Codex toolbar (Command-Shift-B on macOS or Control-Shift-B on Windows) and approve the test site when prompted.
|
||||||
|
3. Do not infer readiness from the Codex CLI or skill installation; the active session must expose an in-app browser provider.
|
||||||
|
|
||||||
|
Readiness evidence:
|
||||||
|
|
||||||
|
- Active browser discovery returns the in-app browser provider instead of an empty provider list.
|
||||||
|
- A tab can be created or selected after the user opens the browser surface.
|
||||||
|
- The common local readiness journey completes through the Codex browser tools.
|
||||||
|
|
||||||
|
If unavailable: Offer GStack local browser or defer browser work; do not claim that restarting a browser-less session will create the missing host capability.
|
||||||
|
|
||||||
|
## Gemini CLI browser agent
|
||||||
|
|
||||||
|
Classification: `native-agent`
|
||||||
|
|
||||||
|
Setup:
|
||||||
|
|
||||||
|
1. Explain that Gemini CLI has an experimental bundled `browser_agent`, disabled by default, which requires a recent local Chrome and displays a first-run consent dialog.
|
||||||
|
2. Ask whether the user wants to enable it themselves. Never edit Gemini settings, accept its consent dialog, attach an existing Chrome session, or infer readiness from the Gemini executable.
|
||||||
|
3. Prefer Gemini isolated browser mode for public or localhost QA unless the user explicitly needs and approves an existing signed-in browser session.
|
||||||
|
|
||||||
|
Readiness evidence:
|
||||||
|
|
||||||
|
- The active Gemini session exposes the callable `browser_agent` tool rather than only `google_web_search` or `web_fetch`.
|
||||||
|
- The user has completed Gemini's own enablement and one-time consent without GStack acting on their behalf.
|
||||||
|
- The common local readiness journey completes through the Gemini browser agent.
|
||||||
|
|
||||||
|
If unavailable: Offer the consented GStack local browser, evidence-limited fetch/search, or deferral; do not install a browser MCP because Gemini already bundles its experimental browser agent.
|
||||||
|
|
||||||
|
## Cursor interactive browser provider
|
||||||
|
|
||||||
|
Classification: `native-mcp`
|
||||||
|
|
||||||
|
Setup:
|
||||||
|
|
||||||
|
1. Inspect the active Cursor tool surface for an interactive provider such as Chrome DevTools; Cursor CLI presence and parent-process environment variables are not provider evidence.
|
||||||
|
2. If an interactive provider is exposed, explain its current session/profile boundary and ask whether to use it. Never add or approve an MCP server, extension, or browser profile for the user.
|
||||||
|
3. If no interactive provider is exposed in this Cursor session, offer GStack local browser rather than assuming every Cursor installation has the same browser tools.
|
||||||
|
|
||||||
|
Readiness evidence:
|
||||||
|
|
||||||
|
- The active Cursor session exposes callable navigation, page-reading, and interaction tools and returns a live browser peer.
|
||||||
|
- The selected browser session does not require silently attaching the user's personal profile.
|
||||||
|
- The common local readiness journey completes through the discovered Cursor provider.
|
||||||
|
|
||||||
|
If unavailable: Offer GStack local browser, evidence-limited web access, or deferral; do not turn one machine's configured Chrome DevTools MCP into a universal Cursor capability claim.
|
||||||
|
|
||||||
|
## GitHub Copilot and VS Code integrated browser
|
||||||
|
|
||||||
|
Classification: `native-in-app`
|
||||||
|
|
||||||
|
Setup:
|
||||||
|
|
||||||
|
1. Explain that current VS Code can expose built-in browser agent tools, subject to the `workbench.browser.enableChatTools` organization setting and the user's active tool selection.
|
||||||
|
2. Ask the user to enable the Built-in > Browser tools in the active agent session when they want to use them. Never change VS Code or organization settings for them.
|
||||||
|
3. Prefer an agent-created isolated browser page; sharing an existing browser page or its signed-in state requires the user's explicit action.
|
||||||
|
|
||||||
|
Readiness evidence:
|
||||||
|
|
||||||
|
- The active Copilot/VS Code agent session exposes callable browser tools such as page navigation, reading, screenshot, and interaction.
|
||||||
|
- An isolated browser page can be opened without silently sharing an existing tab or cookie store.
|
||||||
|
- The common local readiness journey completes through the VS Code integrated browser tools.
|
||||||
|
|
||||||
|
If unavailable: Offer GStack local browser or defer; distinguish organization-policy disablement from a transient missing browser tab.
|
||||||
|
|
||||||
|
## OpenClaw browser plugin
|
||||||
|
|
||||||
|
Classification: `native-plugin`
|
||||||
|
|
||||||
|
Setup:
|
||||||
|
|
||||||
|
1. Explain that OpenClaw includes a browser plugin with a dedicated managed profile, while its `user` profile can attach to an existing browser session.
|
||||||
|
2. Inspect the active OpenClaw tool policy for the callable browser tool. Never edit `plugins.allow`, enable the plugin, or attach the `user` profile without explicit user action.
|
||||||
|
3. Prefer the isolated managed profile for public and localhost QA; use an existing signed-in profile only when the user explicitly selects it.
|
||||||
|
|
||||||
|
Readiness evidence:
|
||||||
|
|
||||||
|
- The active OpenClaw agent exposes the browser tool after its plugin and tool-policy checks.
|
||||||
|
- Browser doctor/status and tab discovery succeed for the explicitly selected profile.
|
||||||
|
- The common local readiness journey completes through OpenClaw browser actions.
|
||||||
|
|
||||||
|
If unavailable: Offer GStack local browser or defer; do not silently repair OpenClaw plugin policy or attach a personal browser profile.
|
||||||
|
|
||||||
|
## Kimi Code
|
||||||
|
|
||||||
|
Classification: `no-native-automation`
|
||||||
|
|
||||||
|
Setup:
|
||||||
|
|
||||||
|
1. Explain that Kimi Code loads standard Agent Skills and provides WebSearch/FetchURL when configured, but does not currently document a native interactive browser-automation harness.
|
||||||
|
2. Do not describe `kimi web` as browser automation: it is the browser-based user interface for the Kimi session.
|
||||||
|
3. Offer GStack local browser when interactive navigation, clicking, screenshots, console, or network evidence is required.
|
||||||
|
|
||||||
|
Readiness evidence:
|
||||||
|
|
||||||
|
- Kimi discovers the canonical GStack skills through its standard Agent Skills directories.
|
||||||
|
- Fetch/search-only work may use Kimi host tools when their limitations satisfy the task.
|
||||||
|
- Interactive browser readiness is tested against GStack local browser, not `kimi web`.
|
||||||
|
|
||||||
|
If unavailable: Continue with fetch/search-only evidence or offer the consented GStack local browser; never silently add a browser MCP or alternate backend.
|
||||||
|
|
||||||
|
## Pi coding agent
|
||||||
|
|
||||||
|
Classification: `extension-only`
|
||||||
|
|
||||||
|
Setup:
|
||||||
|
|
||||||
|
1. Explain that Pi intentionally has no core interactive browser tool; browser automation is available only through optional third-party packages or an already exposed host tool.
|
||||||
|
2. Inspect the active Pi tool surface. Never install a Pi package, run its browser installer, or treat a package listing as a live browser peer.
|
||||||
|
3. Offer GStack local browser when no already-configured interactive provider is callable.
|
||||||
|
|
||||||
|
Readiness evidence:
|
||||||
|
|
||||||
|
- An explicitly user-installed Pi browser extension exposes a callable browser tool in the active session.
|
||||||
|
- The extension returns a live isolated session without triggering an unapproved Chromium download or profile attachment.
|
||||||
|
- The common local readiness journey completes through that active tool.
|
||||||
|
|
||||||
|
If unavailable: Offer GStack local browser, evidence-limited continuation, or deferral; never recommend or install a third-party Pi browser package automatically.
|
||||||
|
|
||||||
|
## GStack local browser fallback
|
||||||
|
|
||||||
|
GStack's existing local Chromium/Playwright implementation remains the only bundled browser backend. Follow `RUNTIME.md` for preview and separate install consent, run `gstack doctor`, then run the same readiness journey with the `browse` launcher. Do not run `./setup`, add a cloud browser, remote provider, alternate local backend, or personal-profile attachment as a fallback.
|
||||||
@@ -3,14 +3,22 @@
|
|||||||
|
|
||||||
The six Agent Skills are useful without a GStack runtime. Never install, download, build, select, update, or remove runtime capabilities merely because a skill was invoked.
|
The six Agent Skills are useful without a GStack runtime. Never install, download, build, select, update, or remove runtime capabilities merely because a skill was invoked.
|
||||||
|
|
||||||
When an active specialist first reaches a capability it cannot use, name the exact capability and why it is needed. Offer to continue without it when the judgment-only or host-native path remains valid. Installation requires the user's explicit approval after disclosing the selected capabilities, that an official versioned release artifact will be downloaded and SHA-256 verified, and any exact byte/build information available from the bootstrap manifest. Never call the bootstrap before approval.
|
Before interactive browser work, read `references/BROWSER-PROVIDERS.md` in full. It owns provider detection, consented host setup, the common readiness journey, and the explicit GStack fallback. Skill installation never proves browser readiness.
|
||||||
|
|
||||||
Capability names are `browser`, `design`, `pdf`, `diagram`, and `ios`; the core state/runtime CLI is managed separately. After approval, from this skill root run `node references/support/runtime-bootstrap.mjs install --capability <name>` (repeat `--capability` for additional approved capabilities). The dependency-free Node 18+ bootstrap accepts only official GStack GitHub Release hosts, validates the fixed manifest schema/version/skill API/platform artifact and SHA-256, verifies a declared Cosign bundle when Cosign is available, rejects unsafe archive paths/links, and invokes the atomic managed installer. Never run `./setup` inside a standard-installed skill directory, enroll a host, or treat skill installation as runtime consent.
|
When an active specialist first reaches a capability it cannot use, name the exact capability and why it is needed. Offer to continue without it when the judgment-only or host-native path remains valid. Before any network preview, ask whether the user wants to check official setup options and exact sizes. Disclose that an uncached preview makes one public GitHub request for signed manifest metadata and sends no repository content, private URL, file, cookie, token, or credential; then STOP. A cached already-verified manifest may preview offline, but never silently fetch.
|
||||||
|
|
||||||
Resolve capability dependencies before preview and approval: `diagram` implies `browser`; `pdf` implies both `diagram` and `browser` transitively. `design` and `ios` are standalone. The disclosure and approval must name the complete expanded set, not only the capability first requested.
|
Only after the user approves that metadata check, run the non-mutating preview from this skill root: `node references/support/runtime-bootstrap.mjs preview --capability <name>` (repeat `--capability` for additional requested capabilities). It dependency-expands, reports already verified local components, exact missing components, and their summed compressed bytes. It never downloads components or mutates runtime state. Preview consent is not install consent.
|
||||||
|
|
||||||
After doctor confirms readiness, canonical launcher bindings are `GSTACK_HOME=${GSTACK_HOME:-$HOME/.gstack}`, `GSTACK_BIN=$GSTACK_HOME/bin`, `B=$GSTACK_BIN/browse`, `D=$GSTACK_BIN/gstack-design`, and `P=$GSTACK_BIN/make-pdf`. Specialist modules may bind only the launchers they use. These assignments do not install or grant consent.
|
User-facing setup capabilities are exactly `browser`, `design`, `diagram`, `pdf`, and `ios`. `all` means those five and intentionally excludes visible Chromium. The internal `browser-visible` capability is additive and is offered only when a workflow actually reaches a headed browser, extension, or browser-handoff step. Never offer it during ordinary headless QA.
|
||||||
|
|
||||||
|
After showing the complete preview, STOP for explicit approval. Only after approval run `node references/support/runtime-bootstrap.mjs install --capability <name> --yes`; install must reprint the identical dependency-closed plan before downloading. Signed internal components are `core`, `browser-code` (browse code and dependencies), `browser-headless` (Playwright headless shell and FFmpeg), `browser-visible` (full Chromium), `design`, `diagram`, `pdf`, and `ios`. Logical `browser` expands to `browser-code + browser-headless`; internal `browser-visible` expands to `browser-code + browser-visible` and does not require headless. Component dependencies are `browser-code → core`, `browser-headless → browser-code`, and `browser-visible → browser-code`. `diagram` depends on logical `browser`; `pdf` depends on `diagram`; `ios` is Darwin-only. Therefore a first-time headed flow previews `core + browser-code + browser-visible`, while an existing verified headless runtime downloads only missing `browser-visible`. The manifest schema is v2 with global `capabilityComponents` and `componentDependencies`, plus `targets[target].components[id]` carrying signed exact-byte artifacts.
|
||||||
|
|
||||||
|
The dependency-free Node 18+ bootstrap accepts only official GStack GitHub Release hosts, validates manifest/runtime/skill API/platform/component metadata and SHA-256, verifies a declared Cosign bundle when Cosign is available, rejects unsafe archive paths/links, and invokes the atomic managed installer. Never run `./setup` inside a standard-installed skill directory, enroll a host, or treat skill installation as runtime consent.
|
||||||
|
|
||||||
|
After doctor confirms readiness, canonical launcher bindings are `GSTACK_HOME=${GSTACK_HOME:-$HOME/.gstack}`, `GSTACK_BIN=$GSTACK_HOME/bin`, `BUN_CMD=$GSTACK_BIN/bun`, `B=$GSTACK_BIN/browse`, `D=$GSTACK_BIN/gstack-design`, and `P=$GSTACK_BIN/make-pdf`. Specialist modules may bind only the launchers they use. These assignments do not install or grant consent. Never download or install a second Bun for GStack helpers; the managed runtime owns its pinned Bun executable in the active slot.
|
||||||
|
|
||||||
|
Some retained helpers are shell scripts. `gstack doctor` verifies Bash and, on Windows, discovers Git for Windows Bash; disclose and stop at the affected helper if that prerequisite is unavailable. Python is not a global GStack prerequisite: only a specialist flow explicitly labeled as Python-dependent may request it, at the point of use and with the user's approval.
|
||||||
|
|
||||||
The package/runtime compatibility tuple is `schemaVersion=1`, `runtimeVersion=2.0.0`, and `skillApi=2.0`; the machine-readable copy is `references/support/runtime-contract.json`. An incompatible active runtime is unavailable, not permission to upgrade it.
|
The package/runtime compatibility tuple is `schemaVersion=1`, `runtimeVersion=2.0.0`, and `skillApi=2.0`; the machine-readable copy is `references/support/runtime-contract.json`. An incompatible active runtime is unavailable, not permission to upgrade it.
|
||||||
|
|
||||||
The developer-only fallback is `node references/support/runtime-bootstrap.mjs install --source <reviewed-checkout> --capability <name>`; show its trust warning and use it only when the user explicitly selects a checkout they reviewed. If the packaged bootstrap is unavailable, stop capability setup instead of guessing a checkout-relative command. Deferring installation records no consent and must not block pure judgment.
|
The developer-only fallback is `node references/support/runtime-bootstrap.mjs install --source <reviewed-checkout> --capability <name> --yes`; show its trust warning and use it only when the user explicitly selects a checkout they reviewed. If the packaged bootstrap is unavailable, stop capability setup instead of guessing a checkout-relative command. Deferring installation records no consent and must not block pure judgment.
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
||||||
<!-- GSTACK2_PROVENANCE source=freeze/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=c0b31aa7f9f216fc5a351d91f4bcff68c828d090 baseline_render_sha256=f033b466da6f43edbdb57c23664bb544317a1c11a253701a35edc14986ebddfc ported_render_sha256=433bb7c1909852c83978ae282c582590c5136abe56020e7d0be39749822c345b disposition=BUG_FIX -->
|
<!-- GSTACK2_PROVENANCE source=freeze/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=c0b31aa7f9f216fc5a351d91f4bcff68c828d090 baseline_render_sha256=f033b466da6f43edbdb57c23664bb544317a1c11a253701a35edc14986ebddfc ported_render_sha256=036fe2c7d5c154982ba3509e9b9ab1f5867f86c1d71beb569802d7f7be46ed7c disposition=BUG_FIX -->
|
||||||
<!-- GSTACK2_ROUTING replacement=$debug --mode Diagnose-only --module freeze visibility=internal depth=standard mutation=safety-policy web=none -->
|
<!-- GSTACK2_ROUTING replacement=$debug --mode Diagnose-only --module freeze visibility=internal depth=standard mutation=safety-policy web=none -->
|
||||||
|
|
||||||
<!-- GSTACK2_LEGACY_BODY_START source=freeze -->
|
<!-- GSTACK2_LEGACY_BODY_START source=freeze -->
|
||||||
@@ -12,6 +12,7 @@ GSTACK_HOME="${GSTACK_HOME:-$HOME/.gstack}"
|
|||||||
GSTACK_ROOT="$GSTACK_HOME"
|
GSTACK_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_BIN="$GSTACK_HOME/bin"
|
GSTACK_BIN="$GSTACK_HOME/bin"
|
||||||
|
BUN_CMD="$GSTACK_BIN/bun"
|
||||||
B="$GSTACK_BIN/browse"
|
B="$GSTACK_BIN/browse"
|
||||||
D="$GSTACK_BIN/gstack-design"
|
D="$GSTACK_BIN/gstack-design"
|
||||||
P="$GSTACK_BIN/make-pdf"
|
P="$GSTACK_BIN/make-pdf"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
||||||
<!-- GSTACK2_PROVENANCE source=guard/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=3d34ee0c181ec7b263bf6092ba8f384619c5efb6 baseline_render_sha256=fb2609e8e305dfceb554442c4c5a8717b9f77efd8bf9c7166b9ec6335b06f481 ported_render_sha256=ff8170babcc9ad20f6de292db838d2c4545f0ed98dddd184ab5e7c52c073dc7e disposition=BUG_FIX -->
|
<!-- GSTACK2_PROVENANCE source=guard/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=3d34ee0c181ec7b263bf6092ba8f384619c5efb6 baseline_render_sha256=fb2609e8e305dfceb554442c4c5a8717b9f77efd8bf9c7166b9ec6335b06f481 ported_render_sha256=36072a06a2a2ab6c1beec2a888417fb96eb1a50f284cb26ee3796b7c69857be8 disposition=BUG_FIX -->
|
||||||
<!-- GSTACK2_ROUTING replacement=$debug --mode Diagnose-only --module guard visibility=internal depth=standard mutation=safety-policy web=none -->
|
<!-- GSTACK2_ROUTING replacement=$debug --mode Diagnose-only --module guard visibility=internal depth=standard mutation=safety-policy web=none -->
|
||||||
|
|
||||||
<!-- GSTACK2_LEGACY_BODY_START source=guard -->
|
<!-- GSTACK2_LEGACY_BODY_START source=guard -->
|
||||||
@@ -12,6 +12,7 @@ GSTACK_HOME="${GSTACK_HOME:-$HOME/.gstack}"
|
|||||||
GSTACK_ROOT="$GSTACK_HOME"
|
GSTACK_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_BIN="$GSTACK_HOME/bin"
|
GSTACK_BIN="$GSTACK_HOME/bin"
|
||||||
|
BUN_CMD="$GSTACK_BIN/bun"
|
||||||
B="$GSTACK_BIN/browse"
|
B="$GSTACK_BIN/browse"
|
||||||
D="$GSTACK_BIN/gstack-design"
|
D="$GSTACK_BIN/gstack-design"
|
||||||
P="$GSTACK_BIN/make-pdf"
|
P="$GSTACK_BIN/make-pdf"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
||||||
<!-- GSTACK2_PROVENANCE source=investigate/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=67e254d743ffb9060f48e3f6d4b715c077ee688d baseline_render_sha256=e570ad1683d87ce10bb4603f942a3e80bc35b1e56a7e8a7df0ff46c1f551f5d9 ported_render_sha256=91f19c8d736a9a6077941f63f52853634325059e5ac4d8808c4ba6dbceca1a30 disposition=BUG_FIX -->
|
<!-- GSTACK2_PROVENANCE source=investigate/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=67e254d743ffb9060f48e3f6d4b715c077ee688d baseline_render_sha256=e570ad1683d87ce10bb4603f942a3e80bc35b1e56a7e8a7df0ff46c1f551f5d9 ported_render_sha256=ee817d27e0b303b1e173ab2c572c70f55ef2211225d366a166d2e26cbbe3b2ab disposition=BUG_FIX -->
|
||||||
<!-- GSTACK2_ROUTING replacement=$debug --mode Diagnose-only --module investigate visibility=primary depth=deep mutation=investigate-only web=optional -->
|
<!-- GSTACK2_ROUTING replacement=$debug --mode Diagnose-only --module investigate visibility=primary depth=deep mutation=investigate-only web=optional -->
|
||||||
|
|
||||||
<!-- GSTACK2_LEGACY_BODY_START source=investigate -->
|
<!-- GSTACK2_LEGACY_BODY_START source=investigate -->
|
||||||
@@ -12,6 +12,7 @@ GSTACK_HOME="${GSTACK_HOME:-$HOME/.gstack}"
|
|||||||
GSTACK_ROOT="$GSTACK_HOME"
|
GSTACK_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_BIN="$GSTACK_HOME/bin"
|
GSTACK_BIN="$GSTACK_HOME/bin"
|
||||||
|
BUN_CMD="$GSTACK_BIN/bun"
|
||||||
B="$GSTACK_BIN/browse"
|
B="$GSTACK_BIN/browse"
|
||||||
D="$GSTACK_BIN/gstack-design"
|
D="$GSTACK_BIN/gstack-design"
|
||||||
P="$GSTACK_BIN/make-pdf"
|
P="$GSTACK_BIN/make-pdf"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
||||||
<!-- GSTACK2_PROVENANCE source=unfreeze/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=88e413fe5a49a45d46d8867b2d80ace30b3b45aa baseline_render_sha256=8debfd573af54e7caf4a73b13f775d9b9189b932b7b61afbaf1b8590d5647a9f ported_render_sha256=51d6183901e866697382b7e900e2154e8bfb6a9ebf4f3e1bb3ad29925fad0e20 disposition=BUG_FIX -->
|
<!-- GSTACK2_PROVENANCE source=unfreeze/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=88e413fe5a49a45d46d8867b2d80ace30b3b45aa baseline_render_sha256=8debfd573af54e7caf4a73b13f775d9b9189b932b7b61afbaf1b8590d5647a9f ported_render_sha256=19cd17084af59cb912f9507bf8ffdc81e38aa1fbef14605a838efbc6521e9534 disposition=BUG_FIX -->
|
||||||
<!-- GSTACK2_ROUTING replacement=$debug --mode Diagnose-only --module unfreeze visibility=internal depth=standard mutation=safety-policy web=none -->
|
<!-- GSTACK2_ROUTING replacement=$debug --mode Diagnose-only --module unfreeze visibility=internal depth=standard mutation=safety-policy web=none -->
|
||||||
|
|
||||||
<!-- GSTACK2_LEGACY_BODY_START source=unfreeze -->
|
<!-- GSTACK2_LEGACY_BODY_START source=unfreeze -->
|
||||||
@@ -12,6 +12,7 @@ GSTACK_HOME="${GSTACK_HOME:-$HOME/.gstack}"
|
|||||||
GSTACK_ROOT="$GSTACK_HOME"
|
GSTACK_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_BIN="$GSTACK_HOME/bin"
|
GSTACK_BIN="$GSTACK_HOME/bin"
|
||||||
|
BUN_CMD="$GSTACK_BIN/bun"
|
||||||
B="$GSTACK_BIN/browse"
|
B="$GSTACK_BIN/browse"
|
||||||
D="$GSTACK_BIN/gstack-design"
|
D="$GSTACK_BIN/gstack-design"
|
||||||
P="$GSTACK_BIN/make-pdf"
|
P="$GSTACK_BIN/make-pdf"
|
||||||
|
|||||||
@@ -0,0 +1,126 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
import { randomBytes } from "node:crypto";
|
||||||
|
import http from "node:http";
|
||||||
|
import { pathToFileURL } from "node:url";
|
||||||
|
|
||||||
|
const HOST = "127.0.0.1";
|
||||||
|
|
||||||
|
export function createReadinessServer(options = {}) {
|
||||||
|
const token = options.token ?? randomBytes(24).toString("hex");
|
||||||
|
if (!/^[a-f0-9]{32,128}$/.test(token)) throw new TypeError("Readiness token must be 32-128 lowercase hex characters");
|
||||||
|
let completed = false;
|
||||||
|
let baseUrl = null;
|
||||||
|
|
||||||
|
const server = http.createServer((request, response) => {
|
||||||
|
const url = new URL(request.url ?? "/", baseUrl ?? `http://${HOST}`);
|
||||||
|
const supplied = url.searchParams.get("token");
|
||||||
|
const headers = {
|
||||||
|
"Cache-Control": "no-store",
|
||||||
|
"Content-Security-Policy": "default-src 'none'; script-src 'unsafe-inline'; connect-src 'self'; style-src 'unsafe-inline'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'",
|
||||||
|
"Referrer-Policy": "no-referrer",
|
||||||
|
"X-Content-Type-Options": "nosniff",
|
||||||
|
};
|
||||||
|
|
||||||
|
if (url.pathname === "/" && request.method === "GET") {
|
||||||
|
response.writeHead(200, { ...headers, "Content-Type": "text/html; charset=utf-8" });
|
||||||
|
response.end(renderPage(token));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (url.pathname === "/proof") {
|
||||||
|
if (request.method !== "POST") {
|
||||||
|
response.writeHead(405, { ...headers, Allow: "POST" });
|
||||||
|
response.end();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (supplied !== token) {
|
||||||
|
response.writeHead(403, headers);
|
||||||
|
response.end();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
completed = true;
|
||||||
|
response.writeHead(200, { ...headers, "Content-Type": "application/json" });
|
||||||
|
response.end(JSON.stringify({ ok: true, status: "READY" }));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (url.pathname === "/status" && request.method === "GET") {
|
||||||
|
if (supplied !== token) {
|
||||||
|
response.writeHead(403, headers);
|
||||||
|
response.end();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
response.writeHead(200, { ...headers, "Content-Type": "application/json" });
|
||||||
|
response.end(JSON.stringify({ ok: true, completed }));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
response.writeHead(404, headers);
|
||||||
|
response.end();
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
server,
|
||||||
|
token,
|
||||||
|
get completed() { return completed; },
|
||||||
|
async start() {
|
||||||
|
if (baseUrl) return { url: `${baseUrl}/?token=${token}`, baseUrl, token };
|
||||||
|
await new Promise((resolve, reject) => {
|
||||||
|
server.once("error", reject);
|
||||||
|
server.listen(options.port ?? 0, HOST, resolve);
|
||||||
|
});
|
||||||
|
const address = server.address();
|
||||||
|
if (!address || typeof address === "string") throw new Error("Readiness fixture did not acquire a TCP port");
|
||||||
|
baseUrl = `http://${HOST}:${address.port}`;
|
||||||
|
return { url: `${baseUrl}/?token=${token}`, baseUrl, token };
|
||||||
|
},
|
||||||
|
async stop() {
|
||||||
|
if (!server.listening) return;
|
||||||
|
await new Promise((resolve, reject) => server.close((error) => error ? reject(error) : resolve()));
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderPage(token) {
|
||||||
|
return `<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>GStack browser readiness</title>
|
||||||
|
<style>body{font:16px system-ui;max-width:44rem;margin:4rem auto;padding:0 1rem}button{font:inherit;padding:.7rem 1rem}#gstack-readiness-status{font-weight:700}</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main>
|
||||||
|
<h1>GStack browser readiness</h1>
|
||||||
|
<p>This local page verifies navigation, reading, interaction, console, and network access.</p>
|
||||||
|
<button id="gstack-readiness-action" type="button">Complete readiness check</button>
|
||||||
|
<p id="gstack-readiness-status" role="status">WAITING</p>
|
||||||
|
</main>
|
||||||
|
<script>
|
||||||
|
document.querySelector('#gstack-readiness-action').addEventListener('click', async () => {
|
||||||
|
const response = await fetch('/proof?token=${token}', { method: 'POST' });
|
||||||
|
const result = await response.json();
|
||||||
|
document.querySelector('#gstack-readiness-status').textContent = result.status;
|
||||||
|
console.log('gstack-browser-readiness:ready');
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function main() {
|
||||||
|
const fixture = createReadinessServer();
|
||||||
|
const started = await fixture.start();
|
||||||
|
process.stdout.write(`${JSON.stringify({ ...started, pid: process.pid })}\n`);
|
||||||
|
const stop = async () => {
|
||||||
|
await fixture.stop();
|
||||||
|
process.exitCode = fixture.completed ? 0 : 2;
|
||||||
|
};
|
||||||
|
process.once("SIGINT", stop);
|
||||||
|
process.once("SIGTERM", stop);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href) {
|
||||||
|
main().catch((error) => {
|
||||||
|
process.stderr.write(`gstack browser readiness: ${error.message}\n`);
|
||||||
|
process.exitCode = 1;
|
||||||
|
});
|
||||||
|
}
|
||||||
@@ -7,21 +7,41 @@ import os from "node:os";
|
|||||||
import path from "node:path";
|
import path from "node:path";
|
||||||
import process from "node:process";
|
import process from "node:process";
|
||||||
import { createHash } from "node:crypto";
|
import { createHash } from "node:crypto";
|
||||||
|
import { constants as fsConstants, createReadStream } from "node:fs";
|
||||||
import { spawn } from "node:child_process";
|
import { spawn } from "node:child_process";
|
||||||
import { fileURLToPath } from "node:url";
|
import { fileURLToPath } from "node:url";
|
||||||
|
|
||||||
export const BOOTSTRAP_SCHEMA_VERSION = 1;
|
export const BOOTSTRAP_SCHEMA_VERSION = 2;
|
||||||
export const BOOTSTRAP_RUNTIME_VERSION = "2.0.0";
|
export const BOOTSTRAP_RUNTIME_VERSION = "2.0.0";
|
||||||
export const OFFICIAL_MANIFEST_URL =
|
export const OFFICIAL_MANIFEST_URL =
|
||||||
`https://github.com/time-attack/gstack/releases/download/v${BOOTSTRAP_RUNTIME_VERSION}/gstack-runtime-manifest.json`;
|
`https://github.com/time-attack/gstack/releases/download/v${BOOTSTRAP_RUNTIME_VERSION}/gstack-runtime-manifest.json`;
|
||||||
const CAPABILITIES = new Set(["browser", "design", "pdf", "diagram", "ios"]);
|
const CAPABILITIES = new Set(["browser", "browser-visible", "design", "pdf", "diagram", "ios"]);
|
||||||
const CAPABILITY_DEPENDENCIES = Object.freeze({
|
const CAPABILITY_DEPENDENCIES = Object.freeze({
|
||||||
browser: Object.freeze([]),
|
browser: Object.freeze([]),
|
||||||
|
"browser-visible": Object.freeze([]),
|
||||||
design: Object.freeze([]),
|
design: Object.freeze([]),
|
||||||
pdf: Object.freeze(["browser", "diagram"]),
|
pdf: Object.freeze(["browser", "diagram"]),
|
||||||
diagram: Object.freeze(["browser"]),
|
diagram: Object.freeze(["browser"]),
|
||||||
ios: Object.freeze([]),
|
ios: Object.freeze([]),
|
||||||
});
|
});
|
||||||
|
export const COMPONENT_DEPENDENCIES = Object.freeze({
|
||||||
|
core: Object.freeze([]),
|
||||||
|
"browser-code": Object.freeze(["core"]),
|
||||||
|
"browser-headless": Object.freeze(["browser-code"]),
|
||||||
|
"browser-visible": Object.freeze(["browser-code"]),
|
||||||
|
design: Object.freeze(["core"]),
|
||||||
|
diagram: Object.freeze(["browser-headless"]),
|
||||||
|
pdf: Object.freeze(["diagram"]),
|
||||||
|
ios: Object.freeze(["core"]),
|
||||||
|
});
|
||||||
|
export const CAPABILITY_COMPONENTS = Object.freeze({
|
||||||
|
browser: Object.freeze(["browser-code", "browser-headless"]),
|
||||||
|
"browser-visible": Object.freeze(["browser-code", "browser-visible"]),
|
||||||
|
design: Object.freeze(["design"]),
|
||||||
|
diagram: Object.freeze(["diagram"]),
|
||||||
|
pdf: Object.freeze(["pdf"]),
|
||||||
|
ios: Object.freeze(["ios"]),
|
||||||
|
});
|
||||||
const ALLOWED_DOWNLOAD_HOSTS = new Set([
|
const ALLOWED_DOWNLOAD_HOSTS = new Set([
|
||||||
"github.com",
|
"github.com",
|
||||||
"objects.githubusercontent.com",
|
"objects.githubusercontent.com",
|
||||||
@@ -43,18 +63,26 @@ export async function main(argv = process.argv.slice(2), options = {}) {
|
|||||||
io.stdout.write(usage());
|
io.stdout.write(usage());
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
if (parsed.action !== "install") throw bootstrapError("Expected `install`", "BOOTSTRAP_USAGE");
|
if (!["preview", "install"].includes(parsed.action)) {
|
||||||
|
throw bootstrapError("Expected `preview` or `install`", "BOOTSTRAP_USAGE");
|
||||||
|
}
|
||||||
|
|
||||||
|
const platform = options.platform ?? process.platform;
|
||||||
|
if (parsed.capabilities.includes("ios") && platform !== "darwin") {
|
||||||
|
throw bootstrapError("The physical-iOS capability is available only on macOS", "BOOTSTRAP_PLATFORM_UNSUPPORTED");
|
||||||
|
}
|
||||||
if (parsed.source) {
|
if (parsed.source) {
|
||||||
|
if (parsed.action === "preview") {
|
||||||
|
io.stdout.write("Reviewed-source fallback has no signed compressed-byte manifest; the local installer can provide an on-disk preview only.\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
if (!parsed.yes) throw bootstrapError("Installation requires explicit --yes after review", "BOOTSTRAP_CONSENT_REQUIRED");
|
||||||
io.stderr.write("Developer-only source install: only continue with a checkout you reviewed and trust.\n");
|
io.stderr.write("Developer-only source install: only continue with a checkout you reviewed and trust.\n");
|
||||||
return await installFromSource(parsed.source, parsed, { ...options, ...io, prepared: false });
|
return await installFromSource(parsed.source, parsed, { ...options, ...io, prepared: false });
|
||||||
}
|
}
|
||||||
|
|
||||||
const fetch_ = options.fetch ?? globalThis.fetch;
|
const fetch_ = options.fetch ?? globalThis.fetch;
|
||||||
if (typeof fetch_ !== "function") throw bootstrapError("Node 18+ with fetch is required", "BOOTSTRAP_NODE_UNSUPPORTED");
|
if (typeof fetch_ !== "function") throw bootstrapError("Node 18+ with fetch is required", "BOOTSTRAP_NODE_UNSUPPORTED");
|
||||||
const platform = options.platform ?? process.platform;
|
|
||||||
if (parsed.capabilities.includes("ios") && platform !== "darwin") {
|
|
||||||
throw bootstrapError("The physical-iOS capability is available only on macOS", "BOOTSTRAP_PLATFORM_UNSUPPORTED");
|
|
||||||
}
|
|
||||||
const target = platformTarget(
|
const target = platformTarget(
|
||||||
platform,
|
platform,
|
||||||
options.arch ?? process.arch,
|
options.arch ?? process.arch,
|
||||||
@@ -63,19 +91,32 @@ export async function main(argv = process.argv.slice(2), options = {}) {
|
|||||||
const manifestUrl = options.manifestUrl ?? OFFICIAL_MANIFEST_URL;
|
const manifestUrl = options.manifestUrl ?? OFFICIAL_MANIFEST_URL;
|
||||||
assertOfficialUrl(manifestUrl, { manifest: true });
|
assertOfficialUrl(manifestUrl, { manifest: true });
|
||||||
const manifest = await fetchJson(fetch_, manifestUrl);
|
const manifest = await fetchJson(fetch_, manifestUrl);
|
||||||
const artifact = validateManifest(manifest, target);
|
validateManifest(manifest, target);
|
||||||
io.stdout.write(`Official runtime artifact: ${formatBytes(artifact.bytes)} for ${target}.\n`);
|
const home = path.resolve(parsed.home ?? process.env.GSTACK_HOME ?? path.join(os.homedir(), ".gstack"));
|
||||||
|
const reusable = await inspectReusableRuntime(home, manifest.version).catch(() => null);
|
||||||
|
const plan = buildComponentPlan(manifest, target, parsed.capabilities, reusable);
|
||||||
|
if (parsed.json) io.stdout.write(`${JSON.stringify({ ok: true, action: parsed.action, ...plan }, null, 2)}\n`);
|
||||||
|
else printComponentPlan(io.stdout, plan);
|
||||||
|
if (parsed.action === "preview") return 0;
|
||||||
|
if (!parsed.yes) throw bootstrapError("Installation requires explicit --yes after reviewing this exact component plan", "BOOTSTRAP_CONSENT_REQUIRED");
|
||||||
const temporary = await fs.mkdtemp(path.join(options.tmpDir ?? os.tmpdir(), "gstack-bootstrap-"));
|
const temporary = await fs.mkdtemp(path.join(options.tmpDir ?? os.tmpdir(), "gstack-bootstrap-"));
|
||||||
try {
|
try {
|
||||||
const archive = path.join(temporary, "runtime.tar.gz");
|
const root = path.join(temporary, "merged", "gstack");
|
||||||
await downloadVerified(fetch_, artifact.url, archive, artifact.sha256, artifact.bytes);
|
await fs.mkdir(root, { recursive: true, mode: 0o700 });
|
||||||
io.stdout.write(`Verified SHA-256 for GStack runtime ${manifest.version} (${target}).\n`);
|
const claimedFiles = new Set();
|
||||||
await verifyCosignWhenAvailable(archive, artifact, temporary, { ...options, fetch: fetch_, ...io });
|
if (reusable) await seedReusableRuntime(reusable, root, claimedFiles);
|
||||||
const extracted = path.join(temporary, "extracted");
|
for (const item of plan.downloads) {
|
||||||
await fs.mkdir(extracted, { mode: 0o700 });
|
const archive = path.join(temporary, `${item.component}.tar.gz`);
|
||||||
await extractTarSafely(archive, extracted, options);
|
await downloadVerified(fetch_, item.artifact.url, archive, item.artifact.sha256, item.artifact.bytes);
|
||||||
const root = safeArtifactRoot(extracted, artifact.root ?? "gstack");
|
io.stdout.write(`Verified SHA-256 for ${item.component} (${target}).\n`);
|
||||||
await assertNoLinks(root);
|
await verifyCosignWhenAvailable(archive, item.artifact, path.join(temporary, item.component), { ...options, fetch: fetch_, ...io });
|
||||||
|
const extracted = path.join(temporary, "extracted", item.component);
|
||||||
|
await fs.mkdir(extracted, { recursive: true, mode: 0o700 });
|
||||||
|
await extractTarSafely(archive, extracted, options);
|
||||||
|
const componentRoot = safeArtifactRoot(extracted, item.artifact.root ?? "gstack");
|
||||||
|
await assertNoLinks(componentRoot);
|
||||||
|
await mergeComponentRoot(componentRoot, root, claimedFiles, item.component);
|
||||||
|
}
|
||||||
return await installFromSource(root, parsed, { ...options, ...io, prepared: true, version: manifest.version });
|
return await installFromSource(root, parsed, { ...options, ...io, prepared: true, version: manifest.version });
|
||||||
} finally {
|
} finally {
|
||||||
await fs.rm(temporary, { recursive: true, force: true });
|
await fs.rm(temporary, { recursive: true, force: true });
|
||||||
@@ -87,10 +128,12 @@ export async function main(argv = process.argv.slice(2), options = {}) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function parseArgs(argv) {
|
function parseArgs(argv) {
|
||||||
const result = { action: null, capabilities: [], source: null, home: null, help: false };
|
const result = { action: null, capabilities: [], source: null, home: null, yes: false, json: false, help: false };
|
||||||
for (let index = 0; index < argv.length; index += 1) {
|
for (let index = 0; index < argv.length; index += 1) {
|
||||||
const arg = argv[index];
|
const arg = argv[index];
|
||||||
if (["-h", "--help"].includes(arg)) result.help = true;
|
if (["-h", "--help"].includes(arg)) result.help = true;
|
||||||
|
else if (arg === "--yes") result.yes = true;
|
||||||
|
else if (arg === "--json") result.json = true;
|
||||||
else if (!result.action && !arg.startsWith("-")) result.action = arg;
|
else if (!result.action && !arg.startsWith("-")) result.action = arg;
|
||||||
else if (["--capability", "--source", "--home"].includes(arg)) {
|
else if (["--capability", "--source", "--home"].includes(arg)) {
|
||||||
const value = argv[++index];
|
const value = argv[++index];
|
||||||
@@ -101,6 +144,7 @@ function parseArgs(argv) {
|
|||||||
} else throw bootstrapError(`Unknown option: ${arg}`, "BOOTSTRAP_USAGE");
|
} else throw bootstrapError(`Unknown option: ${arg}`, "BOOTSTRAP_USAGE");
|
||||||
}
|
}
|
||||||
if (result.help) return result;
|
if (result.help) return result;
|
||||||
|
if (result.action === "preview" && result.yes) throw bootstrapError("preview cannot be combined with --yes", "BOOTSTRAP_USAGE");
|
||||||
if (!result.capabilities.length) throw bootstrapError("At least one --capability is required", "BOOTSTRAP_USAGE");
|
if (!result.capabilities.length) throw bootstrapError("At least one --capability is required", "BOOTSTRAP_USAGE");
|
||||||
result.capabilities = [...new Set(result.capabilities)].sort();
|
result.capabilities = [...new Set(result.capabilities)].sort();
|
||||||
for (const capability of result.capabilities) {
|
for (const capability of result.capabilities) {
|
||||||
@@ -122,25 +166,138 @@ function parseArgs(argv) {
|
|||||||
|
|
||||||
function validateManifest(manifest, target) {
|
function validateManifest(manifest, target) {
|
||||||
if (manifest?.schemaVersion !== BOOTSTRAP_SCHEMA_VERSION || manifest?.version !== BOOTSTRAP_RUNTIME_VERSION ||
|
if (manifest?.schemaVersion !== BOOTSTRAP_SCHEMA_VERSION || manifest?.version !== BOOTSTRAP_RUNTIME_VERSION ||
|
||||||
manifest?.skillApi !== "2.0" || typeof manifest?.artifacts !== "object") {
|
manifest?.skillApi !== "2.0" || typeof manifest?.targets !== "object" ||
|
||||||
|
!sameGraph(manifest.capabilityComponents, CAPABILITY_COMPONENTS) ||
|
||||||
|
!sameGraph(manifest.componentDependencies, COMPONENT_DEPENDENCIES)) {
|
||||||
throw bootstrapError("Official runtime manifest is incompatible", "BOOTSTRAP_MANIFEST_INVALID");
|
throw bootstrapError("Official runtime manifest is incompatible", "BOOTSTRAP_MANIFEST_INVALID");
|
||||||
}
|
}
|
||||||
const artifact = manifest.artifacts[target];
|
const targetRecord = manifest.targets[target];
|
||||||
if (!artifact || artifact.format !== "tar.gz" || !/^[a-f0-9]{64}$/.test(artifact.sha256) ||
|
const expected = Object.keys(COMPONENT_DEPENDENCIES)
|
||||||
!Number.isSafeInteger(artifact.bytes) || artifact.bytes < 1 || artifact.bytes > 2 * 1024 * 1024 * 1024) {
|
.filter((component) => component !== "ios" || target.startsWith("darwin-"))
|
||||||
|
.sort();
|
||||||
|
if (!targetRecord || typeof targetRecord.components !== "object" ||
|
||||||
|
JSON.stringify(Object.keys(targetRecord.components).sort()) !== JSON.stringify(expected)) {
|
||||||
throw bootstrapError(`No valid official runtime artifact for ${target}`, "BOOTSTRAP_ARTIFACT_UNAVAILABLE");
|
throw bootstrapError(`No valid official runtime artifact for ${target}`, "BOOTSTRAP_ARTIFACT_UNAVAILABLE");
|
||||||
}
|
}
|
||||||
assertOfficialReleaseAssetUrl(artifact.url);
|
for (const [component, artifact] of Object.entries(targetRecord.components)) {
|
||||||
if (artifact.cosignBundleUrl) {
|
if (!artifact || artifact.format !== "tar.gz" || !/^[a-f0-9]{64}$/.test(artifact.sha256) ||
|
||||||
assertOfficialReleaseAssetUrl(artifact.cosignBundleUrl);
|
!Number.isSafeInteger(artifact.bytes) || artifact.bytes < 1 || artifact.bytes > 2 * 1024 * 1024 * 1024) {
|
||||||
if (artifact.certificateIdentity !== OFFICIAL_CERTIFICATE_IDENTITY ||
|
throw bootstrapError(`Invalid ${component} artifact for ${target}`, "BOOTSTRAP_ARTIFACT_UNAVAILABLE");
|
||||||
artifact.certificateOidcIssuer !== GITHUB_OIDC_ISSUER) {
|
}
|
||||||
throw bootstrapError("Cosign metadata does not bind the official GStack release workflow", "BOOTSTRAP_MANIFEST_INVALID");
|
assertOfficialReleaseAssetUrl(artifact.url);
|
||||||
|
if (artifact.cosignBundleUrl) {
|
||||||
|
assertOfficialReleaseAssetUrl(artifact.cosignBundleUrl);
|
||||||
|
if (artifact.certificateIdentity !== OFFICIAL_CERTIFICATE_IDENTITY ||
|
||||||
|
artifact.certificateOidcIssuer !== GITHUB_OIDC_ISSUER) {
|
||||||
|
throw bootstrapError("Cosign metadata does not bind the official GStack release workflow", "BOOTSTRAP_MANIFEST_INVALID");
|
||||||
|
}
|
||||||
|
} else if (artifact.certificateIdentity || artifact.certificateOidcIssuer) {
|
||||||
|
throw bootstrapError("Cosign certificate metadata requires a bundle URL", "BOOTSTRAP_MANIFEST_INVALID");
|
||||||
}
|
}
|
||||||
} else if (artifact.certificateIdentity || artifact.certificateOidcIssuer) {
|
|
||||||
throw bootstrapError("Cosign certificate metadata requires a bundle URL", "BOOTSTRAP_MANIFEST_INVALID");
|
|
||||||
}
|
}
|
||||||
return artifact;
|
return targetRecord;
|
||||||
|
}
|
||||||
|
|
||||||
|
function sameGraph(actual, expected) {
|
||||||
|
if (!actual || typeof actual !== "object" || Array.isArray(actual)) return false;
|
||||||
|
const normalize = (graph) => Object.fromEntries(Object.entries(graph)
|
||||||
|
.sort(([left], [right]) => left.localeCompare(right))
|
||||||
|
.map(([key, values]) => [key, Array.isArray(values) ? [...values].sort() : values]));
|
||||||
|
return JSON.stringify(normalize(actual)) === JSON.stringify(normalize(expected));
|
||||||
|
}
|
||||||
|
|
||||||
|
function selectedComponents(capabilities) {
|
||||||
|
const selected = new Set(["core"]);
|
||||||
|
for (const capability of capabilities) {
|
||||||
|
for (const component of CAPABILITY_COMPONENTS[capability] ?? []) selected.add(component);
|
||||||
|
}
|
||||||
|
const pending = [...selected];
|
||||||
|
while (pending.length) {
|
||||||
|
for (const dependency of COMPONENT_DEPENDENCIES[pending.pop()] ?? []) {
|
||||||
|
if (!selected.has(dependency)) {
|
||||||
|
selected.add(dependency);
|
||||||
|
pending.push(dependency);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return [...selected].sort();
|
||||||
|
}
|
||||||
|
|
||||||
|
function buildComponentPlan(manifest, target, capabilities, reusable) {
|
||||||
|
const components = selectedComponents(capabilities);
|
||||||
|
const retained = new Set(reusable?.components ?? []);
|
||||||
|
const downloads = components
|
||||||
|
.filter((component) => !retained.has(component))
|
||||||
|
.map((component) => ({ component, artifact: manifest.targets[target].components[component] }));
|
||||||
|
const downloadBytes = downloads.reduce((total, item) => total + item.artifact.bytes, 0);
|
||||||
|
return {
|
||||||
|
target,
|
||||||
|
version: manifest.version,
|
||||||
|
capabilities,
|
||||||
|
components,
|
||||||
|
reusedComponents: components.filter((component) => retained.has(component)),
|
||||||
|
downloads,
|
||||||
|
downloadBytes,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function printComponentPlan(stdout, plan) {
|
||||||
|
stdout.write(`GStack optional runtime ${plan.version} for ${plan.target}\n`);
|
||||||
|
stdout.write(`Capabilities: ${plan.capabilities.join(", ")}\n`);
|
||||||
|
stdout.write(`Components: ${plan.components.join(", ")}\n`);
|
||||||
|
if (plan.reusedComponents.length) stdout.write(`Reusing: ${plan.reusedComponents.join(", ")}\n`);
|
||||||
|
stdout.write(`Download: ${plan.downloadBytes} bytes across ${plan.downloads.length} component(s)\n`);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function inspectReusableRuntime(home, version) {
|
||||||
|
const versions = path.join(home, "versions");
|
||||||
|
const pointer = JSON.parse(await fs.readFile(path.join(versions, "current.json"), "utf8"));
|
||||||
|
if (pointer?.schemaVersion !== 2 || pointer?.status !== "active" ||
|
||||||
|
typeof pointer.current !== "string" || !/^[A-Za-z0-9._-]{1,128}$/.test(pointer.current)) return null;
|
||||||
|
const root = path.join(versions, pointer.current);
|
||||||
|
const stat = await fs.lstat(root);
|
||||||
|
if (!stat.isDirectory() || stat.isSymbolicLink()) return null;
|
||||||
|
const bundle = JSON.parse(await fs.readFile(path.join(root, ".gstack-bundle.json"), "utf8"));
|
||||||
|
if (bundle?.schemaVersion !== 2 || bundle?.version !== version || !Array.isArray(bundle.runtimeComponents) ||
|
||||||
|
!Array.isArray(bundle.files)) return null;
|
||||||
|
const components = [...new Set(bundle.runtimeComponents)];
|
||||||
|
if (!components.length || components.some((component) => !Object.hasOwn(COMPONENT_DEPENDENCIES, component))) return null;
|
||||||
|
await assertNoLinks(root);
|
||||||
|
const files = [];
|
||||||
|
const seen = new Set();
|
||||||
|
for (const entry of bundle.files) {
|
||||||
|
const relative = entry?.path;
|
||||||
|
if (typeof relative !== "string" || !relative || relative.includes("\\") || path.posix.isAbsolute(relative) ||
|
||||||
|
path.posix.normalize(relative) !== relative || relative.split("/").includes("..") || seen.has(relative) ||
|
||||||
|
!Number.isSafeInteger(entry.size) || entry.size < 0 || !/^[a-f0-9]{64}$/.test(entry.sha256)) return null;
|
||||||
|
seen.add(relative);
|
||||||
|
const file = path.join(root, ...relative.split("/"));
|
||||||
|
const fileStat = await fs.lstat(file).catch(() => null);
|
||||||
|
if (!fileStat?.isFile() || fileStat.isSymbolicLink() || fileStat.size !== entry.size ||
|
||||||
|
await sha256File(file) !== entry.sha256) return null;
|
||||||
|
files.push(relative);
|
||||||
|
}
|
||||||
|
return { root, components, files };
|
||||||
|
}
|
||||||
|
|
||||||
|
async function seedReusableRuntime(reusable, destination, claimedFiles) {
|
||||||
|
for (const relative of reusable.files) {
|
||||||
|
if (claimedFiles.has(relative)) throw bootstrapError(`Runtime components overlap at ${relative}`, "BOOTSTRAP_MANIFEST_INVALID");
|
||||||
|
claimedFiles.add(relative);
|
||||||
|
const target = path.join(destination, ...relative.split("/"));
|
||||||
|
await fs.mkdir(path.dirname(target), { recursive: true, mode: 0o700 });
|
||||||
|
await fs.copyFile(path.join(reusable.root, ...relative.split("/")), target, fsConstants.COPYFILE_EXCL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function sha256File(file) {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
const hash = createHash("sha256");
|
||||||
|
const stream = createReadStream(file);
|
||||||
|
stream.on("error", reject);
|
||||||
|
stream.on("data", (chunk) => hash.update(chunk));
|
||||||
|
stream.on("end", () => resolve(hash.digest("hex")));
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function fetchJson(fetch_, url) {
|
async function fetchJson(fetch_, url) {
|
||||||
@@ -277,6 +434,31 @@ function safeArtifactRoot(extracted, relative) {
|
|||||||
return target;
|
return target;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function mergeComponentRoot(source, destination, claimedFiles, component) {
|
||||||
|
async function visit(relative = "") {
|
||||||
|
for (const entry of await fs.readdir(path.join(source, relative), { withFileTypes: true })) {
|
||||||
|
const child = relative ? `${relative}/${entry.name}` : entry.name;
|
||||||
|
const from = path.join(source, ...child.split("/"));
|
||||||
|
const to = path.join(destination, ...child.split("/"));
|
||||||
|
if (entry.isSymbolicLink() || (!entry.isDirectory() && !entry.isFile())) {
|
||||||
|
throw bootstrapError(`Runtime component ${component} contains a link or special file`, "BOOTSTRAP_ARCHIVE_UNSAFE");
|
||||||
|
}
|
||||||
|
if (entry.isDirectory()) {
|
||||||
|
await fs.mkdir(to, { recursive: true, mode: 0o700 });
|
||||||
|
await visit(child);
|
||||||
|
} else {
|
||||||
|
if (claimedFiles.has(child)) {
|
||||||
|
throw bootstrapError(`Runtime components overlap at ${child}`, "BOOTSTRAP_MANIFEST_INVALID");
|
||||||
|
}
|
||||||
|
claimedFiles.add(child);
|
||||||
|
await fs.mkdir(path.dirname(to), { recursive: true, mode: 0o700 });
|
||||||
|
await fs.copyFile(from, to, fsConstants.COPYFILE_EXCL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
await visit();
|
||||||
|
}
|
||||||
|
|
||||||
async function assertNoLinks(root) {
|
async function assertNoLinks(root) {
|
||||||
const pending = [root];
|
const pending = [root];
|
||||||
while (pending.length) {
|
while (pending.length) {
|
||||||
|
|||||||
@@ -0,0 +1,188 @@
|
|||||||
|
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
||||||
|
# Browser provider setup and readiness
|
||||||
|
|
||||||
|
Browser setup is optional and consented. The Agent Skills installer owns skill placement; this flow never enrolls another host. At onboarding, offer this flow only when the user asks to configure browser capabilities now. Otherwise run it just in time when a selected workflow first needs interactive browser evidence.
|
||||||
|
|
||||||
|
## Routing flow
|
||||||
|
|
||||||
|
1. Identify the active host and provider from callable tools in the current session, not from unrelated installed binaries, parent-application environment variables, documentation, or guessed host names. Inherited `CODEX_*`, bundle identifiers, and similar process metadata never override the actual agent/tool surface.
|
||||||
|
2. Show the detected provider, what user-controlled setup it requires, and the GStack local-browser fallback.
|
||||||
|
3. Ask whether to use the host-native provider, set up GStack local browser, continue without browser evidence, or defer. A selection is not permission to install another product or attach private browser state.
|
||||||
|
4. For a host-native selection, follow the matching provider section below. Never install an extension, grant site access, sign in, add an MCP server, attach an existing profile, or change host settings without the user's explicit action.
|
||||||
|
5. After setup, run the common readiness journey. Tool names or metadata alone are insufficient evidence.
|
||||||
|
6. If the journey fails, report `needs-user-action`, `unavailable`, or `failed` with the exact observed cause and offer the local GStack browser. Do not silently fall back.
|
||||||
|
|
||||||
|
## Provider states
|
||||||
|
|
||||||
|
- `available`: the current session exposes callable navigation, reading, and interaction tools, but readiness has not yet been proven.
|
||||||
|
- `needs-user-action`: the host has a documented provider, but the user must enable, open, approve, or connect it.
|
||||||
|
- `ready`: the selected provider passed the common local readiness journey in this session.
|
||||||
|
- `unavailable`: no suitable interactive tool is exposed in the current session.
|
||||||
|
- `failed`: a callable provider attempted the readiness journey and failed; include the exact failing step.
|
||||||
|
|
||||||
|
Never report `ready` merely because a browser binary, CLI, plugin, extension, MCP name, settings entry, or documentation exists. Present one provider decision, then continue through the selected path. Do not run `./setup`; it is not a GStack 2 browser setup command.
|
||||||
|
|
||||||
|
## Common local readiness journey
|
||||||
|
|
||||||
|
Start the dependency-free fixture from this skill root with:
|
||||||
|
|
||||||
|
`node references/support/browser-provider-smoke.mjs`
|
||||||
|
|
||||||
|
The process prints one JSON line containing a loopback URL and remains alive. Through the selected browser provider:
|
||||||
|
|
||||||
|
1. Open that exact URL.
|
||||||
|
2. Verify the heading `GStack browser readiness`.
|
||||||
|
3. Click `Complete readiness check`.
|
||||||
|
4. Verify the page status becomes `READY`.
|
||||||
|
5. When supported, confirm the console message `gstack-browser-readiness:ready` and the successful `POST /proof` request.
|
||||||
|
6. Stop the fixture process and confirm it releases its listener.
|
||||||
|
|
||||||
|
Mark the provider `ready` only after navigation, page reading, and interaction all succeed. The fixture binds to `127.0.0.1`, uses a per-run random token, sends no repository data, and does not persist cookies or credentials.
|
||||||
|
|
||||||
|
## Claude in Chrome
|
||||||
|
|
||||||
|
Classification: `native-extension`
|
||||||
|
|
||||||
|
Setup:
|
||||||
|
|
||||||
|
1. Explain that Claude in Chrome requires Google Chrome, a paid Claude plan, the user-installed extension, the same signed-in Claude account, granted site permissions, and an enabled connector.
|
||||||
|
2. Ask whether the user wants to configure it now. Never install the extension, grant permissions, enable a connector, sign in, or attach a Chrome profile for them.
|
||||||
|
3. After the user completes setup, retry the active host tab/context discovery rather than treating the presence of the Claude CLI as browser readiness.
|
||||||
|
|
||||||
|
Readiness evidence:
|
||||||
|
|
||||||
|
- The Claude in Chrome tool surface is visible to the active Claude Code session.
|
||||||
|
- Tab/context discovery returns an attached browser peer instead of a missing-extension or no-peer error.
|
||||||
|
- The common local readiness journey completes through the Claude browser tools.
|
||||||
|
|
||||||
|
If unavailable: Offer GStack local browser or continue without browser evidence; do not substitute a different extension or remote browser.
|
||||||
|
|
||||||
|
## Codex built-in browser
|
||||||
|
|
||||||
|
Classification: `native-in-app`
|
||||||
|
|
||||||
|
Setup:
|
||||||
|
|
||||||
|
1. Explain that the built-in browser is a ChatGPT desktop-app surface on macOS and Windows and uses its own browser state.
|
||||||
|
2. Ask the user to open it from the Work/Codex toolbar (Command-Shift-B on macOS or Control-Shift-B on Windows) and approve the test site when prompted.
|
||||||
|
3. Do not infer readiness from the Codex CLI or skill installation; the active session must expose an in-app browser provider.
|
||||||
|
|
||||||
|
Readiness evidence:
|
||||||
|
|
||||||
|
- Active browser discovery returns the in-app browser provider instead of an empty provider list.
|
||||||
|
- A tab can be created or selected after the user opens the browser surface.
|
||||||
|
- The common local readiness journey completes through the Codex browser tools.
|
||||||
|
|
||||||
|
If unavailable: Offer GStack local browser or defer browser work; do not claim that restarting a browser-less session will create the missing host capability.
|
||||||
|
|
||||||
|
## Gemini CLI browser agent
|
||||||
|
|
||||||
|
Classification: `native-agent`
|
||||||
|
|
||||||
|
Setup:
|
||||||
|
|
||||||
|
1. Explain that Gemini CLI has an experimental bundled `browser_agent`, disabled by default, which requires a recent local Chrome and displays a first-run consent dialog.
|
||||||
|
2. Ask whether the user wants to enable it themselves. Never edit Gemini settings, accept its consent dialog, attach an existing Chrome session, or infer readiness from the Gemini executable.
|
||||||
|
3. Prefer Gemini isolated browser mode for public or localhost QA unless the user explicitly needs and approves an existing signed-in browser session.
|
||||||
|
|
||||||
|
Readiness evidence:
|
||||||
|
|
||||||
|
- The active Gemini session exposes the callable `browser_agent` tool rather than only `google_web_search` or `web_fetch`.
|
||||||
|
- The user has completed Gemini's own enablement and one-time consent without GStack acting on their behalf.
|
||||||
|
- The common local readiness journey completes through the Gemini browser agent.
|
||||||
|
|
||||||
|
If unavailable: Offer the consented GStack local browser, evidence-limited fetch/search, or deferral; do not install a browser MCP because Gemini already bundles its experimental browser agent.
|
||||||
|
|
||||||
|
## Cursor interactive browser provider
|
||||||
|
|
||||||
|
Classification: `native-mcp`
|
||||||
|
|
||||||
|
Setup:
|
||||||
|
|
||||||
|
1. Inspect the active Cursor tool surface for an interactive provider such as Chrome DevTools; Cursor CLI presence and parent-process environment variables are not provider evidence.
|
||||||
|
2. If an interactive provider is exposed, explain its current session/profile boundary and ask whether to use it. Never add or approve an MCP server, extension, or browser profile for the user.
|
||||||
|
3. If no interactive provider is exposed in this Cursor session, offer GStack local browser rather than assuming every Cursor installation has the same browser tools.
|
||||||
|
|
||||||
|
Readiness evidence:
|
||||||
|
|
||||||
|
- The active Cursor session exposes callable navigation, page-reading, and interaction tools and returns a live browser peer.
|
||||||
|
- The selected browser session does not require silently attaching the user's personal profile.
|
||||||
|
- The common local readiness journey completes through the discovered Cursor provider.
|
||||||
|
|
||||||
|
If unavailable: Offer GStack local browser, evidence-limited web access, or deferral; do not turn one machine's configured Chrome DevTools MCP into a universal Cursor capability claim.
|
||||||
|
|
||||||
|
## GitHub Copilot and VS Code integrated browser
|
||||||
|
|
||||||
|
Classification: `native-in-app`
|
||||||
|
|
||||||
|
Setup:
|
||||||
|
|
||||||
|
1. Explain that current VS Code can expose built-in browser agent tools, subject to the `workbench.browser.enableChatTools` organization setting and the user's active tool selection.
|
||||||
|
2. Ask the user to enable the Built-in > Browser tools in the active agent session when they want to use them. Never change VS Code or organization settings for them.
|
||||||
|
3. Prefer an agent-created isolated browser page; sharing an existing browser page or its signed-in state requires the user's explicit action.
|
||||||
|
|
||||||
|
Readiness evidence:
|
||||||
|
|
||||||
|
- The active Copilot/VS Code agent session exposes callable browser tools such as page navigation, reading, screenshot, and interaction.
|
||||||
|
- An isolated browser page can be opened without silently sharing an existing tab or cookie store.
|
||||||
|
- The common local readiness journey completes through the VS Code integrated browser tools.
|
||||||
|
|
||||||
|
If unavailable: Offer GStack local browser or defer; distinguish organization-policy disablement from a transient missing browser tab.
|
||||||
|
|
||||||
|
## OpenClaw browser plugin
|
||||||
|
|
||||||
|
Classification: `native-plugin`
|
||||||
|
|
||||||
|
Setup:
|
||||||
|
|
||||||
|
1. Explain that OpenClaw includes a browser plugin with a dedicated managed profile, while its `user` profile can attach to an existing browser session.
|
||||||
|
2. Inspect the active OpenClaw tool policy for the callable browser tool. Never edit `plugins.allow`, enable the plugin, or attach the `user` profile without explicit user action.
|
||||||
|
3. Prefer the isolated managed profile for public and localhost QA; use an existing signed-in profile only when the user explicitly selects it.
|
||||||
|
|
||||||
|
Readiness evidence:
|
||||||
|
|
||||||
|
- The active OpenClaw agent exposes the browser tool after its plugin and tool-policy checks.
|
||||||
|
- Browser doctor/status and tab discovery succeed for the explicitly selected profile.
|
||||||
|
- The common local readiness journey completes through OpenClaw browser actions.
|
||||||
|
|
||||||
|
If unavailable: Offer GStack local browser or defer; do not silently repair OpenClaw plugin policy or attach a personal browser profile.
|
||||||
|
|
||||||
|
## Kimi Code
|
||||||
|
|
||||||
|
Classification: `no-native-automation`
|
||||||
|
|
||||||
|
Setup:
|
||||||
|
|
||||||
|
1. Explain that Kimi Code loads standard Agent Skills and provides WebSearch/FetchURL when configured, but does not currently document a native interactive browser-automation harness.
|
||||||
|
2. Do not describe `kimi web` as browser automation: it is the browser-based user interface for the Kimi session.
|
||||||
|
3. Offer GStack local browser when interactive navigation, clicking, screenshots, console, or network evidence is required.
|
||||||
|
|
||||||
|
Readiness evidence:
|
||||||
|
|
||||||
|
- Kimi discovers the canonical GStack skills through its standard Agent Skills directories.
|
||||||
|
- Fetch/search-only work may use Kimi host tools when their limitations satisfy the task.
|
||||||
|
- Interactive browser readiness is tested against GStack local browser, not `kimi web`.
|
||||||
|
|
||||||
|
If unavailable: Continue with fetch/search-only evidence or offer the consented GStack local browser; never silently add a browser MCP or alternate backend.
|
||||||
|
|
||||||
|
## Pi coding agent
|
||||||
|
|
||||||
|
Classification: `extension-only`
|
||||||
|
|
||||||
|
Setup:
|
||||||
|
|
||||||
|
1. Explain that Pi intentionally has no core interactive browser tool; browser automation is available only through optional third-party packages or an already exposed host tool.
|
||||||
|
2. Inspect the active Pi tool surface. Never install a Pi package, run its browser installer, or treat a package listing as a live browser peer.
|
||||||
|
3. Offer GStack local browser when no already-configured interactive provider is callable.
|
||||||
|
|
||||||
|
Readiness evidence:
|
||||||
|
|
||||||
|
- An explicitly user-installed Pi browser extension exposes a callable browser tool in the active session.
|
||||||
|
- The extension returns a live isolated session without triggering an unapproved Chromium download or profile attachment.
|
||||||
|
- The common local readiness journey completes through that active tool.
|
||||||
|
|
||||||
|
If unavailable: Offer GStack local browser, evidence-limited continuation, or deferral; never recommend or install a third-party Pi browser package automatically.
|
||||||
|
|
||||||
|
## GStack local browser fallback
|
||||||
|
|
||||||
|
GStack's existing local Chromium/Playwright implementation remains the only bundled browser backend. Follow `RUNTIME.md` for preview and separate install consent, run `gstack doctor`, then run the same readiness journey with the `browse` launcher. Do not run `./setup`, add a cloud browser, remote provider, alternate local backend, or personal-profile attachment as a fallback.
|
||||||
@@ -3,14 +3,22 @@
|
|||||||
|
|
||||||
The six Agent Skills are useful without a GStack runtime. Never install, download, build, select, update, or remove runtime capabilities merely because a skill was invoked.
|
The six Agent Skills are useful without a GStack runtime. Never install, download, build, select, update, or remove runtime capabilities merely because a skill was invoked.
|
||||||
|
|
||||||
When an active specialist first reaches a capability it cannot use, name the exact capability and why it is needed. Offer to continue without it when the judgment-only or host-native path remains valid. Installation requires the user's explicit approval after disclosing the selected capabilities, that an official versioned release artifact will be downloaded and SHA-256 verified, and any exact byte/build information available from the bootstrap manifest. Never call the bootstrap before approval.
|
Before interactive browser work, read `references/BROWSER-PROVIDERS.md` in full. It owns provider detection, consented host setup, the common readiness journey, and the explicit GStack fallback. Skill installation never proves browser readiness.
|
||||||
|
|
||||||
Capability names are `browser`, `design`, `pdf`, `diagram`, and `ios`; the core state/runtime CLI is managed separately. After approval, from this skill root run `node references/support/runtime-bootstrap.mjs install --capability <name>` (repeat `--capability` for additional approved capabilities). The dependency-free Node 18+ bootstrap accepts only official GStack GitHub Release hosts, validates the fixed manifest schema/version/skill API/platform artifact and SHA-256, verifies a declared Cosign bundle when Cosign is available, rejects unsafe archive paths/links, and invokes the atomic managed installer. Never run `./setup` inside a standard-installed skill directory, enroll a host, or treat skill installation as runtime consent.
|
When an active specialist first reaches a capability it cannot use, name the exact capability and why it is needed. Offer to continue without it when the judgment-only or host-native path remains valid. Before any network preview, ask whether the user wants to check official setup options and exact sizes. Disclose that an uncached preview makes one public GitHub request for signed manifest metadata and sends no repository content, private URL, file, cookie, token, or credential; then STOP. A cached already-verified manifest may preview offline, but never silently fetch.
|
||||||
|
|
||||||
Resolve capability dependencies before preview and approval: `diagram` implies `browser`; `pdf` implies both `diagram` and `browser` transitively. `design` and `ios` are standalone. The disclosure and approval must name the complete expanded set, not only the capability first requested.
|
Only after the user approves that metadata check, run the non-mutating preview from this skill root: `node references/support/runtime-bootstrap.mjs preview --capability <name>` (repeat `--capability` for additional requested capabilities). It dependency-expands, reports already verified local components, exact missing components, and their summed compressed bytes. It never downloads components or mutates runtime state. Preview consent is not install consent.
|
||||||
|
|
||||||
After doctor confirms readiness, canonical launcher bindings are `GSTACK_HOME=${GSTACK_HOME:-$HOME/.gstack}`, `GSTACK_BIN=$GSTACK_HOME/bin`, `B=$GSTACK_BIN/browse`, `D=$GSTACK_BIN/gstack-design`, and `P=$GSTACK_BIN/make-pdf`. Specialist modules may bind only the launchers they use. These assignments do not install or grant consent.
|
User-facing setup capabilities are exactly `browser`, `design`, `diagram`, `pdf`, and `ios`. `all` means those five and intentionally excludes visible Chromium. The internal `browser-visible` capability is additive and is offered only when a workflow actually reaches a headed browser, extension, or browser-handoff step. Never offer it during ordinary headless QA.
|
||||||
|
|
||||||
|
After showing the complete preview, STOP for explicit approval. Only after approval run `node references/support/runtime-bootstrap.mjs install --capability <name> --yes`; install must reprint the identical dependency-closed plan before downloading. Signed internal components are `core`, `browser-code` (browse code and dependencies), `browser-headless` (Playwright headless shell and FFmpeg), `browser-visible` (full Chromium), `design`, `diagram`, `pdf`, and `ios`. Logical `browser` expands to `browser-code + browser-headless`; internal `browser-visible` expands to `browser-code + browser-visible` and does not require headless. Component dependencies are `browser-code → core`, `browser-headless → browser-code`, and `browser-visible → browser-code`. `diagram` depends on logical `browser`; `pdf` depends on `diagram`; `ios` is Darwin-only. Therefore a first-time headed flow previews `core + browser-code + browser-visible`, while an existing verified headless runtime downloads only missing `browser-visible`. The manifest schema is v2 with global `capabilityComponents` and `componentDependencies`, plus `targets[target].components[id]` carrying signed exact-byte artifacts.
|
||||||
|
|
||||||
|
The dependency-free Node 18+ bootstrap accepts only official GStack GitHub Release hosts, validates manifest/runtime/skill API/platform/component metadata and SHA-256, verifies a declared Cosign bundle when Cosign is available, rejects unsafe archive paths/links, and invokes the atomic managed installer. Never run `./setup` inside a standard-installed skill directory, enroll a host, or treat skill installation as runtime consent.
|
||||||
|
|
||||||
|
After doctor confirms readiness, canonical launcher bindings are `GSTACK_HOME=${GSTACK_HOME:-$HOME/.gstack}`, `GSTACK_BIN=$GSTACK_HOME/bin`, `BUN_CMD=$GSTACK_BIN/bun`, `B=$GSTACK_BIN/browse`, `D=$GSTACK_BIN/gstack-design`, and `P=$GSTACK_BIN/make-pdf`. Specialist modules may bind only the launchers they use. These assignments do not install or grant consent. Never download or install a second Bun for GStack helpers; the managed runtime owns its pinned Bun executable in the active slot.
|
||||||
|
|
||||||
|
Some retained helpers are shell scripts. `gstack doctor` verifies Bash and, on Windows, discovers Git for Windows Bash; disclose and stop at the affected helper if that prerequisite is unavailable. Python is not a global GStack prerequisite: only a specialist flow explicitly labeled as Python-dependent may request it, at the point of use and with the user's approval.
|
||||||
|
|
||||||
The package/runtime compatibility tuple is `schemaVersion=1`, `runtimeVersion=2.0.0`, and `skillApi=2.0`; the machine-readable copy is `references/support/runtime-contract.json`. An incompatible active runtime is unavailable, not permission to upgrade it.
|
The package/runtime compatibility tuple is `schemaVersion=1`, `runtimeVersion=2.0.0`, and `skillApi=2.0`; the machine-readable copy is `references/support/runtime-contract.json`. An incompatible active runtime is unavailable, not permission to upgrade it.
|
||||||
|
|
||||||
The developer-only fallback is `node references/support/runtime-bootstrap.mjs install --source <reviewed-checkout> --capability <name>`; show its trust warning and use it only when the user explicitly selects a checkout they reviewed. If the packaged bootstrap is unavailable, stop capability setup instead of guessing a checkout-relative command. Deferring installation records no consent and must not block pure judgment.
|
The developer-only fallback is `node references/support/runtime-bootstrap.mjs install --source <reviewed-checkout> --capability <name> --yes`; show its trust warning and use it only when the user explicitly selects a checkout they reviewed. If the packaged bootstrap is unavailable, stop capability setup instead of guessing a checkout-relative command. Deferring installation records no consent and must not block pure judgment.
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
||||||
<!-- GSTACK2_PROVENANCE source=design-consultation/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=64af56ecdbd132cb7c28344e8e4ecb2e5dacf811 baseline_render_sha256=62b8141e0b3edb26dcfd175c25c7021d4713b64add121137ace0a123e6e6ea8a ported_render_sha256=afa1f2b58d22d9f0f9064336ce7e9836430a298e1deb56f5330390f91df3f680 disposition=BUG_FIX -->
|
<!-- GSTACK2_PROVENANCE source=design-consultation/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=64af56ecdbd132cb7c28344e8e4ecb2e5dacf811 baseline_render_sha256=62b8141e0b3edb26dcfd175c25c7021d4713b64add121137ace0a123e6e6ea8a ported_render_sha256=d323457820291635bc4c46e4559ce6f4d194b940607b76208e95df0c86ffcb0b disposition=BUG_FIX -->
|
||||||
<!-- GSTACK2_ROUTING replacement=$design --mode Generate --module design-consultation visibility=primary depth=deep mutation=design-artifacts web=optional -->
|
<!-- GSTACK2_ROUTING replacement=$design --mode Generate --module design-consultation visibility=primary depth=deep mutation=design-artifacts web=optional -->
|
||||||
|
|
||||||
<!-- GSTACK2_LEGACY_BODY_START source=design-consultation -->
|
<!-- GSTACK2_LEGACY_BODY_START source=design-consultation -->
|
||||||
@@ -12,6 +12,7 @@ GSTACK_HOME="${GSTACK_HOME:-$HOME/.gstack}"
|
|||||||
GSTACK_ROOT="$GSTACK_HOME"
|
GSTACK_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_BIN="$GSTACK_HOME/bin"
|
GSTACK_BIN="$GSTACK_HOME/bin"
|
||||||
|
BUN_CMD="$GSTACK_BIN/bun"
|
||||||
B="$GSTACK_BIN/browse"
|
B="$GSTACK_BIN/browse"
|
||||||
D="$GSTACK_BIN/gstack-design"
|
D="$GSTACK_BIN/gstack-design"
|
||||||
P="$GSTACK_BIN/make-pdf"
|
P="$GSTACK_BIN/make-pdf"
|
||||||
@@ -73,26 +74,9 @@ fi
|
|||||||
```
|
```
|
||||||
|
|
||||||
If `NEEDS_SETUP`:
|
If `NEEDS_SETUP`:
|
||||||
1. Tell the user: "gstack browse needs a one-time build (~10 seconds). OK to proceed?" Then STOP and wait.
|
1. Tell the user: "The optional managed headless browser capability is missing. Do you want to preview its exact dependency-closed component plan and compressed bytes now?" Then STOP and wait.
|
||||||
2. Read `references/RUNTIME.md` and follow its explicit capability bootstrap. Never assume a standard-installed skill directory contains `./setup`.
|
2. Read `references/RUNTIME.md` and follow its explicit capability bootstrap. Never assume a standard-installed skill directory contains `./setup`.
|
||||||
3. If `bun` is not installed:
|
3. The approved managed runtime includes its own pinned Bun at `$GSTACK_BIN/bun`; never download or install another Bun from a skill workflow.
|
||||||
```bash
|
|
||||||
if ! command -v bun >/dev/null 2>&1; then
|
|
||||||
BUN_VERSION="1.3.10"
|
|
||||||
BUN_INSTALL_SHA="bab8acfb046aac8c72407bdcce903957665d655d7acaa3e11c7c4616beae68dd"
|
|
||||||
tmpfile=$(mktemp)
|
|
||||||
curl -fsSL "https://bun.sh/install" -o "$tmpfile"
|
|
||||||
actual_sha=$(shasum -a 256 "$tmpfile" | awk '{print $1}')
|
|
||||||
if [ "$actual_sha" != "$BUN_INSTALL_SHA" ]; then
|
|
||||||
echo "ERROR: bun install script checksum mismatch" >&2
|
|
||||||
echo " expected: $BUN_INSTALL_SHA" >&2
|
|
||||||
echo " got: $actual_sha" >&2
|
|
||||||
rm "$tmpfile"; exit 1
|
|
||||||
fi
|
|
||||||
BUN_VERSION="$BUN_VERSION" bash "$tmpfile"
|
|
||||||
rm "$tmpfile"
|
|
||||||
fi
|
|
||||||
```
|
|
||||||
|
|
||||||
If browse is not available, that's fine — visual research is optional. The skill works without it using WebSearch and your built-in design knowledge.
|
If browse is not available, that's fine — visual research is optional. The skill works without it using WebSearch and your built-in design knowledge.
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
||||||
<!-- GSTACK2_PROVENANCE source=design-html/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=3cdec9a14d62d2e046ed924c972efc30a7d43aca baseline_render_sha256=d16ec32f4c07da49d32efc309e621b514854ce355db8347647b9f9fc215ff66d ported_render_sha256=cbb1b4357bedbb0fffe23c3e0ad31ee8c2a198a31443edb660e5c836e67e94e6 disposition=BUG_FIX -->
|
<!-- GSTACK2_PROVENANCE source=design-html/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=3cdec9a14d62d2e046ed924c972efc30a7d43aca baseline_render_sha256=d16ec32f4c07da49d32efc309e621b514854ce355db8347647b9f9fc215ff66d ported_render_sha256=40682d97ac83aa9178487348d5abf176334fd439e2d12f8e5cda1f8b20cd2c30 disposition=BUG_FIX -->
|
||||||
<!-- GSTACK2_ROUTING replacement=$design --mode Implement --module design-html visibility=primary depth=standard mutation=design-artifacts web=local-browser -->
|
<!-- GSTACK2_ROUTING replacement=$design --mode Implement --module design-html visibility=primary depth=standard mutation=design-artifacts web=local-browser -->
|
||||||
|
|
||||||
<!-- GSTACK2_LEGACY_BODY_START source=design-html -->
|
<!-- GSTACK2_LEGACY_BODY_START source=design-html -->
|
||||||
@@ -12,6 +12,7 @@ GSTACK_HOME="${GSTACK_HOME:-$HOME/.gstack}"
|
|||||||
GSTACK_ROOT="$GSTACK_HOME"
|
GSTACK_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_BIN="$GSTACK_HOME/bin"
|
GSTACK_BIN="$GSTACK_HOME/bin"
|
||||||
|
BUN_CMD="$GSTACK_BIN/bun"
|
||||||
B="$GSTACK_BIN/browse"
|
B="$GSTACK_BIN/browse"
|
||||||
D="$GSTACK_BIN/gstack-design"
|
D="$GSTACK_BIN/gstack-design"
|
||||||
P="$GSTACK_BIN/make-pdf"
|
P="$GSTACK_BIN/make-pdf"
|
||||||
@@ -166,26 +167,9 @@ fi
|
|||||||
```
|
```
|
||||||
|
|
||||||
If `NEEDS_SETUP`:
|
If `NEEDS_SETUP`:
|
||||||
1. Tell the user: "gstack browse needs a one-time build (~10 seconds). OK to proceed?" Then STOP and wait.
|
1. Tell the user: "The optional managed headless browser capability is missing. Do you want to preview its exact dependency-closed component plan and compressed bytes now?" Then STOP and wait.
|
||||||
2. Read `references/RUNTIME.md` and follow its explicit capability bootstrap. Never assume a standard-installed skill directory contains `./setup`.
|
2. Read `references/RUNTIME.md` and follow its explicit capability bootstrap. Never assume a standard-installed skill directory contains `./setup`.
|
||||||
3. If `bun` is not installed:
|
3. The approved managed runtime includes its own pinned Bun at `$GSTACK_BIN/bun`; never download or install another Bun from a skill workflow.
|
||||||
```bash
|
|
||||||
if ! command -v bun >/dev/null 2>&1; then
|
|
||||||
BUN_VERSION="1.3.10"
|
|
||||||
BUN_INSTALL_SHA="bab8acfb046aac8c72407bdcce903957665d655d7acaa3e11c7c4616beae68dd"
|
|
||||||
tmpfile=$(mktemp)
|
|
||||||
curl -fsSL "https://bun.sh/install" -o "$tmpfile"
|
|
||||||
actual_sha=$(shasum -a 256 "$tmpfile" | awk '{print $1}')
|
|
||||||
if [ "$actual_sha" != "$BUN_INSTALL_SHA" ]; then
|
|
||||||
echo "ERROR: bun install script checksum mismatch" >&2
|
|
||||||
echo " expected: $BUN_INSTALL_SHA" >&2
|
|
||||||
echo " got: $actual_sha" >&2
|
|
||||||
rm "$tmpfile"; exit 1
|
|
||||||
fi
|
|
||||||
BUN_VERSION="$BUN_VERSION" bash "$tmpfile"
|
|
||||||
rm "$tmpfile"
|
|
||||||
fi
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
||||||
<!-- GSTACK2_PROVENANCE source=design-review/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=bdcda48e29b489a1cc49faa333922412251d4b41 baseline_render_sha256=ff6d5d4858ed45db1e9581080739c0b4c5029bca44ecabe0c385637ece68e0cb ported_render_sha256=33584047a11aa46a1b6a2bef5bf97a4d0b443bb6c9542685732e7d4dff795a2e disposition=BUG_FIX -->
|
<!-- GSTACK2_PROVENANCE source=design-review/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=bdcda48e29b489a1cc49faa333922412251d4b41 baseline_render_sha256=ff6d5d4858ed45db1e9581080739c0b4c5029bca44ecabe0c385637ece68e0cb ported_render_sha256=fe15a4fae62fba41432ae18bbf4ef5620058b784b7bf9768304d0d1dd17bf45b disposition=BUG_FIX -->
|
||||||
<!-- GSTACK2_ROUTING replacement=$design --mode Implement --module design-review visibility=primary depth=deep mutation=fix-safe web=local-browser -->
|
<!-- GSTACK2_ROUTING replacement=$design --mode Implement --module design-review visibility=primary depth=deep mutation=fix-safe web=local-browser -->
|
||||||
|
|
||||||
<!-- GSTACK2_LEGACY_BODY_START source=design-review -->
|
<!-- GSTACK2_LEGACY_BODY_START source=design-review -->
|
||||||
@@ -12,6 +12,7 @@ GSTACK_HOME="${GSTACK_HOME:-$HOME/.gstack}"
|
|||||||
GSTACK_ROOT="$GSTACK_HOME"
|
GSTACK_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_BIN="$GSTACK_HOME/bin"
|
GSTACK_BIN="$GSTACK_HOME/bin"
|
||||||
|
BUN_CMD="$GSTACK_BIN/bun"
|
||||||
B="$GSTACK_BIN/browse"
|
B="$GSTACK_BIN/browse"
|
||||||
D="$GSTACK_BIN/gstack-design"
|
D="$GSTACK_BIN/gstack-design"
|
||||||
P="$GSTACK_BIN/make-pdf"
|
P="$GSTACK_BIN/make-pdf"
|
||||||
@@ -80,26 +81,9 @@ fi
|
|||||||
```
|
```
|
||||||
|
|
||||||
If `NEEDS_SETUP`:
|
If `NEEDS_SETUP`:
|
||||||
1. Tell the user: "gstack browse needs a one-time build (~10 seconds). OK to proceed?" Then STOP and wait.
|
1. Tell the user: "The optional managed headless browser capability is missing. Do you want to preview its exact dependency-closed component plan and compressed bytes now?" Then STOP and wait.
|
||||||
2. Read `references/RUNTIME.md` and follow its explicit capability bootstrap. Never assume a standard-installed skill directory contains `./setup`.
|
2. Read `references/RUNTIME.md` and follow its explicit capability bootstrap. Never assume a standard-installed skill directory contains `./setup`.
|
||||||
3. If `bun` is not installed:
|
3. The approved managed runtime includes its own pinned Bun at `$GSTACK_BIN/bun`; never download or install another Bun from a skill workflow.
|
||||||
```bash
|
|
||||||
if ! command -v bun >/dev/null 2>&1; then
|
|
||||||
BUN_VERSION="1.3.10"
|
|
||||||
BUN_INSTALL_SHA="bab8acfb046aac8c72407bdcce903957665d655d7acaa3e11c7c4616beae68dd"
|
|
||||||
tmpfile=$(mktemp)
|
|
||||||
curl -fsSL "https://bun.sh/install" -o "$tmpfile"
|
|
||||||
actual_sha=$(shasum -a 256 "$tmpfile" | awk '{print $1}')
|
|
||||||
if [ "$actual_sha" != "$BUN_INSTALL_SHA" ]; then
|
|
||||||
echo "ERROR: bun install script checksum mismatch" >&2
|
|
||||||
echo " expected: $BUN_INSTALL_SHA" >&2
|
|
||||||
echo " got: $actual_sha" >&2
|
|
||||||
rm "$tmpfile"; exit 1
|
|
||||||
fi
|
|
||||||
BUN_VERSION="$BUN_VERSION" bash "$tmpfile"
|
|
||||||
rm "$tmpfile"
|
|
||||||
fi
|
|
||||||
```
|
|
||||||
|
|
||||||
**Check test framework (bootstrap if needed):**
|
**Check test framework (bootstrap if needed):**
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
||||||
<!-- GSTACK2_PROVENANCE source=design-shotgun/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=230dbc2922f05bf272bf5168a958a12604fac1bc baseline_render_sha256=08818e1cfbd831a8f30fc673facc0cf6a2821b88cef641007e7516ed795610e8 ported_render_sha256=1db4cd23ee115ce841d2db898cc442141588635d43018393703aa28ce40d48f2 disposition=BUG_FIX -->
|
<!-- GSTACK2_PROVENANCE source=design-shotgun/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=230dbc2922f05bf272bf5168a958a12604fac1bc baseline_render_sha256=08818e1cfbd831a8f30fc673facc0cf6a2821b88cef641007e7516ed795610e8 ported_render_sha256=e27c29760f1edffffee08f131b2c0ee76720eb447d3bb05eee4278467d785620 disposition=BUG_FIX -->
|
||||||
<!-- GSTACK2_ROUTING replacement=$design --mode Explore --module design-shotgun visibility=primary depth=deep mutation=design-artifacts web=optional -->
|
<!-- GSTACK2_ROUTING replacement=$design --mode Explore --module design-shotgun visibility=primary depth=deep mutation=design-artifacts web=optional -->
|
||||||
|
|
||||||
<!-- GSTACK2_LEGACY_BODY_START source=design-shotgun -->
|
<!-- GSTACK2_LEGACY_BODY_START source=design-shotgun -->
|
||||||
@@ -12,6 +12,7 @@ GSTACK_HOME="${GSTACK_HOME:-$HOME/.gstack}"
|
|||||||
GSTACK_ROOT="$GSTACK_HOME"
|
GSTACK_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_BIN="$GSTACK_HOME/bin"
|
GSTACK_BIN="$GSTACK_HOME/bin"
|
||||||
|
BUN_CMD="$GSTACK_BIN/bun"
|
||||||
B="$GSTACK_BIN/browse"
|
B="$GSTACK_BIN/browse"
|
||||||
D="$GSTACK_BIN/gstack-design"
|
D="$GSTACK_BIN/gstack-design"
|
||||||
P="$GSTACK_BIN/make-pdf"
|
P="$GSTACK_BIN/make-pdf"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
||||||
<!-- GSTACK2_PROVENANCE source=diagram/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=9e19a52c6b7f727ce4faf5c1f9c14514ecb52f50 baseline_render_sha256=a06717ae84aaaa6c22444e57622f265324bab5769f1d6bdfff7b805d6e20418d ported_render_sha256=21f18fa4957b79bf5941abfebd1b222dee3eb960520e0deac1c32d0b6fd62a38 disposition=BUG_FIX -->
|
<!-- GSTACK2_PROVENANCE source=diagram/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=9e19a52c6b7f727ce4faf5c1f9c14514ecb52f50 baseline_render_sha256=a06717ae84aaaa6c22444e57622f265324bab5769f1d6bdfff7b805d6e20418d ported_render_sha256=18b1db5eb50d85a6da26b60ac72a19c144e95bb4a2d92b2d23a87086c49c01b7 disposition=BUG_FIX -->
|
||||||
<!-- GSTACK2_ROUTING replacement=$design --mode Generate --module diagram visibility=internal depth=standard mutation=design-artifacts web=none -->
|
<!-- GSTACK2_ROUTING replacement=$design --mode Generate --module diagram visibility=internal depth=standard mutation=design-artifacts web=none -->
|
||||||
|
|
||||||
<!-- GSTACK2_LEGACY_BODY_START source=diagram -->
|
<!-- GSTACK2_LEGACY_BODY_START source=diagram -->
|
||||||
@@ -12,6 +12,7 @@ GSTACK_HOME="${GSTACK_HOME:-$HOME/.gstack}"
|
|||||||
GSTACK_ROOT="$GSTACK_HOME"
|
GSTACK_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_BIN="$GSTACK_HOME/bin"
|
GSTACK_BIN="$GSTACK_HOME/bin"
|
||||||
|
BUN_CMD="$GSTACK_BIN/bun"
|
||||||
B="$GSTACK_BIN/browse"
|
B="$GSTACK_BIN/browse"
|
||||||
D="$GSTACK_BIN/gstack-design"
|
D="$GSTACK_BIN/gstack-design"
|
||||||
P="$GSTACK_BIN/make-pdf"
|
P="$GSTACK_BIN/make-pdf"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
<!-- GENERATED by scripts/gstack2/generate-skill-tree.ts; do not edit. -->
|
||||||
<!-- GSTACK2_PROVENANCE source=make-pdf/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=9133a711d4f3d056a21f790e8ec3b98f13fbaa50 baseline_render_sha256=808606af9faeac0fca5aabf82f766f23cdd80c67597ee7fd0a6a86e494627139 ported_render_sha256=c092bc644ff9b8929d9cbdfedb6f2761b40ce8e1fca53d13ad350ba91195104d disposition=BUG_FIX -->
|
<!-- GSTACK2_PROVENANCE source=make-pdf/SKILL.md.tmpl base=bb57306d98c97011b0919c6132705a15b1579781 blob=9133a711d4f3d056a21f790e8ec3b98f13fbaa50 baseline_render_sha256=808606af9faeac0fca5aabf82f766f23cdd80c67597ee7fd0a6a86e494627139 ported_render_sha256=ece1cfa64bb3cbb3979ce06890e09bbc2ccab4e1d49310c57dc28e70e1236ee9 disposition=BUG_FIX -->
|
||||||
<!-- GSTACK2_ROUTING replacement=$design --mode Generate --module make-pdf visibility=internal depth=standard mutation=design-artifacts web=none -->
|
<!-- GSTACK2_ROUTING replacement=$design --mode Generate --module make-pdf visibility=internal depth=standard mutation=design-artifacts web=none -->
|
||||||
|
|
||||||
<!-- GSTACK2_LEGACY_BODY_START source=make-pdf -->
|
<!-- GSTACK2_LEGACY_BODY_START source=make-pdf -->
|
||||||
@@ -12,6 +12,7 @@ GSTACK_HOME="${GSTACK_HOME:-$HOME/.gstack}"
|
|||||||
GSTACK_ROOT="$GSTACK_HOME"
|
GSTACK_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
GSTACK_STATE_ROOT="$GSTACK_HOME"
|
||||||
GSTACK_BIN="$GSTACK_HOME/bin"
|
GSTACK_BIN="$GSTACK_HOME/bin"
|
||||||
|
BUN_CMD="$GSTACK_BIN/bun"
|
||||||
B="$GSTACK_BIN/browse"
|
B="$GSTACK_BIN/browse"
|
||||||
D="$GSTACK_BIN/gstack-design"
|
D="$GSTACK_BIN/gstack-design"
|
||||||
P="$GSTACK_BIN/make-pdf"
|
P="$GSTACK_BIN/make-pdf"
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user