Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/WhyDifferent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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",
},
{
Expand Down
1 change: 1 addition & 0 deletions src/components/Workflow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down