From d78c09d676c4e71ace5b42d9224b52c881feac19 Mon Sep 17 00:00:00 2001 From: Vincent De Smet Date: Sun, 31 May 2026 16:53:26 +0800 Subject: [PATCH] Add search step to workflow; fix global-scope copy typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (c) Surface the shipped `search` discovery command — `search` against the origin's committed `index.json` (roadmap 003 ✅) had no representation on the page despite being shipped. Added as the first command step so the flow reads discover → vendor → verify → bump. (a) Fix a broken sentence in the "Two scopes, two jobs" claim: "so there a genuine fetch and restore matters" → "so a genuine fetch and restore matters". Exactness is the brand; the typo was a credibility leak. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/components/WhyDifferent.tsx | 2 +- src/components/Workflow.tsx | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/WhyDifferent.tsx b/src/components/WhyDifferent.tsx index 7b4ebb5..70a508d 100644 --- a/src/components/WhyDifferent.tsx +++ b/src/components/WhyDifferent.tsx @@ -24,7 +24,7 @@ const claims: Claim[] = [ { icon: Layers, title: "Two scopes, two jobs", - body: "Project skills are vendored in git, so the tooling only verifies and detects drift. Global skills are not committed, so there a genuine fetch and restore matters. A repository never depends on anyone's personal setup.", + body: "Project skills are vendored in git, so the tooling only verifies and detects drift. Global skills are not committed, so a genuine fetch and restore matters. A repository never depends on anyone's personal setup.", detail: "project verifies · global restores", }, { diff --git a/src/components/Workflow.tsx b/src/components/Workflow.tsx index 243b8ef..7ecc97b 100644 --- a/src/components/Workflow.tsx +++ b/src/components/Workflow.tsx @@ -2,6 +2,7 @@ type Line = { comment: string; cmd: string }; const lines: Line[] = [ { comment: "bind a repo to your org's origin", cmd: "skillrig init --origin my-org/skills" }, + { comment: "search your origin's catalog, offline and deterministic", cmd: "skillrig search commit" }, { comment: "vendor a skill, pinning its commit and tree SHA", cmd: "skillrig add commit-writer" }, { comment: "offline, deterministic, a CI-usable exit code", cmd: "skillrig verify" }, { comment: "cron opens a reviewable PR when upstream advances", cmd: "skillrig bump --pr" },