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
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
"operatingSystem": "macOS, Linux, Windows",
"description": "A git-native framework to distribute, version, and verify a private library of agent skills. Records the upstream version label, git tree SHA, and originating commit for every vendored skill, so the content an agent runs is provably the version that was approved.",
"url": "https://skillrig.dev/",
"license": "https://www.apache.org/licenses/LICENSE-2.0",
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" }
}
</script>
Expand Down
10 changes: 8 additions & 2 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { GithubIcon } from "./icons";
import { Wordmark } from "./Logo";
import { GITHUB_ORG, ORIGIN_TEMPLATE } from "../content";
import { GITHUB_ORG, LICENSE, ORIGIN_TEMPLATE } from "../content";

export function Footer() {
return (
Expand Down Expand Up @@ -31,7 +31,13 @@ export function Footer() {
</nav>
</div>
<p className="mt-10 font-mono text-xs text-dim">
&copy; {new Date().getFullYear()} skillrig
&copy; {new Date().getFullYear()} skillrig &middot;{" "}
<a
href={LICENSE}
className="transition-colors hover:text-ink dark:hover:text-paper"
>
Apache-2.0
</a>
</p>
</div>
</footer>
Expand Down
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 matter. A repository never depends on anyone's personal setup.",
detail: "project verifies · global restores",
},
{
Expand Down
1 change: 1 addition & 0 deletions src/content.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export const GITHUB_ORG = "https://github.com/skillrig";
export const ORIGIN_TEMPLATE = "https://github.com/skillrig/origin-template";
export const LICENSE = "https://github.com/skillrig/skillrig.github.io/blob/main/LICENSE";