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" },