# SuperSkill

> Community hub for reusable AI-agent resources: skills, plugins, workflows, MCP servers, runtimes, guides, directories, and native harness-format packages. Search resources, open upstream sources, and pull native harness packages when a resource is actually packaged as one.

SuperSkill is built for agents as much as for humans. Everything below works without a browser. Reads are anonymous; managed actions use the existing confirmed account and workspace identity.

Repo guidance: https://superskill.sh/AGENTS.md

## HTTP API

Base URL: https://superskill.sh/api

OpenAPI: https://superskill.sh/api/openapi.json

MCP Registry metadata: https://superskill.sh/server.json

OAuth protected-resource metadata: https://superskill.sh/.well-known/oauth-protected-resource

Universal install link to paste into Codex or Claude Code: https://superskill.sh/api/superskill/install

Crawler-visible share links use website paths instead of hash routes: `/r/{base64url-resource-id}` for the current public resource, `/r/{base64url-resource-id}/{version}` for an exact release, `/c/{capability-id}` for a managed skill, and `/w/{invite-id}#invite={raw-code}` for a private workspace invitation. Matching PNG cards are under `/og/r/*`, `/og/c/*`, and `/og/w/*`. Workspace invite secrets always remain after `#` and are never sent to preview endpoints.

SuperSkill does not advertise a vanity OAuth authorization server. The project-local `superskill_local` MCP owns interactive account authorization: the first protected action opens the SuperSkill Connect page, waits for explicit browser approval, and retries the same idempotent action in the same client task. Access credentials stay only in local process memory; a rotating refresh credential may be kept only in the OS credential store for at most 30 days. This broker is not OAuth, and `/.well-known/oauth-authorization-server` intentionally returns 404 until a separate protected MCP endpoint passes complete standards-valid Codex and Claude verification.

## SuperSkill internal alpha

Human-readable SuperSkill docs: https://superskill.sh/docs

Agent-facing guide: https://superskill.sh/docs/agent-guide

MCP guide: https://superskill.sh/docs/mcp

Agent access policy: https://superskill.sh/agent-access-policy

Privacy: https://superskill.sh/privacy

Complete public resource index: https://superskill.sh/llms-full.txt

- Public showroom: GET /showroom/capabilities and GET /showroom/capabilities/{id}. These are cached public-safe projections only; they never accept task text or return archive/activation controls.
- Public selected shelf: GET /showroom/selected returns current intake candidates labelled `selected_unreviewed`. These cards fill discovery only and cannot be used as approval, recommendation or managed activation evidence.
- Managed recommendation, exact release/archive, hosted publish, workspace and managed-event routes accept a scoped agent session resolved to the confirmed Supabase user. New plugin config never inherits environment credentials; never put credentials or connect proofs in a manifest, tool argument/result, prompt, URL query, log, analytics event or browser storage. `HH_TOKEN` remains non-interactive/paid compatibility only.
- The checked-in managed catalog currently has 12 exact candidates and zero approved releases. The approved lane and managed recommendation remain empty/no-match until real Claude Code, Codex, and human review evidence exists; the selected shelf is discovery-only.
- `onlyharness@0.2.14` is published but known-bad for one-link because its exact-version npm metadata request is rejected.
- Current public transition hotfix `onlyharness@0.3.1` is pinned to official npm integrity after publication. It keeps the local browser-auth broker, binds hosted skills to immutable release tuples, and adds anonymous native-harness installation bound to exact version, digest, complete snapshot and passing static scan. `0.3.0` is the previous transition release. `0.2.18` is a known-bad one-link release with a stale universal-skill digest; do not substitute `latest`, a remote script pipe, or an unscoped `superskill` npm package.
- Approved current releases use one canonical URL: `https://superskill.sh/api/superskill/install/{capability-id}/{version}/{sha256-hex}`. It returns a signed-by-digest JSON contract, not executable script. Local install selects exactly one detected Codex/Claude client or fails closed; installation never implies activation.
- SuperSkill Daylight is the locked human-facing surface on `superskill.sh` and `www.superskill.sh`; legacy skins are compatibility-only and cannot be selected on those hosts.

- Health check: GET /healthz
- Search the registry: GET /registry?q={terms}&job={job}&sort={trending|stars|forks|threads|new}
  Multi-word queries AND-match against name, title, summary, job and tags. `outcome` remains a legacy alias for the job filter.
  Response: { items: [{ owner, name, title, summary, tags, job, outcome, runtime, stars, forks, threads, runs, installConfirms, signalCount, heatQualified, heat, evalScore, evalStatus, riskScore, riskTier, contextCost, badge, cliCommand, updatedAt }] }
- Search mixed resources: GET /resources?q={terms}&type={skill|plugin|workflow|mcp_server|harness|directory}&sort={popular|github-stars|new|source-checked|onlyharness}
  Response: { resources, counts }. Resources include source provenance, optional SuperSkill-hosted archive/mirror metadata, GitHub stars snapshot/current fields, sourceCheckedAt, sourceCheckStatus, raw installability/availability state, licenseStatus and actions. Source checked is not Verified install.
- Resource detail: GET /resources/{url-encoded-id}
  Example id: `github:obra/superpowers` must be requested as `/resources/github%3Aobra%2Fsuperpowers`.
- Resource archive: GET /resources/{url-encoded-id}/archive
  Returns a tar.gz hosted by SuperSkill when the resource has been materialized into SuperSkill storage. It must not redirect clients to GitHub.
- Harness detail: GET /repos/{owner}/{name}/harness
  Returns the manifest (agents, workflow stages, tools, permissions, quality_gates), README, example input/output, eval results, risk report, contextCost, file list, versions[] archive history and prReview. Registry/detail never expose server filesystem paths; forgeUrl is present only for public forge/upstream URLs. prReview.source=local-demo means generated preview, not an open forge PR.
- Download files: GET /repos/{owner}/{name}/archive?version={optional semver}
  Response: { owner, repo, version, snapshot, files: [{ path, content, truncated }] } — write the files to disk to get a runnable harness directory. Treat snapshot:true as immutable; snapshot:false is the current live manifest row.
  Paid harnesses return HTTP 402 with { code: "PAYMENT_REQUIRED", checkout_url, pricing, payments_enabled, x402, next }. Retry with Authorization: Bearer {HH_TOKEN} after entitlement. If x402.enabled=true, the response also includes a base64 JSON PAYMENT-REQUIRED header; `hh install --pay` or `hh pull --pay` signs with HH_WALLET_KEY/EVM_PRIVATE_KEY and enforces HH_MAX_PAY_USD before retrying. The API returns archive files only after facilitator verify/settle succeeds via X402_FACILITATOR_URL.
  Directory shelf entries use owner `directories` and manifest content.type=directory. They are link-only discovery indexes: search results expose `open <url>`, and archive returns HTTP 409 { code: "DIRECTORY_LINK_ONLY", url, next } instead of files.
- Create local remix draft: POST /repos/{owner}/{name}/remixes
  Auth required. Body { name?, title?, summary?, sourceVersion? }. Creates only a free unverified `local/{name}` copy from archive files, strips `.harnesshub/*`, records a privacy-safe `applied` event with target `server-remix`, and records a source -> fork graph edge. Paid, org/private, directory, link-only and `UNSPECIFIED` license sources fail closed. Copied fallback recipes do not count as forks.
- Security report: GET /repos/{owner}/{name}/security-report
  Read before installing/applying when detail.security is missing or failing; plugin/autopilot flows must not bypass a failed report.
- Stars: POST /repos/{owner}/{name}/star
  Auth required. Body { starred?: boolean }. Records or removes the caller's star through the API so browser and agent clients share one heat-signal path.
- Thread: GET /repos/{owner}/{name}/thread and POST /repos/{owner}/{name}/thread
  POST auth required. Body { kind, body }, where kind is question, recipe, result, proposal, or bug/risk.
- Forge PR semantic diff: GET /prs/{owner}/{name}/{number}/semantic-diff
  Org visibility is enforced, but real forge PR diffing is not connected yet. The endpoint returns 501 PR_SEMANTIC_DIFF_NOT_AVAILABLE with a local-demo preview and next steps; use detail.prReview only as a maintainer-review shape preview.
- Checkout: POST /billing/checkout
  Auth required. Body { owner, repo, version?, ref? }. Requires PAYMENTS_ENABLED=true and creates a pending manual checkout session for paid harnesses. Only PAYMENT_PROVIDER unset/manual is supported; other provider config fails closed before purchase creation.
  Checkout URLs land on /checkout. If provider_ref is absent, the web UI only prompts the buyer to log on and create a manual checkout session. If provider_ref is present, it shows pending manual handoff state. The page never grants entitlement.
- Receipt: GET /billing/receipt?provider_ref={ref}
  Auth required. Returns the caller's own pending/paid purchase status, amount, harness ref and entitlement flag. Read-only only: this endpoint must not settle payments or grant access.
- Gate receipt verification: POST /receipts
  Body is the JSON written by `hh gate --receipt`. Verifies the ed25519 signature over harness ref, version, resultsHash, verdict and timestamp. Side-effect-free: does not store prompts, local paths, payments or entitlements.
- Gate escrow settle: POST /billing/escrow/receipt
  Auth required. Body { provider_ref, receipt }. For `pricing.model=gate_escrow`, captures a reserved purchase when the signed receipt verdict is passed, refunds when it is failed. POST /receipts remains read-only.
- Gate escrow timeout: POST /billing/escrow/timeout
  Auth required. Body { provider_ref }. Refunds only after the 72h receipt window expires.
- Bounties: GET /bounties, POST /bounties, POST /bounties/{id}/claim, POST /bounties/{id}/deliver, POST /bounties/{id}/accept
  Auth required except list. Local bounty state is work-state only: open -> claimed -> delivered -> paid. Delivery and acceptance require a signed passing `hh gate --receipt`; accept also requires a matching reserved/captured `gate_escrow` purchase with the same target, amount and currency. The API blocks escrow reuse and marks paid only after capture.
- Hosted execution: not live. `hh run` is local sample preview only and never proves gate success; HTTP/MCP archive routes deliver files and do not execute author code server-side. `pricing.model=per_call` returns 409 `HOSTED_EXECUTION_NOT_AVAILABLE`; do not use it as a live payment path yet.
- Entitlement check: GET /entitlements/check?subject=user:{id}&harness={owner}/{name}&version={optional semver}
  Bot-facing read-only decision. Requires ORGS_ENABLED=true and Authorization: Bearer {org token with entitlements:read}. Response includes { entitled, status } and never returns archive files.
- Community invite code: POST /community/invite-code
  Auth required. Body { harness: "owner/name", version?, ttl_seconds? }. The API checks the authenticated user's entitlement live, then returns a short-lived signed code. Requires COMMUNITY_INVITE_SECRET.
- Community code verify: POST /community/verify-code
  Bot-facing decision. Requires ORGS_ENABLED=true and Authorization: Bearer {org token with entitlements:read}. Body { code }. The API HMAC/TTL-checks the code, re-checks entitlement live and returns { allowed, status }; bots should grant Discord/Telegram access only when allowed=true.
- Payment webhook: POST /webhooks/payments
  Internal only. Requires x-harness-token matching HARNESS_WEBHOOK_TOKEN; marks a manual purchase paid and grants entitlement idempotently.
- Storefront profile: PUT /me/storefront and GET /me/storefront
  Auth required. Body { handle, display_name?, bio? }. Creates a safe public creator handle and referral_code; email is not exposed.
- Public storefront: GET /storefront/{handle}
  Returns { profile, referralCode, items }. Use referralCode as checkout ref for creator attribution.
- Org setup bundle: GET /orgs/{slug}/bundle
  Requires ORGS_ENABLED=true and Authorization: Bearer {org token}. Response: { organization, bundle: { version, harnesses, configs } }. Use `HH_ORG_TOKEN=... hh setup @slug` instead of hand-writing files.
- Org workspace: GET /orgs/{slug}/workspace
  Requires ORGS_ENABLED=true and Authorization: Bearer {org token}. Response: { organization, items, permissions, audit }. The audit rows are sanitized and permissions include riskMarkdown for the highest-risk org harness.
- Workspace create: POST /workspaces
  Requires WORKSPACES_ENABLED=true and a confirmed signed-in account. Body: { slug, name, type?, visibility? }. Atomically creates or replays the caller-owned workspace, owner membership, invite policy and default approved collection. Another owner's slug returns 409.
- Workspace catalog: GET /workspaces/{slug}/workspace
  Requires WORKSPACES_ENABLED=true and either Authorization: Bearer {workspace token} or an active signed-in workspace member session. Response: { workspace, resources, items, joinPolicies, permissions, audit }. Use `HH_WORKSPACE_TOKEN=... hh resources search --workspace slug` for private workspace resources. CLI remains token-based; legacy org tokens are accepted as a migration fallback.
- Workspace setup bundle: GET/PUT /workspaces/{slug}/setup-bundle
  GET requires workspace setup access and returns { workspace, bundle, next }. Use `HH_WORKSPACE_TOKEN=... hh workspace setup slug --target claude-code --json`. Setup installs workspace-hosted packages and writes instructions for approved public resources; it must not invent workspace archives for public listings that are only approved by the workspace. PUT stores bounded config snippets and requires publish/collection-write access.
- Workspace members and invites: GET/POST /workspaces/{slug}/members, DELETE /workspaces/{slug}/members/{userId}, POST /workspaces/{slug}/invites, POST /workspaces/{slug}/join
  Manage workspace access. Member and invite writes require `member:write`, `invite:write`, `workspace:admin`, or matching admin membership. Invite raw codes are returned once and stored only as hashes. The SuperSkill web UI can copy a bounded fragment-only invite link; the fragment is not sent in HTTP requests.
- Workspace join gates: GET/PUT /workspaces/{slug}/join-policies, POST /workspaces/{slug}/join-code, POST /workspaces/{slug}/join-code/verify, POST /workspaces/{slug}/join-grants
  Join policies cover invite, email domain, Telegram, Discord, entitlement and disabled future paid-subscription gates. A signed-in user mints a short-lived `ohwj_` code with `/join-code`. Bots verify it read-only with `gate:verify`; only `/join-grants` creates membership after the external Telegram/Discord/entitlement check passes. Active `paid_subscription` policies fail closed until subscription lifecycle is implemented.
- Workspace resources: GET /workspaces/{slug}/resources, GET /workspaces/{slug}/resources/{id}, GET /workspaces/{slug}/resources/{id}/archive
  Search, inspect, and download workspace-hosted resource packages. Resource refs are `@workspace/name`; archives are served from SuperSkill workspace archive storage and never redirect to upstream GitHub.
- Workspace resource package publish: POST /workspaces/{slug}/imports/resource-package
  Requires WORKSPACES_ENABLED=true and a workspace token with publish scope. Use `HH_WORKSPACE_TOKEN=... hh publish-resource <dir-or-git-url> --workspace slug --name my-agent-tool --type command_pack`. This is the full-package path for private skills/plugins/workflows/MCP servers/commands/scripts/docs/source bundles; it is not the markdown scaffold path and does not grant a Verified harness badge.
- Org publish: POST /orgs/{slug}/imports/markdown-to-harness
  Requires ORGS_ENABLED=true and an org token with publish scope. Use `HH_ORG_TOKEN=... hh publish workflow.md --org slug --name team-workflow`. The generated harness is `visibility: org` and archive/detail require an org token.
- Org verified publish: POST /orgs/{slug}/imports/harness-dir
  Requires ORGS_ENABLED=true and an org token with publish scope. Use `HH_ORG_TOKEN=... hh eval <dir> && hh gate --dir <dir> && hh publish <dir> --org slug --name team-harness`. The server rechecks schema, security, eval and gate, then stores the harness as `visibility: org`.
- Org repo sync: `HH_ORG_TOKEN=... hh sync <git-url-or-local-path> --org slug`
  First version clones or scans a repo, imports markdown skills/runbooks/prompts through the org publish endpoint, and prints a report. It does not install webhooks.
- Events: POST /events
  Body may include { kind, owner, repo, version, target, client }. The API stores only whitelisted fields; do not send prompts, paths or credentials.
  Managed lifecycle kinds re-check the confirmed/granted SuperSkill principal on every request. An exact eventId replay is idempotent; reusing an eventId with a different subject or payload returns `EVENT_CONFLICT`.
  `kind=install&client=claude-code` with an authenticated subject contributes to the "works in Claude Code: N confirms" badge.
  `kind=eval|gate&target=passed&client=hh` contributes to verification.lastVerifiedAt in harness detail. Passed `gate` events also count as registry `runs`; `hh run` sample preview does not.
  `kind=suggested|accepted|applied&client=hh` records CLI autopilot funnel usage without prompts or local paths. `accepted` means the user chose `--apply`; `applied` is recorded only after local files are written.
- Leaderboard: GET /leaderboard?limit=10
  Returns only heatQualified items. Cold harnesses stay out of Top 10 until enough real social signals or a verified install confirm exists.
- Publish (auth required): POST /imports/markdown-to-harness
  JSON body { name, markdown }, header Authorization: Bearer {access token from a superskill.sh account}. This creates a small markdown-derived scaffold, not a full copied GitHub repo.
- Verified publish (auth required): POST /imports/harness-dir
  Use `hh eval <dir> && hh gate --dir <dir> && hh publish <dir> --name my-harness`, or `hh publish <git-url> --path harnesses/my-harness --name my-harness` for a git repo. The CLI/server accepts bounded native package files, including `scripts/`, plus `.harnesshub/results.json`, then rechecks schema, security, eval, and gate before showing verification.lastVerifiedAt.
- Resource package publish (auth required): POST /imports/resource-package
  Production publishing is enabled. The request requires a confirmed in-policy SuperSkill user, immutable semantic `version`, and a 16-200 character `idempotencyKey`. Accepted responses bind `resourceId`, version, archive digest/size, replay state, exact static-v2 `pass`/`warn` state and trust=`unreviewed`; static pass does not infer runtime risk, so risk stays `UNKNOWN`. Interactive agents use `superskill_local.publish_resource_package`; the broker obtains the minimum scope in the browser and automatically retries the exact idempotent call. A failed scan returns sanitized rule/file identifiers and is rejected before any archive, catalog or event mutation. Publishing does not grant a Verified or reviewed badge.
- Exact hosted resource release: GET /resources/{id}/releases/{version}/archive
  Returns only the active immutable release matching the exact semantic version and durable digest/size metadata. The unversioned `/resources/{id}/archive` route remains a latest-version compatibility alias.
- GitHub resource classify: POST /imports/github-resource
  Body { url, path?, action:"classify" }. Read-only. Uses GitHub API with host allowlist, redirect blocking, path traversal checks, symlink/special-file blocking and response/decompression limits. Upstream listing is allowed; use `hh publish-resource` for an explicit hosted package upload when license and ownership allow it.

End-to-end example:

    curl -s 'https://superskill.sh/api/registry?q=market%20research'
    curl -s 'https://superskill.sh/api/resources?q=superpowers'
    curl -s 'https://superskill.sh/api/repos/harnesses/deep-market-researcher/archive'

## MCP

Endpoint: https://superskill.sh/mcp

Transport: Streamable HTTP. Public reads are anonymous. Interactive publishing and workspace operations use the project-local `superskill_local` broker so credentials never enter chat or project configuration.

Official compatibility MCP Registry name: `com.onlyharness/registry`. The public `server.json` is remote-only and points at the canonical SuperSkill Streamable HTTP endpoint. The old coordinate is retained for installed-client compatibility.

Tools:

- search: OpenAI-compatible public resource search returning `{ results: [{ id, title, url }] }` with canonical citation URLs.
- fetch: OpenAI-compatible exact public resource fetch returning `{ id, title, text, url, metadata? }`.
- search_harnesses: search registry items by task/job/tag, including contextCost estimates.
- harness_detail: inspect manifest, trust signals, contextCost, examples, files and read-only access/payment summary.
- pull_instructions: return CLI/archive commands plus entitlement-aware payment state and contextCost for a harness.
- pull_harness: return archive files; paid harnesses return payment requirements unless Bearer token is entitled.
- search_resources: search the mixed source-aware resource catalog.
- resource_detail: return provenance, trust, popularity and actions for one resource.
- resource_use_instructions: return safe use/open/install guidance; hosted skills expose an exact version/digest install command, native public harnesses expose the same digest-bound tuple through `pull_instructions`, and upstream-only resources stay open-only.
- search_docs: search this llms.txt and agent guidance.
- publish_markdown_to_harness: transition compatibility tool; new interactive clients call the same protected operation through `superskill_local`.
- publish_resource_package: transition compatibility tool; new interactive clients call the same protected operation through `superskill_local` with semantic `version` and `idempotencyKey`; it is not a Verified harness badge.

This twelve-tool inventory is exact for remote MCP v0.3.1. The public-only endpoint at `https://superskill.sh/mcp/public` exposes the first ten read tools and never advertises or accepts either publish tool. `search` and `fetch` return their exact OpenAI compatibility objects in both `structuredContent` and JSON-encoded `content`. Every other successful tool result includes `structuredContent` with `code: OK` and numeric `status`. Logical failures set `isError: true` and return a stable machine code such as `AUTH_REQUIRED`, `AUTH_INVALID`, `RESOURCE_NOT_FOUND`, `ARCHIVE_STORAGE_UNAVAILABLE`, `PAYMENT_REQUIRED`, or `HOSTED_EXECUTION_NOT_AVAILABLE`; `PUBLISH_DISABLED` remains a fail-closed configuration error, not the normal production publish state. JSON-RPC transport failures use the JSON-RPC `error` envelope instead. Error results never include authorization values, local server paths, stacks, or raw provider diagnostics; successful archive delivery preserves exact package file contents.

Initialize example:

    curl -s -X POST https://superskill.sh/mcp \
      -H 'Content-Type: application/json' \
      -H 'Accept: application/json, text/event-stream' \
      -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"curl","version":"0"}}}'

## CLI (hh)

The npm CLI is published, so agents can run native harness workflows and mixed resource catalog commands without cloning the repo:

    npx onlyharness search market research
    npx onlyharness suggest market research --json
    npx onlyharness resources search superpowers --json
    npx onlyharness resources detail github:obra/superpowers --json
    npx onlyharness resources open github:obra/superpowers --json
    npx --yes onlyharness@0.3.1 resources install onlyharness:packages/my-skill --version 0.1.0 --digest sha256:<64-hex-digest> --target codex --allow-unreviewed --json
    npx onlyharness suggest market research --apply --out suggested-deep-market-researcher --json
    npx onlyharness suggest market research --apply --target claude-code --out suggested-deep-market-researcher --adapter-out .claude/skills/deep-market-researcher --json
    npx --yes onlyharness@0.3.1 resources install onlyharness:harnesses/deep-market-researcher --version 0.2.1 --digest sha256:<digest-from-pull_instructions> --target claude-code --json
    npx onlyharness mcp-config deep-market-researcher --target claude-desktop --json
    npx onlyharness run deep-market-researcher
    npm i -g onlyharness   # installs the hh command

Resource catalog commands are live through npm, MCP and HTTP. MCP tools are `search_resources`, `resource_detail` and `resource_use_instructions`; HTTP paths are `/resources` and `/resources/{id}`.

For local development from the repo:

    npm install
    npm run build -w onlyharness
    node packages/harness-cli/dist/hh.mjs <command>

- hh search {terms}         find harnesses (--json for machine-readable output)
- hh resources search {terms} --json     search all resources, including skills/plugins/workflows/MCP servers
- hh resources detail github:obra/superpowers --json
- hh resources open github:obra/superpowers
- hh resources install onlyharness:packages/{name} --version <semver> --digest sha256:<digest> --target codex|claude-code --allow-unreviewed --json   install an exact immutable hosted skill after explicit review and consent
- hh resources install onlyharness:{owner}/{name} --version <semver> --digest sha256:<digest> --target codex|claude-code --json   install a public native harness only from the exact scan-bound tuple returned by detail/pull instructions
  Opens the SuperSkill resource page first; upstream GitHub stays attribution/source, not the primary use path.
- hh resources import https://github.com/acme/agent-skills --json   classify before adding/listing a GitHub resource
- hh suggest {terms}        return ranked candidates with trust fields plus selected detail trust summary; use --pick {rank}; --apply installs through the pull archive path
- hh suggest {terms} --apply --target cli|claude-code|codex|cursor    run the target adapter install path before recording applied
- hh install {owner}/{name} --target cli|claude-code|codex|cursor    primary install path; pulls files, optionally writes adapter files, then records a privacy-safe install event
- hh pull {owner}/{name}    download a harness into ./{name}; sends HH_TOKEN when set
- hh pull {owner}/{name} --version <semver>    request that registry version and write it to .harnesshub/source.json; archive snapshot:true is immutable, snapshot:false is the live current row
- hh adapt [dir] --target claude-code|codex|cursor    generate local adapter instruction files
- hh mcp-config [dir] --target claude-desktop|claude-code|cursor    generate package-backed MCP client JSON
- hh install {owner}/{name} --pay    pay an x402-enabled 402 with HH_WALLET_KEY/EVM_PRIVATE_KEY, capped by HH_MAX_PAY_USD
- hh install {owner}/{name} --version <semver>    install a specific registry version through the same payment/entitlement path; require snapshot:true when immutability matters
- hh pull {owner}/{name} --pay    low-level archive download with the same x402 payment behavior
- hh install @org/{name}    download an org-private harness; sends HH_ORG_TOKEN when set
- hh pull @org/{name}       low-level org-private archive download; sends HH_ORG_TOKEN when set
- hh run [dir]              run the bundled example locally (sample preview only: no LLM calls, no credentials, no gate claim)
- hh eval [dir]             score the eval cases; writes .harnesshub/results.json
- hh gate --dir [dir]       enforce the manifest quality gates
- hh gate --dir [dir] --receipt    write a signed gate receipt for POST /receipts verification
- hh audit-setup            audit local ~/.claude and ./.claude skills for context cost, stale triggers and overlapping descriptions
- hh benchmark <suite.yaml> run a local category benchmark across candidate and analog harness paths using declared eval case scores. Suites live in `benchmarks/`; smoke runs every YAML suite.
- hh extract <skill>        create a private harness.v0.2 scaffold from a local skill, with candidate depends_on and redacted markdown source
- hh setup @org             install a token-gated team bundle; uses HH_ORG_TOKEN and writes managed setup metadata
- hh publish --org <slug>   publish markdown into an org-private namespace; uses HH_ORG_TOKEN
- hh publish-resource <dir-or-git-url> --name <slug> --type <type>   publish a hosted resource package; accepts safe bounded text files under scripts, commands, tools, workflows, mcp, plugins, docs, src/lib and agent directories
- hh publish-resource <dir-or-git-url> --workspace <slug> --name <slug> --type <type>   publish a private workspace-hosted resource package; uses HH_WORKSPACE_TOKEN, falling back to HH_ORG_TOKEN during migration
- hh workspace setup <slug> --target claude-code   install a workspace setup bundle locally; installs only workspace-hosted packages and writes instructions for approved public resources
- hh resources search <terms> --workspace <slug>   search private workspace resources; uses HH_WORKSPACE_TOKEN
- hh resources detail @slug/name   inspect private workspace resource detail; uses HH_WORKSPACE_TOKEN
- hh validate [dir]         schema and permission checks (--strict fails on warnings)
- hh doctor --harness [dir] inspect registry connectivity and a local harness
- hh pin [dir]              pin a pulled harness to its current registry version
- hh outdated [dir]         exit 3 when a newer registry version exists
- hh update [dir] --diff    preview semantic changes before applying an update
- hh publish {file.md}      publish a markdown workflow (token via --token or HH_TOKEN)
- hh publish {dir}          publish a verified native package only after eval/gate; use publish-resource for generic repos/packages without harness.yaml
- hh doctor                 registry connectivity check

Set HH_REGISTRY_URL to target another registry (default https://superskill.sh/api).
Set HH_TOKEN before installing/pulling a paid harness after checkout/manual entitlement. For x402, set HH_WALLET_KEY or EVM_PRIVATE_KEY plus HH_MAX_PAY_USD; payment-required failures exit 5.

## Claude Code Plugin

Install from the marketplace source:

    claude plugin marketplace add elvismusli/onlyharness
    claude plugin install superskill@superskill

Codex MCP setup:

    codex mcp add superskill --url https://superskill.sh/mcp

The universal installer also configures `superskill_local`; its first protected action opens browser consent and resumes the same task automatically.

Local development check from a repo clone:

    npm run check:plugin
    claude plugin validate .
    claude plugin validate plugins/onlyharness

## What is a harness

A harness directory contains: harness.yaml (manifest: runtime, agents, workflow, tools, permissions, quality_gates), agents/*.md prompts, examples/input.md and examples/expected.md, evals/cases/*.yaml, runbooks/. Per-harness trust signals: eval score, risk tier, permissions profile, contextCost (~tokens from markdown instructions), install confirms, stars, threads, passed gate runs, server-side remix forks and Harness Heat.

## Safety notes for agents

- hh run is sample mode only: it never calls an LLM, never touches credentials, and never proves gate success. Use hh eval and hh gate for verification.
- Community stats and Harness Heat are not safety guarantees. Inspect security, risk, permissions and gates before using a harness for real work.
- Inspect manifest.permissions before wiring a harness into a real runtime; external_send and money_movement default to false and are listed in human_approval_required.
- Quality gates (min eval score, max cost, max risk) live in harness.yaml under quality_gates; hh gate enforces them.

## Complete public resource index

This projection contains 274 current public catalog resources. Inclusion is not a SuperSkill Verified badge.

### magic-mcp

Source-checked GitHub mcp server from 21st-dev/magic-mcp, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:21st-dev/magic-mcp`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `cursor`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOjIxc3QtZGV2L21hZ2ljLW1jcA

### goose

Source-checked GitHub agent runtime from aaif-goose/goose, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:aaif-goose/goose`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFhaWYtZ29vc2UvZ29vc2U

### aaron-marketing-skills

Source-checked GitHub skill from aaron-he-zhu/aaron-marketing-skills, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:aaron-he-zhu/aaron-marketing-skills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFhcm9uLWhlLXpodS9hYXJvbi1tYXJrZXRpbmctc2tpbGxz

### hivemind

Source-checked GitHub skill from activeloopai/hivemind, seeded for skill frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:activeloopai/hivemind`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFjdGl2ZWxvb3BhaS9oaXZlbWluZA

### agent-skills

Source-checked GitHub skill from addyosmani/agent-skills, seeded for skill frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:addyosmani/agent-skills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFkZHlvc21hbmkvYWdlbnQtc2tpbGxz

### hive

Source-checked GitHub framework from aden-hive/hive, seeded for orchestration discovery in the July 2026 SuperSkill catalog.

- ID: `github:aden-hive/hive`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFkZW4taGl2ZS9oaXZl

### ECC

Source-checked GitHub framework from affaan-m/ECC, seeded for orchestration discovery in the July 2026 SuperSkill catalog.

- ID: `github:affaan-m/ecc`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFmZmFhbi1tL2VjYw

### agent-zero

Source-checked GitHub agent runtime from agent0ai/agent-zero, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:agent0ai/agent-zero`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFnZW50MGFpL2FnZW50LXplcm8

### browser-tools-mcp

Source-checked GitHub mcp server from AgentDeskAI/browser-tools-mcp, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:agentdeskai/browser-tools-mcp`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFnZW50ZGVza2FpL2Jyb3dzZXItdG9vbHMtbWNw

### agentskills

Source-checked GitHub skill from agentskills/agentskills, seeded for skill frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:agentskills/agentskills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFnZW50c2tpbGxzL2FnZW50c2tpbGxz

### claude-obsidian

Source-checked GitHub skill from AgriciDaniel/claude-obsidian, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:agricidaniel/claude-obsidian`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFncmljaWRhbmllbC9jbGF1ZGUtb2JzaWRpYW4

### claude-seo

Source-checked GitHub skill from AgriciDaniel/claude-seo, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:agricidaniel/claude-seo`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFncmljaWRhbmllbC9jbGF1ZGUtc2Vv

### blender-mcp

Source-checked GitHub mcp server from ahujasid/blender-mcp, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:ahujasid/blender-mcp`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFodWphc2lkL2JsZW5kZXItbWNw

### aider

Source-checked GitHub agent runtime from Aider-AI/aider, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:aider-ai/aider`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFpZGVyLWFpL2FpZGVy

### stash

Source-checked GitHub framework from alash3al/stash, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:alash3al/stash`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFsYXNoM2FsL3N0YXNo

### huashu-design

Source-checked GitHub skill from alchaincyf/huashu-design, seeded for single skills discovery in the July 2026 SuperSkill catalog.

- ID: `github:alchaincyf/huashu-design`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFsY2hhaW5jeWYvaHVhc2h1LWRlc2lnbg

### open-code-review

Source-checked GitHub config from alibaba/open-code-review, seeded for safety and observability discovery in the July 2026 SuperSkill catalog.

- ID: `github:alibaba/open-code-review`
- Type: `config`
- Source: `github`
- Works with: `github`, `cursor`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFsaWJhYmEvb3Blbi1jb2RlLXJldmlldw

### claude-skills

Source-checked GitHub skill from alirezarezvani/claude-skills, seeded for skill frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:alirezarezvani/claude-skills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFsaXJlemFyZXp2YW5pL2NsYXVkZS1za2lsbHM

### Unla

Source-checked GitHub mcp server from AmoyLab/Unla, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:amoylab/unla`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFtb3lsYWIvdW5sYQ

### opencode

Source-checked GitHub agent runtime from anomalyco/opencode, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:anomalyco/opencode`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFub21hbHljby9vcGVuY29kZQ

### claude-agent-sdk-python

Source-checked GitHub framework from anthropics/claude-agent-sdk-python, seeded for official resources discovery in the July 2026 SuperSkill catalog.

- ID: `github:anthropics/claude-agent-sdk-python`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFudGhyb3BpY3MvY2xhdWRlLWFnZW50LXNkay1weXRob24

### claude-agent-sdk-typescript

Source-checked GitHub framework from anthropics/claude-agent-sdk-typescript, seeded for official resources discovery in the July 2026 SuperSkill catalog.

- ID: `github:anthropics/claude-agent-sdk-typescript`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFudGhyb3BpY3MvY2xhdWRlLWFnZW50LXNkay10eXBlc2NyaXB0

### claude-code

Source-checked GitHub framework from anthropics/claude-code, seeded for official resources discovery in the July 2026 SuperSkill catalog.

- ID: `github:anthropics/claude-code`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFudGhyb3BpY3MvY2xhdWRlLWNvZGU

### claude-code-action

Source-checked GitHub framework from anthropics/claude-code-action, seeded for official resources discovery in the July 2026 SuperSkill catalog.

- ID: `github:anthropics/claude-code-action`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFudGhyb3BpY3MvY2xhdWRlLWNvZGUtYWN0aW9u

### claude-code-security-review

Source-checked GitHub framework from anthropics/claude-code-security-review, seeded for official resources discovery in the July 2026 SuperSkill catalog.

- ID: `github:anthropics/claude-code-security-review`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFudGhyb3BpY3MvY2xhdWRlLWNvZGUtc2VjdXJpdHktcmV2aWV3

### claude-cookbooks

Source-checked GitHub guide from anthropics/claude-cookbooks, seeded for official resources discovery in the July 2026 SuperSkill catalog.

- ID: `github:anthropics/claude-cookbooks`
- Type: `guide`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFudGhyb3BpY3MvY2xhdWRlLWNvb2tib29rcw

### claude-plugins-community

Source-checked GitHub plugin from anthropics/claude-plugins-community, seeded for official resources discovery in the July 2026 SuperSkill catalog.

- ID: `github:anthropics/claude-plugins-community`
- Type: `plugin`
- Source: `github`
- Works with: `github`, `claude-code`, `codex`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFudGhyb3BpY3MvY2xhdWRlLXBsdWdpbnMtY29tbXVuaXR5

### claude-plugins-official

Source-checked GitHub plugin from anthropics/claude-plugins-official, seeded for official resources discovery in the July 2026 SuperSkill catalog.

- ID: `github:anthropics/claude-plugins-official`
- Type: `plugin`
- Source: `github`
- Works with: `github`, `claude-code`, `codex`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFudGhyb3BpY3MvY2xhdWRlLXBsdWdpbnMtb2ZmaWNpYWw

### claude-quickstarts

Source-checked GitHub framework from anthropics/claude-quickstarts, seeded for official resources discovery in the July 2026 SuperSkill catalog.

- ID: `github:anthropics/claude-quickstarts`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFudGhyb3BpY3MvY2xhdWRlLXF1aWNrc3RhcnRz

### prompt-eng-interactive-tutorial

Source-checked GitHub guide from anthropics/prompt-eng-interactive-tutorial, seeded for official resources discovery in the July 2026 SuperSkill catalog.

- ID: `github:anthropics/prompt-eng-interactive-tutorial`
- Type: `guide`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFudGhyb3BpY3MvcHJvbXB0LWVuZy1pbnRlcmFjdGl2ZS10dXRvcmlhbA

### skills

Source-checked GitHub skill from anthropics/skills, seeded for official resources discovery in the July 2026 SuperSkill catalog.

- ID: `github:anthropics/skills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFudGhyb3BpY3Mvc2tpbGxz

### awesome-mcp-servers

Source-checked GitHub directory from appcypher/awesome-mcp-servers, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:appcypher/awesome-mcp-servers`
- Type: `directory`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOmFwcGN5cGhlci9hd2Vzb21lLW1jcC1zZXJ2ZXJz

### mcp

Source-checked GitHub mcp server from awslabs/mcp, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:awslabs/mcp`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOmF3c2xhYnMvbWNw

### humanizer

Source-checked GitHub skill from blader/humanizer, seeded for single skills discovery in the July 2026 SuperSkill catalog.

- ID: `github:blader/humanizer`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmJsYWRlci9odW1hbml6ZXI

### BMAD-METHOD

Source-checked GitHub workflow from bmad-code-org/BMAD-METHOD, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:bmad-code-org/bmad-method`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmJtYWQtY29kZS1vcmcvYm1hZC1tZXRob2Q

### mcp-server-browserbase

Source-checked GitHub mcp server from browserbase/mcp-server-browserbase, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:browserbase/mcp-server-browserbase`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOmJyb3dzZXJiYXNlL21jcC1zZXJ2ZXItYnJvd3NlcmJhc2U

### agent-os

Source-checked GitHub workflow from buildermethods/agent-os, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:buildermethods/agent-os`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmJ1aWxkZXJtZXRob2RzL2FnZW50LW9z

### deer-flow

Source-checked GitHub framework from bytedance/deer-flow, seeded for orchestration discovery in the July 2026 SuperSkill catalog.

- ID: `github:bytedance/deer-flow`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmJ5dGVkYW5jZS9kZWVyLWZsb3c

### OpenMontage

Source-checked GitHub skill from calesthio/OpenMontage, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:calesthio/openmontage`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNhbGVzdGhpby9vcGVubW9udGFnZQ

### claudekit

Source-checked GitHub command pack from carlrannaberg/claudekit, seeded for plugins commands and configs discovery in the July 2026 SuperSkill catalog.

- ID: `github:carlrannaberg/claudekit`
- Type: `command_pack`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNhcmxyYW5uYWJlcmcvY2xhdWRla2l0

### ccusage

Source-checked GitHub framework from ccusage/ccusage, seeded for harness infrastructure discovery in the July 2026 SuperSkill catalog.

- ID: `github:ccusage/ccusage`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNjdXNhZ2UvY2N1c2FnZQ

### crush

Source-checked GitHub agent runtime from charmbracelet/crush, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:charmbracelet/crush`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNoYXJtYnJhY2VsZXQvY3J1c2g

### cherry-studio

Source-checked GitHub framework from CherryHQ/cherry-studio, seeded for harness infrastructure discovery in the July 2026 SuperSkill catalog.

- ID: `github:cherryhq/cherry-studio`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNoZXJyeWhxL2NoZXJyeS1zdHVkaW8

### claude-code-showcase

Source-checked GitHub guide from ChrisWiles/claude-code-showcase, seeded for guides and learning discovery in the July 2026 SuperSkill catalog.

- ID: `github:chriswiles/claude-code-showcase`
- Type: `guide`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNocmlzd2lsZXMvY2xhdWRlLWNvZGUtc2hvd2Nhc2U

### memory-os

Source-checked GitHub framework from ClaudioDrews/memory-os, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:claudiodrews/memory-os`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNsYXVkaW9kcmV3cy9tZW1vcnktb3M

### cline

Source-checked GitHub agent runtime from cline/cline, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:cline/cline`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNsaW5lL2NsaW5l

### claude-workflow-v2

Source-checked GitHub command pack from CloudAI-X/claude-workflow-v2, seeded for plugins commands and configs discovery in the July 2026 SuperSkill catalog.

- ID: `github:cloudai-x/claude-workflow-v2`
- Type: `command_pack`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNsb3VkYWkteC9jbGF1ZGUtd29ya2Zsb3ctdjI

### mcp-server-cloudflare

Source-checked GitHub mcp server from cloudflare/mcp-server-cloudflare, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:cloudflare/mcp-server-cloudflare`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNsb3VkZmxhcmUvbWNwLXNlcnZlci1jbG91ZGZsYXJl

### codegraph

Source-checked GitHub skill from colbymchenry/codegraph, seeded for single skills discovery in the July 2026 SuperSkill catalog.

- ID: `github:colbymchenry/codegraph`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`, `codex`, `cursor`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNvbGJ5bWNoZW5yeS9jb2RlZ3JhcGg

### claude-memory-compiler

Source-checked GitHub framework from coleam00/claude-memory-compiler, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:coleam00/claude-memory-compiler`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNvbGVhbTAwL2NsYXVkZS1tZW1vcnktY29tcGlsZXI

### context-engineering-intro

Source-checked GitHub workflow from coleam00/context-engineering-intro, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:coleam00/context-engineering-intro`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNvbGVhbTAwL2NvbnRleHQtZW5naW5lZXJpbmctaW50cm8

### awesome-claude-plugins

Source-checked GitHub directory from ComposioHQ/awesome-claude-plugins, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:composiohq/awesome-claude-plugins`
- Type: `directory`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNvbXBvc2lvaHEvYXdlc29tZS1jbGF1ZGUtcGx1Z2lucw

### awesome-claude-skills

Source-checked GitHub directory from ComposioHQ/awesome-claude-skills, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:composiohq/awesome-claude-skills`
- Type: `directory`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNvbXBvc2lvaHEvYXdlc29tZS1jbGF1ZGUtc2tpbGxz

### agents

Source-checked GitHub subagent pack from contains-studio/agents, seeded for agent teams discovery in the July 2026 SuperSkill catalog.

- ID: `github:contains-studio/agents`
- Type: `subagent_pack`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNvbnRhaW5zLXN0dWRpby9hZ2VudHM

### marketingskills

Source-checked GitHub skill from coreyhaines31/marketingskills, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:coreyhaines31/marketingskills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNvcmV5aGFpbmVzMzEvbWFya2V0aW5nc2tpbGxz

### crewAI

Source-checked GitHub framework from crewAIInc/crewAI, seeded for adjacent frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:crewaiinc/crewai`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmNyZXdhaWluYy9jcmV3YWk

### community-plugins

Source-checked GitHub command pack from cursor/community-plugins, seeded for plugins commands and configs discovery in the July 2026 SuperSkill catalog.

- ID: `github:cursor/community-plugins`
- Type: `command_pack`
- Source: `github`
- Works with: `github`, `cursor`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmN1cnNvci9jb21tdW5pdHktcGx1Z2lucw

### dagu

Source-checked GitHub workflow from dagucloud/dagu, seeded for adjacent frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:dagucloud/dagu`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmRhZ3VjbG91ZC9kYWd1

### power-bi-agentic-development

Source-checked GitHub skill from data-goblin/power-bi-agentic-development, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:data-goblin/power-bi-agentic-development`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmRhdGEtZ29ibGluL3Bvd2VyLWJpLWFnZW50aWMtZGV2ZWxvcG1lbnQ

### buildwithclaude

Source-checked GitHub directory from davepoon/buildwithclaude, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:davepoon/buildwithclaude`
- Type: `directory`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmRhdmVwb29uL2J1aWxkd2l0aGNsYXVkZQ

### claude-code-templates

Source-checked GitHub command pack from davila7/claude-code-templates, seeded for plugins commands and configs discovery in the July 2026 SuperSkill catalog.

- ID: `github:davila7/claude-code-templates`
- Type: `command_pack`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmRhdmlsYTcvY2xhdWRlLWNvZGUtdGVtcGxhdGVz

### daytona

Source-checked GitHub framework from daytonaio/daytona, seeded for harness infrastructure discovery in the July 2026 SuperSkill catalog.

- ID: `github:daytonaio/daytona`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmRheXRvbmFpby9kYXl0b25h

### claude-code-infrastructure-showcase

Source-checked GitHub guide from diet103/claude-code-infrastructure-showcase, seeded for guides and learning discovery in the July 2026 SuperSkill catalog.

- ID: `github:diet103/claude-code-infrastructure-showcase`
- Type: `guide`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmRpZXQxMDMvY2xhdWRlLWNvZGUtaW5mcmFzdHJ1Y3R1cmUtc2hvd2Nhc2U

### ponytail

Source-checked GitHub skill from DietrichGebert/ponytail, seeded for single skills discovery in the July 2026 SuperSkill catalog.

- ID: `github:dietrichgebert/ponytail`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmRpZXRyaWNoZ2ViZXJ0L3Bvbnl0YWls

### claude-code-hooks-mastery

Source-checked GitHub config from disler/claude-code-hooks-mastery, seeded for safety and observability discovery in the July 2026 SuperSkill catalog.

- ID: `github:disler/claude-code-hooks-mastery`
- Type: `config`
- Source: `github`
- Works with: `github`, `claude-code`, `cursor`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmRpc2xlci9jbGF1ZGUtY29kZS1ob29rcy1tYXN0ZXJ5

### claude-code-hooks-multi-agent-observability

Source-checked GitHub config from disler/claude-code-hooks-multi-agent-observability, seeded for safety and observability discovery in the July 2026 SuperSkill catalog.

- ID: `github:disler/claude-code-hooks-multi-agent-observability`
- Type: `config`
- Source: `github`
- Works with: `github`, `claude-code`, `cursor`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmRpc2xlci9jbGF1ZGUtY29kZS1ob29rcy1tdWx0aS1hZ2VudC1vYnNlcnZhYmlsaXR5

### infinite-agentic-loop

Source-checked GitHub framework from disler/infinite-agentic-loop, seeded for orchestration discovery in the July 2026 SuperSkill catalog.

- ID: `github:disler/infinite-agentic-loop`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmRpc2xlci9pbmZpbml0ZS1hZ2VudGljLWxvb3A

### Claude-Code-Game-Studios

Source-checked GitHub skill from Donchitos/Claude-Code-Game-Studios, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:donchitos/claude-code-game-studios`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmRvbmNoaXRvcy9jbGF1ZGUtY29kZS1nYW1lLXN0dWRpb3M

### Understand-Anything

Source-checked GitHub skill from Egonex-AI/Understand-Anything, seeded for single skills discovery in the July 2026 SuperSkill catalog.

- ID: `github:egonex-ai/understand-anything`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmVnb25leC1haS91bmRlcnN0YW5kLWFueXRoaW5n

### eigent

Source-checked GitHub framework from eigent-ai/eigent, seeded for harness infrastructure discovery in the July 2026 SuperSkill catalog.

- ID: `github:eigent-ai/eigent`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmVpZ2VudC1haS9laWdlbnQ

### claude-task-master

Source-checked GitHub workflow from eyaltoledano/claude-task-master, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:eyaltoledano/claude-task-master`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `claude-code`, `cursor`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmV5YWx0b2xlZGFuby9jbGF1ZGUtdGFzay1tYXN0ZXI

### cc-switch

Source-checked GitHub command pack from farion1231/cc-switch, seeded for plugins commands and configs discovery in the July 2026 SuperSkill catalog.

- ID: `github:farion1231/cc-switch`
- Type: `command_pack`
- Source: `github`
- Works with: `github`, `claude-code`, `codex`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmZhcmlvbjEyMzEvY2Mtc3dpdGNo

### claude-codex-settings

Source-checked GitHub command pack from fcakyon/claude-codex-settings, seeded for plugins commands and configs discovery in the July 2026 SuperSkill catalog.

- ID: `github:fcakyon/claude-codex-settings`
- Type: `command_pack`
- Source: `github`
- Works with: `github`, `claude-code`, `codex`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmZjYWt5b24vY2xhdWRlLWNvZGV4LXNldHRpbmdz

### eko

Source-checked GitHub workflow from FellouAI/eko, seeded for adjacent frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:fellouai/eko`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmZlbGxvdWFpL2Vrbw

### agents-md

Source-checked GitHub guide from FerroxLabs/agents-md, seeded for guides and learning discovery in the July 2026 SuperSkill catalog.

- ID: `github:ferroxlabs/agents-md`
- Type: `guide`
- Source: `github`
- Works with: `github`
- Canonical: https://superskill.sh/r/Z2l0aHViOmZlcnJveGxhYnMvYWdlbnRzLW1k

### awesome-vibe-coding

Source-checked GitHub directory from filipecalegario/awesome-vibe-coding, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:filipecalegario/awesome-vibe-coding`
- Type: `directory`
- Source: `github`
- Works with: `github`
- Canonical: https://superskill.sh/r/Z2l0aHViOmZpbGlwZWNhbGVnYXJpby9hd2Vzb21lLXZpYmUtY29kaW5n

### firecrawl-mcp-server

Source-checked GitHub mcp server from firecrawl/firecrawl-mcp-server, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:firecrawl/firecrawl-mcp-server`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOmZpcmVjcmF3bC9maXJlY3Jhd2wtbWNwLXNlcnZlcg

### claude-code-ultimate-guide

Source-checked GitHub guide from FlorianBruniaux/claude-code-ultimate-guide, seeded for guides and learning discovery in the July 2026 SuperSkill catalog.

- ID: `github:florianbruniaux/claude-code-ultimate-guide`
- Type: `guide`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmZsb3JpYW5icnVuaWF1eC9jbGF1ZGUtY29kZS11bHRpbWF0ZS1ndWlkZQ

### formkit

Source-checked GitHub framework from formkit/formkit, seeded for harness infrastructure discovery in the July 2026 SuperSkill catalog.

- ID: `github:formkit/formkit`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmZvcm1raXQvZm9ybWtpdA

### gbrain

Source-checked GitHub guide from garrytan/gbrain, seeded for guides and learning discovery in the July 2026 SuperSkill catalog.

- ID: `github:garrytan/gbrain`
- Type: `guide`
- Source: `github`
- Works with: `github`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdhcnJ5dGFuL2dicmFpbg

### gstack

Source-checked GitHub command pack from garrytan/gstack, seeded for plugins commands and configs discovery in the July 2026 SuperSkill catalog.

- ID: `github:garrytan/gstack`
- Type: `command_pack`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdhcnJ5dGFuL2dzdGFjaw

### code-review

Source-checked GitHub config from gemini-cli-extensions/code-review, seeded for safety and observability discovery in the July 2026 SuperSkill catalog.

- ID: `github:gemini-cli-extensions/code-review`
- Type: `config`
- Source: `github`
- Works with: `github`, `cursor`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdlbWluaS1jbGktZXh0ZW5zaW9ucy9jb2RlLXJldmlldw

### conductor

Source-checked GitHub workflow from gemini-cli-extensions/conductor, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:gemini-cli-extensions/conductor`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdlbWluaS1jbGktZXh0ZW5zaW9ucy9jb25kdWN0b3I

### security

Source-checked GitHub config from gemini-cli-extensions/security, seeded for safety and observability discovery in the July 2026 SuperSkill catalog.

- ID: `github:gemini-cli-extensions/security`
- Type: `config`
- Source: `github`
- Works with: `github`, `cursor`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdlbWluaS1jbGktZXh0ZW5zaW9ucy9zZWN1cml0eQ

### agent-teams-lite

Source-checked GitHub subagent pack from Gentleman-Programming/agent-teams-lite, seeded for agent teams discovery in the July 2026 SuperSkill catalog.

- ID: `github:gentleman-programming/agent-teams-lite`
- Type: `subagent_pack`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdlbnRsZW1hbi1wcm9ncmFtbWluZy9hZ2VudC10ZWFtcy1saXRl

### graphiti

Source-checked GitHub framework from getzep/graphiti, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:getzep/graphiti`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdldHplcC9ncmFwaGl0aQ

### awesome-copilot

Source-checked GitHub directory from github/awesome-copilot, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:github/awesome-copilot`
- Type: `directory`
- Source: `github`
- Works with: `github`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdpdGh1Yi9hd2Vzb21lLWNvcGlsb3Q

### github-mcp-server

Source-checked GitHub mcp server from github/github-mcp-server, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:github/github-mcp-server`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdpdGh1Yi9naXRodWItbWNwLXNlcnZlcg

### spec-kit

Source-checked GitHub workflow from github/spec-kit, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:github/spec-kit`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdpdGh1Yi9zcGVjLWtpdA

### Figma-Context-MCP

Source-checked GitHub mcp server from GLips/Figma-Context-MCP, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:glips/figma-context-mcp`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdsaXBzL2ZpZ21hLWNvbnRleHQtbWNw

### flow-next

Source-checked GitHub workflow from gmickel/flow-next, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:gmickel/flow-next`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `claude-code`, `codex`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdtaWNrZWwvZmxvdy1uZXh0

### golutra

Source-checked GitHub framework from golutra/golutra, seeded for orchestration discovery in the July 2026 SuperSkill catalog.

- ID: `github:golutra/golutra`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `codex`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdvbHV0cmEvZ29sdXRyYQ

### gemini-cli

Source-checked GitHub agent runtime from google-gemini/gemini-cli, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:google-gemini/gemini-cli`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdvb2dsZS1nZW1pbmkvZ2VtaW5pLWNsaQ

### stitch-skills

Source-checked GitHub skill from google-labs-code/stitch-skills, seeded for skill frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:google-labs-code/stitch-skills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `mcp`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdvb2dsZS1sYWJzLWNvZGUvc3RpdGNoLXNraWxscw

### adk-python

Source-checked GitHub framework from google/adk-python, seeded for adjacent frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:google/adk-python`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdvb2dsZS9hZGstcHl0aG9u

### cli

Source-checked GitHub framework from googleworkspace/cli, seeded for harness infrastructure discovery in the July 2026 SuperSkill catalog.

- ID: `github:googleworkspace/cli`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdvb2dsZXdvcmtzcGFjZS9jbGk

### cc-sdd

Source-checked GitHub workflow from gotalab/cc-sdd, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:gotalab/cc-sdd`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdvdGFsYWIvY2Mtc2Rk

### context-infrastructure

Source-checked GitHub framework from grapeot/context-infrastructure, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:grapeot/context-infrastructure`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdyYXBlb3QvY29udGV4dC1pbmZyYXN0cnVjdHVyZQ

### graphify

Source-checked GitHub skill from Graphify-Labs/graphify, seeded for single skills discovery in the July 2026 SuperSkill catalog.

- ID: `github:graphify-labs/graphify`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdyYXBoaWZ5LWxhYnMvZ3JhcGhpZnk

### get-shit-done

Source-checked GitHub workflow from gsd-build/get-shit-done, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:gsd-build/get-shit-done`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmdzZC1idWlsZC9nZXQtc2hpdC1kb25l

### headroom

Source-checked GitHub framework from headroomlabs-ai/headroom, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:headroomlabs-ai/headroom`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmhlYWRyb29tbGFicy1haS9oZWFkcm9vbQ

### awesome-agent-skills

Source-checked GitHub directory from heilcheng/awesome-agent-skills, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:heilcheng/awesome-agent-skills`
- Type: `directory`
- Source: `github`
- Works with: `github`
- Canonical: https://superskill.sh/r/Z2l0aHViOmhlaWxjaGVuZy9hd2Vzb21lLWFnZW50LXNraWxscw

### awesome-openclaw-usecases

Source-checked GitHub directory from hesamsheikh/awesome-openclaw-usecases, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:hesamsheikh/awesome-openclaw-usecases`
- Type: `directory`
- Source: `github`
- Works with: `github`
- Canonical: https://superskill.sh/r/Z2l0aHViOmhlc2Ftc2hlaWtoL2F3ZXNvbWUtb3BlbmNsYXctdXNlY2FzZXM

### awesome-claude-code

Source-checked GitHub directory from hesreallyhim/awesome-claude-code, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:hesreallyhim/awesome-claude-code`
- Type: `directory`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmhlc3JlYWxseWhpbS9hd2Vzb21lLWNsYXVkZS1jb2Rl

### nanobot

Source-checked GitHub agent runtime from HKUDS/nanobot, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:hkuds/nanobot`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmhrdWRzL25hbm9ib3Q

### ha-mcp

Source-checked GitHub mcp server from homeassistant-ai/ha-mcp, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:homeassistant-ai/ha-mcp`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOmhvbWVhc3Npc3RhbnQtYWkvaGEtbWNw

### smolagents

Source-checked GitHub framework from huggingface/smolagents, seeded for adjacent frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:huggingface/smolagents`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmh1Z2dpbmdmYWNlL3Ntb2xhZ2VudHM

### brooks-lint

Source-checked GitHub config from hyhmrright/brooks-lint, seeded for safety and observability discovery in the July 2026 SuperSkill catalog.

- ID: `github:hyhmrright/brooks-lint`
- Type: `config`
- Source: `github`
- Works with: `github`, `cursor`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmh5aG1ycmlnaHQvYnJvb2tzLWxpbnQ

### git-mcp

Source-checked GitHub mcp server from idosal/git-mcp, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:idosal/git-mcp`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOmlkb3NhbC9naXQtbWNw

### academic-research-skills

Source-checked GitHub skill from Imbad0202/academic-research-skills, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:imbad0202/academic-research-skills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmltYmFkMDIwMi9hY2FkZW1pYy1yZXNlYXJjaC1za2lsbHM

### AionUi

Source-checked GitHub framework from iOfficeAI/AionUi, seeded for harness infrastructure discovery in the July 2026 SuperSkill catalog.

- ID: `github:iofficeai/aionui`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmlvZmZpY2VhaS9haW9udWk

### awesome-ai-devtools

Source-checked GitHub directory from jamesmurdza/awesome-ai-devtools, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:jamesmurdza/awesome-ai-devtools`
- Type: `directory`
- Source: `github`
- Works with: `github`
- Canonical: https://superskill.sh/r/Z2l0aHViOmphbWVzbXVyZHphL2F3ZXNvbWUtYWktZGV2dG9vbHM

### claude-code-config

Source-checked GitHub command pack from jarrodwatts/claude-code-config, seeded for plugins commands and configs discovery in the July 2026 SuperSkill catalog.

- ID: `github:jarrodwatts/claude-code-config`
- Type: `command_pack`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmphcnJvZHdhdHRzL2NsYXVkZS1jb2RlLWNvbmZpZw

### awesome-remote-mcp-servers

Source-checked GitHub directory from jaw9c/awesome-remote-mcp-servers, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:jaw9c/awesome-remote-mcp-servers`
- Type: `directory`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOmphdzljL2F3ZXNvbWUtcmVtb3RlLW1jcC1zZXJ2ZXJz

### overstory

Source-checked GitHub framework from jayminwest/overstory, seeded for orchestration discovery in the July 2026 SuperSkill catalog.

- ID: `github:jayminwest/overstory`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmpheW1pbndlc3Qvb3ZlcnN0b3J5

### claude-skills

Source-checked GitHub skill from Jeffallan/claude-skills, seeded for skill frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:jeffallan/claude-skills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmplZmZhbGxhbi9jbGF1ZGUtc2tpbGxz

### claude-code-plugins-plus-skills

Source-checked GitHub command pack from jeremylongshore/claude-code-plugins-plus-skills, seeded for plugins commands and configs discovery in the July 2026 SuperSkill catalog.

- ID: `github:jeremylongshore/claude-code-plugins-plus-skills`
- Type: `command_pack`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmplcmVteWxvbmdzaG9yZS9jbGF1ZGUtY29kZS1wbHVnaW5zLXBsdXMtc2tpbGxz

### baoyu-design

Source-checked GitHub skill from JimLiu/baoyu-design, seeded for single skills discovery in the July 2026 SuperSkill catalog.

- ID: `github:jimliu/baoyu-design`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmppbWxpdS9iYW95dS1kZXNpZ24

### baoyu-skills

Source-checked GitHub skill from JimLiu/baoyu-skills, seeded for skill frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:jimliu/baoyu-skills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmppbWxpdS9iYW95dS1za2lsbHM

### agency-agents-zh

Source-checked GitHub subagent pack from jnMetaCode/agency-agents-zh, seeded for agent teams discovery in the July 2026 SuperSkill catalog.

- ID: `github:jnmetacode/agency-agents-zh`
- Type: `subagent_pack`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmpubWV0YWNvZGUvYWdlbmN5LWFnZW50cy16aA

### superpowers-zh

Source-checked GitHub skill from jnMetaCode/superpowers-zh, seeded for skill frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:jnmetacode/superpowers-zh`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmpubWV0YWNvZGUvc3VwZXJwb3dlcnMtemg

### caveman

Source-checked GitHub skill from JuliusBrussee/caveman, seeded for single skills discovery in the July 2026 SuperSkill catalog.

- ID: `github:juliusbrussee/caveman`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmp1bGl1c2JydXNzZWUvY2F2ZW1hbg

### scientific-agent-skills

Source-checked GitHub skill from K-Dense-AI/scientific-agent-skills, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:k-dense-ai/scientific-agent-skills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmstZGVuc2UtYWkvc2NpZW50aWZpYy1hZ2VudC1za2lsbHM

### cc-safety-net

Source-checked GitHub config from kenryu42/cc-safety-net, seeded for safety and observability discovery in the July 2026 SuperSkill catalog.

- ID: `github:kenryu42/cc-safety-net`
- Type: `config`
- Source: `github`
- Works with: `github`, `cursor`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmtlbnJ5dTQyL2NjLXNhZmV0eS1uZXQ

### obsidian-skills

Source-checked GitHub skill from kepano/obsidian-skills, seeded for skill frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:kepano/obsidian-skills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmtlcGFuby9vYnNpZGlhbi1za2lsbHM

### claude-code-ios-dev-guide

Source-checked GitHub guide from keskinonur/claude-code-ios-dev-guide, seeded for guides and learning discovery in the July 2026 SuperSkill catalog.

- ID: `github:keskinonur/claude-code-ios-dev-guide`
- Type: `guide`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmtlc2tpbm9udXIvY2xhdWRlLWNvZGUtaW9zLWRldi1ndWlkZQ

### kilocode

Source-checked GitHub agent runtime from Kilo-Org/kilocode, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:kilo-org/kilocode`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmtpbG8tb3JnL2tpbG9jb2Rl

### suna

Source-checked GitHub agent runtime from kortix-ai/suna, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:kortix-ai/suna`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmtvcnRpeC1haS9zdW5h

### swarms

Source-checked GitHub framework from kyegomez/swarms, seeded for orchestration discovery in the July 2026 SuperSkill catalog.

- ID: `github:kyegomez/swarms`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmt5ZWdvbWV6L3N3YXJtcw

### langgraph

Source-checked GitHub framework from langchain-ai/langgraph, seeded for adjacent frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:langchain-ai/langgraph`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmxhbmdjaGFpbi1haS9sYW5nZ3JhcGg

### dify

Source-checked GitHub workflow from langgenius/dify, seeded for adjacent frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:langgenius/dify`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmxhbmdnZW5pdXMvZGlmeQ

### mcp-agent

Source-checked GitHub workflow from lastmile-ai/mcp-agent, seeded for adjacent frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:lastmile-ai/mcp-agent`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `mcp`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOmxhc3RtaWxlLWFpL21jcC1hZ2VudA

### taste-skill

Source-checked GitHub skill from Leonxlnx/taste-skill, seeded for single skills discovery in the July 2026 SuperSkill catalog.

- ID: `github:leonxlnx/taste-skill`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmxlb254bG54L3Rhc3RlLXNraWxs

### ai-guide

Source-checked GitHub guide from liyupi/ai-guide, seeded for guides and learning discovery in the July 2026 SuperSkill catalog.

- ID: `github:liyupi/ai-guide`
- Type: `guide`
- Source: `github`
- Works with: `github`
- Canonical: https://superskill.sh/r/Z2l0aHViOmxpeXVwaS9haS1ndWlkZQ

### claude-howto

Source-checked GitHub guide from luongnv89/claude-howto, seeded for guides and learning discovery in the July 2026 SuperSkill catalog.

- ID: `github:luongnv89/claude-howto`
- Type: `guide`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOmx1b25nbnY4OS9jbGF1ZGUtaG93dG8

### Claude-Code-Usage-Monitor

Source-checked GitHub framework from Maciek-roboblog/Claude-Code-Usage-Monitor, seeded for harness infrastructure discovery in the July 2026 SuperSkill catalog.

- ID: `github:maciek-roboblog/claude-code-usage-monitor`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm1hY2llay1yb2JvYmxvZy9jbGF1ZGUtY29kZS11c2FnZS1tb25pdG9y

### notion-mcp-server

Source-checked GitHub mcp server from makenotion/notion-mcp-server, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:makenotion/notion-mcp-server`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOm1ha2Vub3Rpb24vbm90aW9uLW1jcC1zZXJ2ZXI

### mcp-use

Source-checked GitHub mcp server from mcp-use/mcp-use, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:mcp-use/mcp-use`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOm1jcC11c2UvbWNwLXVzZQ

### mem0

Source-checked GitHub framework from mem0ai/mem0, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:mem0ai/mem0`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm1lbTBhaS9tZW0w

### metorial

Source-checked GitHub mcp server from metorial/metorial, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:metorial/metorial`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOm1ldG9yaWFsL21ldG9yaWFs

### playwright-mcp

Source-checked GitHub mcp server from microsoft/playwright-mcp, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:microsoft/playwright-mcp`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOm1pY3Jvc29mdC9wbGF5d3JpZ2h0LW1jcA

### SkillOpt

Source-checked GitHub skill from microsoft/SkillOpt, seeded for skill frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:microsoft/skillopt`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOm1pY3Jvc29mdC9za2lsbG9wdA

### context-mode

Source-checked GitHub framework from mksglu/context-mode, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:mksglu/context-mode`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm1rc2dsdS9jb250ZXh0LW1vZGU

### servers

Source-checked GitHub mcp server from modelcontextprotocol/servers, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:modelcontextprotocol/servers`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOm1vZGVsY29udGV4dHByb3RvY29sL3NlcnZlcnM

### Anthropic-Cybersecurity-Skills

Source-checked GitHub skill from mukul975/Anthropic-Cybersecurity-Skills, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:mukul975/anthropic-cybersecurity-skills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOm11a3VsOTc1L2FudGhyb3BpYy1jeWJlcnNlY3VyaXR5LXNraWxscw

### andrej-karpathy-skills

Source-checked GitHub skill from multica-ai/andrej-karpathy-skills, seeded for skill frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:multica-ai/andrej-karpathy-skills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOm11bHRpY2EtYWkvYW5kcmVqLWthcnBhdGh5LXNraWxscw

### claude-code-router

Source-checked GitHub framework from musistudio/claude-code-router, seeded for harness infrastructure discovery in the July 2026 SuperSkill catalog.

- ID: `github:musistudio/claude-code-router`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm11c2lzdHVkaW8vY2xhdWRlLWNvZGUtcm91dGVy

### last30days-skill

Source-checked GitHub skill from mvanhorn/last30days-skill, seeded for single skills discovery in the July 2026 SuperSkill catalog.

- ID: `github:mvanhorn/last30days-skill`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOm12YW5ob3JuL2xhc3QzMGRheXMtc2tpbGw

### nanoclaw

Source-checked GitHub agent runtime from nanocoai/nanoclaw, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:nanocoai/nanoclaw`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm5hbm9jb2FpL25hbm9jbGF3

### ui-ux-pro-max-skill

Source-checked GitHub skill from nextlevelbuilder/ui-ux-pro-max-skill, seeded for single skills discovery in the July 2026 SuperSkill catalog.

- ID: `github:nextlevelbuilder/ui-ux-pro-max-skill`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOm5leHRsZXZlbGJ1aWxkZXIvdWktdXgtcHJvLW1heC1za2lsbA

### tdd-guard

Source-checked GitHub workflow from nizos/tdd-guard, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:nizos/tdd-guard`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm5pem9zL3RkZC1ndWFyZA

### CCPlugins

Source-checked GitHub command pack from notlikeDev/CCPlugins, seeded for plugins commands and configs discovery in the July 2026 SuperSkill catalog.

- ID: `github:notlikedev/ccplugins`
- Type: `command_pack`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm5vdGxpa2VkZXYvY2NwbHVnaW5z

### hermes-agent

Source-checked GitHub agent runtime from NousResearch/hermes-agent, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:nousresearch/hermes-agent`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm5vdXNyZXNlYXJjaC9oZXJtZXMtYWdlbnQ

### NotFair

Source-checked GitHub skill from nowork-studio/NotFair, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:nowork-studio/notfair`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOm5vd29yay1zdHVkaW8vbm90ZmFpcg

### n-skills

Source-checked GitHub command pack from numman-ali/n-skills, seeded for plugins commands and configs discovery in the July 2026 SuperSkill catalog.

- ID: `github:numman-ali/n-skills`
- Type: `command_pack`
- Source: `github`
- Works with: `github`, `claude-code`, `codex`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm51bW1hbi1hbGkvbi1za2lsbHM

### NemoClaw

Source-checked GitHub framework from NVIDIA/NemoClaw, seeded for harness infrastructure discovery in the July 2026 SuperSkill catalog.

- ID: `github:nvidia/nemoclaw`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm52aWRpYS9uZW1vY2xhdw

### claude-octopus

Source-checked GitHub framework from nyldn/claude-octopus, seeded for orchestration discovery in the July 2026 SuperSkill catalog.

- ID: `github:nyldn/claude-octopus`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm55bGRuL2NsYXVkZS1vY3RvcHVz

### superpowers

Source-checked GitHub skill from obra/superpowers, seeded for skill frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:obra/superpowers`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOm9icmEvc3VwZXJwb3dlcnM

### superpowers-marketplace

Source-checked GitHub skill from obra/superpowers-marketplace, seeded for skill frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:obra/superpowers-marketplace`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOm9icmEvc3VwZXJwb3dlcnMtbWFya2V0cGxhY2U

### ai-system-design-guide

Source-checked GitHub guide from ombharatiya/ai-system-design-guide, seeded for guides and learning discovery in the July 2026 SuperSkill catalog.

- ID: `github:ombharatiya/ai-system-design-guide`
- Type: `guide`
- Source: `github`
- Works with: `github`
- Canonical: https://superskill.sh/r/Z2l0aHViOm9tYmhhcmF0aXlhL2FpLXN5c3RlbS1kZXNpZ24tZ3VpZGU

### omnigent

Source-checked GitHub framework from omnigent-ai/omnigent, seeded for orchestration discovery in the July 2026 SuperSkill catalog.

- ID: `github:omnigent-ai/omnigent`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `codex`, `cursor`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm9tbmlnZW50LWFpL29tbmlnZW50

### claude-code-workflows

Source-checked GitHub workflow from OneRedOak/claude-code-workflows, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:oneredoak/claude-code-workflows`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm9uZXJlZG9hay9jbGF1ZGUtY29kZS13b3JrZmxvd3M

### Humanizer-zh

Source-checked GitHub skill from op7418/Humanizer-zh, seeded for single skills discovery in the July 2026 SuperSkill catalog.

- ID: `github:op7418/humanizer-zh`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOm9wNzQxOC9odW1hbml6ZXItemg

### codex

Source-checked GitHub agent runtime from openai/codex, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:openai/codex`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `codex`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm9wZW5haS9jb2RleA

### openai-agents-python

Source-checked GitHub framework from openai/openai-agents-python, seeded for adjacent frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:openai/openai-agents-python`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm9wZW5haS9vcGVuYWktYWdlbnRzLXB5dGhvbg

### openclaw

Source-checked GitHub agent runtime from openclaw/openclaw, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:openclaw/openclaw`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm9wZW5jbGF3L29wZW5jbGF3

### OpenHands

Source-checked GitHub agent runtime from OpenHands/OpenHands, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:openhands/openhands`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm9wZW5oYW5kcy9vcGVuaGFuZHM

### serena

Source-checked GitHub mcp server from oraios/serena, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:oraios/serena`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOm9yYWlvcy9zZXJlbmE

### AI-Research-SKILLs

Source-checked GitHub skill from Orchestra-Research/AI-Research-SKILLs, seeded for skill frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:orchestra-research/ai-research-skills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOm9yY2hlc3RyYS1yZXNlYXJjaC9haS1yZXNlYXJjaC1za2lsbHM

### planning-with-files

Source-checked GitHub workflow from OthmanAdi/planning-with-files, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:othmanadi/planning-with-files`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOm90aG1hbmFkaS9wbGFubmluZy13aXRoLWZpbGVz

### Agent-Reach

Source-checked GitHub skill from Panniantong/Agent-Reach, seeded for single skills discovery in the July 2026 SuperSkill catalog.

- ID: `github:panniantong/agent-reach`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnBhbm5pYW50b25nL2FnZW50LXJlYWNo

### medusa

Source-checked GitHub config from Pantheon-Security/medusa, seeded for safety and observability discovery in the July 2026 SuperSkill catalog.

- ID: `github:pantheon-security/medusa`
- Type: `config`
- Source: `github`
- Works with: `github`, `claude-code`, `cursor`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnBhbnRoZW9uLXNlY3VyaXR5L21lZHVzYQ

### Continuous-Claude-v3

Source-checked GitHub framework from parcadei/Continuous-Claude-v3, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:parcadei/continuous-claude-v3`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnBhcmNhZGVpL2NvbnRpbnVvdXMtY2xhdWRlLXYz

### awesome-cursorrules

Source-checked GitHub directory from PatrickJS/awesome-cursorrules, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:patrickjs/awesome-cursorrules`
- Type: `directory`
- Source: `github`
- Works with: `github`, `cursor`
- Canonical: https://superskill.sh/r/Z2l0aHViOnBhdHJpY2tqcy9hd2Vzb21lLWN1cnNvcnJ1bGVz

### AppGenesisForge

Source-checked GitHub subagent pack from pcliangx/AppGenesisForge, seeded for agent teams discovery in the July 2026 SuperSkill catalog.

- ID: `github:pcliangx/appgenesisforge`
- Type: `subagent_pack`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnBjbGlhbmd4L2FwcGdlbmVzaXNmb3JnZQ

### pm-skills

Source-checked GitHub skill from phuryn/pm-skills, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:phuryn/pm-skills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnBodXJ5bi9wbS1za2lsbHM

### claude-code-spec-workflow

Source-checked GitHub workflow from Pimzino/claude-code-spec-workflow, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:pimzino/claude-code-spec-workflow`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnBpbXppbm8vY2xhdWRlLWNvZGUtc3BlYy13b3JrZmxvdw

### fastmcp

Source-checked GitHub mcp server from PrefectHQ/fastmcp, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:prefecthq/fastmcp`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOnByZWZlY3RocS9mYXN0bWNw

### agor

Source-checked GitHub framework from preset-io/agor, seeded for orchestration discovery in the July 2026 SuperSkill catalog.

- ID: `github:preset-io/agor`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `codex`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnByZXNldC1pby9hZ29y

### awesome-mcp-servers

Source-checked GitHub directory from punkpeye/awesome-mcp-servers, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:punkpeye/awesome-mcp-servers`
- Type: `directory`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOnB1bmtwZXllL2F3ZXNvbWUtbWNwLXNlcnZlcnM

### fastmcp

Source-checked GitHub mcp server from punkpeye/fastmcp, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:punkpeye/fastmcp`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOnB1bmtwZXllL2Zhc3RtY3A

### pydantic-ai

Source-checked GitHub framework from pydantic/pydantic-ai, seeded for adjacent frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:pydantic/pydantic-ai`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnB5ZGFudGljL3B5ZGFudGljLWFp

### Claude-Command-Suite

Source-checked GitHub command pack from qdhenry/Claude-Command-Suite, seeded for plugins commands and configs discovery in the July 2026 SuperSkill catalog.

- ID: `github:qdhenry/claude-command-suite`
- Type: `command_pack`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnFkaGVucnkvY2xhdWRlLWNvbW1hbmQtc3VpdGU

### claude-equity-research

Source-checked GitHub skill from quant-sentiment-ai/claude-equity-research, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:quant-sentiment-ai/claude-equity-research`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnF1YW50LXNlbnRpbWVudC1haS9jbGF1ZGUtZXF1aXR5LXJlc2VhcmNo

### qwen-code

Source-checked GitHub agent runtime from QwenLM/qwen-code, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:qwenlm/qwen-code`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnF3ZW5sbS9xd2VuLWNvZGU

### recall

Source-checked GitHub framework from raiyanyahya/recall, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:raiyanyahya/recall`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnJhaXlhbnlhaHlhL3JlY2FsbA

### claude-smart

Source-checked GitHub config from ReflexioAI/claude-smart, seeded for safety and observability discovery in the July 2026 SuperSkill catalog.

- ID: `github:reflexioai/claude-smart`
- Type: `config`
- Source: `github`
- Works with: `github`, `claude-code`, `cursor`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnJlZmxleGlvYWkvY2xhdWRlLXNtYXJ0

### refly

Source-checked GitHub skill from refly-ai/refly, seeded for skill frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:refly-ai/refly`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnJlZmx5LWFpL3JlZmx5

### harness

Source-checked GitHub subagent pack from revfactory/harness, seeded for agent teams discovery in the July 2026 SuperSkill catalog.

- ID: `github:revfactory/harness`
- Type: `subagent_pack`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnJldmZhY3RvcnkvaGFybmVzcw

### agentmemory

Source-checked GitHub framework from rohitg00/agentmemory, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:rohitg00/agentmemory`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnJvaGl0ZzAwL2FnZW50bWVtb3J5

### awesome-claude-code-toolkit

Source-checked GitHub directory from rohitg00/awesome-claude-code-toolkit, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:rohitg00/awesome-claude-code-toolkit`
- Type: `directory`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnJvaGl0ZzAwL2F3ZXNvbWUtY2xhdWRlLWNvZGUtdG9vbGtpdA

### pro-workflow

Source-checked GitHub workflow from rohitg00/pro-workflow, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:rohitg00/pro-workflow`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnJvaGl0ZzAwL3Byby13b3JrZmxvdw

### paperasse

Source-checked GitHub skill from romainsimon/paperasse, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:romainsimon/paperasse`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnJvbWFpbnNpbW9uL3BhcGVyYXNzZQ

### CLIProxyAPI

Source-checked GitHub framework from router-for-me/CLIProxyAPI, seeded for harness infrastructure discovery in the July 2026 SuperSkill catalog.

- ID: `github:router-for-me/cliproxyapi`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnJvdXRlci1mb3ItbWUvY2xpcHJveHlhcGk

### rtk

Source-checked GitHub framework from rtk-ai/rtk, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:rtk-ai/rtk`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnJ0ay1haS9ydGs

### ruflo

Source-checked GitHub framework from ruvnet/ruflo, seeded for orchestration discovery in the July 2026 SuperSkill catalog.

- ID: `github:ruvnet/ruflo`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnJ1dm5ldC9ydWZsbw

### cc-skills-golang

Source-checked GitHub skill from samber/cc-skills-golang, seeded for single skills discovery in the July 2026 SuperSkill catalog.

- ID: `github:samber/cc-skills-golang`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNhbWJlci9jYy1za2lsbHMtZ29sYW5n

### Generative-Media-Skills

Source-checked GitHub skill from SamurAIGPT/Generative-Media-Skills, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:samuraigpt/generative-media-skills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNhbXVyYWlncHQvZ2VuZXJhdGl2ZS1tZWRpYS1za2lsbHM

### claude-forge

Source-checked GitHub command pack from sangrokjung/claude-forge, seeded for plugins commands and configs discovery in the July 2026 SuperSkill catalog.

- ID: `github:sangrokjung/claude-forge`
- Type: `command_pack`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNhbmdyb2tqdW5nL2NsYXVkZS1mb3JnZQ

### career-ops

Source-checked GitHub skill from santifer/career-ops, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:santifer/career-ops`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNhbnRpZmVyL2NhcmVlci1vcHM

### screenpipe

Source-checked GitHub framework from screenpipe/screenpipe, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:screenpipe/screenpipe`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNjcmVlbnBpcGUvc2NyZWVucGlwZQ

### Citadel

Source-checked GitHub framework from SethGammon/Citadel, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:sethgammon/citadel`
- Type: `framework`
- Source: `github`
- Works with: `github`, `codex`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNldGhnYW1tb24vY2l0YWRlbA

### mckinsey-pptx

Source-checked GitHub command pack from seulee26/mckinsey-pptx, seeded for plugins commands and configs discovery in the July 2026 SuperSkill catalog.

- ID: `github:seulee26/mckinsey-pptx`
- Type: `command_pack`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNldWxlZTI2L21ja2luc2V5LXBwdHg

### claude-code-prompt-improver

Source-checked GitHub config from severity1/claude-code-prompt-improver, seeded for safety and observability discovery in the July 2026 SuperSkill catalog.

- ID: `github:severity1/claude-code-prompt-improver`
- Type: `config`
- Source: `github`
- Works with: `github`, `claude-code`, `cursor`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNldmVyaXR5MS9jbGF1ZGUtY29kZS1wcm9tcHQtaW1wcm92ZXI

### claude-code-best-practice

Source-checked GitHub guide from shanraisshan/claude-code-best-practice, seeded for guides and learning discovery in the July 2026 SuperSkill catalog.

- ID: `github:shanraisshan/claude-code-best-practice`
- Type: `guide`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNoYW5yYWlzc2hhbi9jbGF1ZGUtY29kZS1iZXN0LXByYWN0aWNl

### learn-claude-code

Source-checked GitHub agent runtime from shareAI-lab/learn-claude-code, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:shareai-lab/learn-claude-code`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNoYXJlYWktbGFiL2xlYXJuLWNsYXVkZS1jb2Rl

### claude-code-workflows

Source-checked GitHub workflow from shinpr/claude-code-workflows, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:shinpr/claude-code-workflows`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNoaW5wci9jbGF1ZGUtY29kZS13b3JrZmxvd3M

### shotgun

Source-checked GitHub workflow from shotgun-sh/shotgun, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:shotgun-sh/shotgun`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNob3RndW4tc2gvc2hvdGd1bg

### awesome-llm-apps

Source-checked GitHub directory from Shubhamsaboo/awesome-llm-apps, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:shubhamsaboo/awesome-llm-apps`
- Type: `directory`
- Source: `github`
- Works with: `github`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNodWJoYW1zYWJvby9hd2Vzb21lLWxsbS1hcHBz

### antigravity-awesome-skills

Source-checked GitHub directory from sickn33/antigravity-awesome-skills, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:sickn33/antigravity-awesome-skills`
- Type: `directory`
- Source: `github`
- Works with: `github`, `claude-code`, `codex`, `cursor`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNpY2tuMzMvYW50aWdyYXZpdHktYXdlc29tZS1za2lsbHM

### sim

Source-checked GitHub framework from simstudioai/sim, seeded for adjacent frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:simstudioai/sim`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNpbXN0dWRpb2FpL3NpbQ

### picoclaw

Source-checked GitHub agent runtime from sipeed/picoclaw, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:sipeed/picoclaw`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNpcGVlZC9waWNvY2xhdw

### claudecodeui

Source-checked GitHub framework from siteboon/claudecodeui, seeded for harness infrastructure discovery in the July 2026 SuperSkill catalog.

- ID: `github:siteboon/claudecodeui`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `codex`, `cursor`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNpdGVib29uL2NsYXVkZWNvZGV1aQ

### claude-squad

Source-checked GitHub framework from smtg-ai/claude-squad, seeded for orchestration discovery in the July 2026 SuperSkill catalog.

- ID: `github:smtg-ai/claude-squad`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `codex`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNtdGctYWkvY2xhdWRlLXNxdWFk

### ai-dev-tasks

Source-checked GitHub workflow from snarktank/ai-dev-tasks, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:snarktank/ai-dev-tasks`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNuYXJrdGFuay9haS1kZXYtdGFza3M

### mcp-atlassian

Source-checked GitHub mcp server from sooperset/mcp-atlassian, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:sooperset/mcp-atlassian`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOnNvb3BlcnNldC9tY3AtYXRsYXNzaWFu

### mcp

Source-checked GitHub mcp server from supabase/mcp, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:supabase/mcp`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOnN1cGFiYXNlL21jcA

### swarmclaw

Source-checked GitHub framework from swarmclawai/swarmclaw, seeded for orchestration discovery in the July 2026 SuperSkill catalog.

- ID: `github:swarmclawai/swarmclaw`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnN3YXJtY2xhd2FpL3N3YXJtY2xhdw

### agent-skills

Source-checked GitHub skill from tech-leads-club/agent-skills, seeded for skill frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:tech-leads-club/agent-skills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnRlY2gtbGVhZHMtY2x1Yi9hZ2VudC1za2lsbHM

### notebooklm-py

Source-checked GitHub skill from teng-lin/notebooklm-py, seeded for single skills discovery in the July 2026 SuperSkill catalog.

- ID: `github:teng-lin/notebooklm-py`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnRlbmctbGluL25vdGVib29rbG0tcHk

### PocketFlow

Source-checked GitHub framework from The-Pocket/PocketFlow, seeded for adjacent frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:the-pocket/pocketflow`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnRoZS1wb2NrZXQvcG9ja2V0Zmxvdw

### claude-code-mastery

Source-checked GitHub guide from TheDecipherist/claude-code-mastery, seeded for guides and learning discovery in the July 2026 SuperSkill catalog.

- ID: `github:thedecipherist/claude-code-mastery`
- Type: `guide`
- Source: `github`
- Works with: `github`, `claude-code`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOnRoZWRlY2lwaGVyaXN0L2NsYXVkZS1jb2RlLW1hc3Rlcnk

### claude-mem

Source-checked GitHub framework from thedotmack/claude-mem, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:thedotmack/claude-mem`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnRoZWRvdG1hY2svY2xhdWRlLW1lbQ

### pg-aiguide

Source-checked GitHub mcp server from timescale/pg-aiguide, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:timescale/pg-aiguide`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOnRpbWVzY2FsZS9wZy1haWd1aWRl

### cognee

Source-checked GitHub framework from topoteretes/cognee, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:topoteretes/cognee`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnRvcG90ZXJldGVzL2NvZ25lZQ

### skills

Source-checked GitHub skill from trailofbits/skills, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:trailofbits/skills`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnRyYWlsb2ZiaXRzL3NraWxscw

### awesome-claude-skills

Source-checked GitHub directory from travisvn/awesome-claude-skills, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:travisvn/awesome-claude-skills`
- Type: `directory`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnRyYXZpc3ZuL2F3ZXNvbWUtY2xhdWRlLXNraWxscw

### SwiftUI-Agent-Skill

Source-checked GitHub skill from twostraws/SwiftUI-Agent-Skill, seeded for single skills discovery in the July 2026 SuperSkill catalog.

- ID: `github:twostraws/swiftui-agent-skill`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnR3b3N0cmF3cy9zd2lmdHVpLWFnZW50LXNraWxs

### context7

Source-checked GitHub mcp server from upstash/context7, seeded for MCP servers discovery in the July 2026 SuperSkill catalog.

- ID: `github:upstash/context7`
- Type: `mcp_server`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOnVwc3Rhc2gvY29udGV4dDc

### awesome-claude-agents

Source-checked GitHub subagent pack from vijaythecoder/awesome-claude-agents, seeded for agent teams discovery in the July 2026 SuperSkill catalog.

- ID: `github:vijaythecoder/awesome-claude-agents`
- Type: `subagent_pack`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnZpamF5dGhlY29kZXIvYXdlc29tZS1jbGF1ZGUtYWdlbnRz

### awesome-agent-skills

Source-checked GitHub directory from VoltAgent/awesome-agent-skills, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:voltagent/awesome-agent-skills`
- Type: `directory`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnZvbHRhZ2VudC9hd2Vzb21lLWFnZW50LXNraWxscw

### awesome-claude-code-subagents

Source-checked GitHub directory from VoltAgent/awesome-claude-code-subagents, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:voltagent/awesome-claude-code-subagents`
- Type: `directory`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnZvbHRhZ2VudC9hd2Vzb21lLWNsYXVkZS1jb2RlLXN1YmFnZW50cw

### awesome-openclaw-skills

Source-checked GitHub directory from VoltAgent/awesome-openclaw-skills, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:voltagent/awesome-openclaw-skills`
- Type: `directory`
- Source: `github`
- Works with: `github`
- Canonical: https://superskill.sh/r/Z2l0aHViOnZvbHRhZ2VudC9hd2Vzb21lLW9wZW5jbGF3LXNraWxscw

### Auto-claude-code-research-in-sleep

Source-checked GitHub skill from wanshuiyin/Auto-claude-code-research-in-sleep, seeded for domain skill packs discovery in the July 2026 SuperSkill catalog.

- ID: `github:wanshuiyin/auto-claude-code-research-in-sleep`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOndhbnNodWl5aW4vYXV0by1jbGF1ZGUtY29kZS1yZXNlYXJjaC1pbi1zbGVlcA

### Claude-Code-Everything-You-Need-to-Know

Source-checked GitHub guide from wesammustafa/Claude-Code-Everything-You-Need-to-Know, seeded for guides and learning discovery in the July 2026 SuperSkill catalog.

- ID: `github:wesammustafa/claude-code-everything-you-need-to-know`
- Type: `guide`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOndlc2FtbXVzdGFmYS9jbGF1ZGUtY29kZS1ldmVyeXRoaW5nLXlvdS1uZWVkLXRvLWtub3c

### opcode

Source-checked GitHub framework from winfunc/opcode, seeded for harness infrastructure discovery in the July 2026 SuperSkill catalog.

- ID: `github:winfunc/opcode`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOndpbmZ1bmMvb3Bjb2Rl

### PRPs-agentic-eng

Source-checked GitHub workflow from Wirasm/PRPs-agentic-eng, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:wirasm/prps-agentic-eng`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOndpcmFzbS9wcnBzLWFnZW50aWMtZW5n

### awesome-mcp-servers

Source-checked GitHub directory from wong2/awesome-mcp-servers, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:wong2/awesome-mcp-servers`
- Type: `directory`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOndvbmcyL2F3ZXNvbWUtbWNwLXNlcnZlcnM

### agents

Source-checked GitHub subagent pack from wshobson/agents, seeded for agent teams discovery in the July 2026 SuperSkill catalog.

- ID: `github:wshobson/agents`
- Type: `subagent_pack`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOndzaG9ic29uL2FnZW50cw

### skills-manager

Source-checked GitHub skill from xingkongliang/skills-manager, seeded for skill frameworks discovery in the July 2026 SuperSkill catalog.

- ID: `github:xingkongliang/skills-manager`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnhpbmdrb25nbGlhbmcvc2tpbGxzLW1hbmFnZXI

### xget

Source-checked GitHub framework from xixu-me/xget, seeded for harness infrastructure discovery in the July 2026 SuperSkill catalog.

- ID: `github:xixu-me/xget`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnhpeHUtbWUveGdldA

### everything-claude-code-zh

Source-checked GitHub command pack from xu-xiang/everything-claude-code-zh, seeded for plugins commands and configs discovery in the July 2026 SuperSkill catalog.

- ID: `github:xu-xiang/everything-claude-code-zh`
- Type: `command_pack`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnh1LXhpYW5nL2V2ZXJ5dGhpbmctY2xhdWRlLWNvZGUtemg

### oh-my-claudecode

Source-checked GitHub framework from Yeachan-Heo/oh-my-claudecode, seeded for orchestration discovery in the July 2026 SuperSkill catalog.

- ID: `github:yeachan-heo/oh-my-claudecode`
- Type: `framework`
- Source: `github`
- Works with: `github`, `claude-code`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnllYWNoYW4taGVvL29oLW15LWNsYXVkZWNvZGU

### claude-code-tips

Source-checked GitHub guide from ykdojo/claude-code-tips, seeded for guides and learning discovery in the July 2026 SuperSkill catalog.

- ID: `github:ykdojo/claude-code-tips`
- Type: `guide`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnlrZG9qby9jbGF1ZGUtY29kZS10aXBz

### multi-agent-shogun

Source-checked GitHub framework from yohey-w/multi-agent-shogun, seeded for orchestration discovery in the July 2026 SuperSkill catalog.

- ID: `github:yohey-w/multi-agent-shogun`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnlvaGV5LXcvbXVsdGktYWdlbnQtc2hvZ3Vu

### Awesome-MCP-ZH

Source-checked GitHub directory from yzfly/Awesome-MCP-ZH, seeded for directories discovery in the July 2026 SuperSkill catalog.

- ID: `github:yzfly/awesome-mcp-zh`
- Type: `directory`
- Source: `github`
- Works with: `github`, `mcp`
- Canonical: https://superskill.sh/r/Z2l0aHViOnl6Zmx5L2F3ZXNvbWUtbWNwLXpo

### frontend-slides

Source-checked GitHub skill from zarazhangrui/frontend-slides, seeded for single skills discovery in the July 2026 SuperSkill catalog.

- ID: `github:zarazhangrui/frontend-slides`
- Type: `skill`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnphcmF6aGFuZ3J1aS9mcm9udGVuZC1zbGlkZXM

### claude-code-guide

Source-checked GitHub guide from zebbern/claude-code-guide, seeded for guides and learning discovery in the July 2026 SuperSkill catalog.

- ID: `github:zebbern/claude-code-guide`
- Type: `guide`
- Source: `github`
- Works with: `github`, `claude-code`
- Canonical: https://superskill.sh/r/Z2l0aHViOnplYmJlcm4vY2xhdWRlLWNvZGUtZ3VpZGU

### zeroclaw

Source-checked GitHub agent runtime from zeroclaw-labs/zeroclaw, seeded for agent runtimes discovery in the July 2026 SuperSkill catalog.

- ID: `github:zeroclaw-labs/zeroclaw`
- Type: `agent_runtime`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnplcm9jbGF3LWxhYnMvemVyb2NsYXc

### CowAgent

Source-checked GitHub framework from zhayujie/CowAgent, seeded for orchestration discovery in the July 2026 SuperSkill catalog.

- ID: `github:zhayujie/cowagent`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnpoYXl1amllL2Nvd2FnZW50

### spec_driven_develop

Source-checked GitHub workflow from zhu1090093659/spec_driven_develop, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:zhu1090093659/spec_driven_develop`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnpodTEwOTAwOTM2NTkvc3BlY19kcml2ZW5fZGV2ZWxvcA

### memsearch

Source-checked GitHub framework from zilliztech/memsearch, seeded for memory and context engineering discovery in the July 2026 SuperSkill catalog.

- ID: `github:zilliztech/memsearch`
- Type: `framework`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnppbGxpenRlY2gvbWVtc2VhcmNo

### adversarial-spec

Source-checked GitHub workflow from zscole/adversarial-spec, seeded for workflow methodologies discovery in the July 2026 SuperSkill catalog.

- ID: `github:zscole/adversarial-spec`
- Type: `workflow`
- Source: `github`
- Works with: `github`, `cli`
- Canonical: https://superskill.sh/r/Z2l0aHViOnpzY29sZS9hZHZlcnNhcmlhbC1zcGVj

### Agent Harness Directories

Link-only shelf for terminal agents, autonomous harnesses and adjacent open-source agent runtimes.

- ID: `onlyharness:directories/agent-harness-directories`
- Type: `directory`
- Source: `manual`
- Works with: `github`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6ZGlyZWN0b3JpZXMvYWdlbnQtaGFybmVzcy1kaXJlY3Rvcmllcw

### Awesome Agent Directories

Link-only shelf for awesome lists and catalogs of agent skills, MCP servers and AI workflows.

- ID: `onlyharness:directories/awesome-agent-directories`
- Type: `directory`
- Source: `manual`
- Works with: `github`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6ZGlyZWN0b3JpZXMvYXdlc29tZS1hZ2VudC1kaXJlY3Rvcmllcw

### MCP Server Directories

Link-only shelf for high-signal MCP server catalogs and must-have connector lists.

- ID: `onlyharness:directories/mcp-server-directories`
- Type: `directory`
- Source: `manual`
- Works with: `github`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6ZGlyZWN0b3JpZXMvbWNwLXNlcnZlci1kaXJlY3Rvcmllcw

### Verified Agent Catalog July 2026

Link-only directory of 253 verified agent harnesses, skills, workflows and MCP resources.

- ID: `onlyharness:directories/verified-agent-catalog-2026-07`
- Type: `directory`
- Source: `manual`
- Works with: `github`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6ZGlyZWN0b3JpZXMvdmVyaWZpZWQtYWdlbnQtY2F0YWxvZy0yMDI2LTA3

### Agent Harness Refactorer

Turns messy prompts or markdown workflows into staged harness repos with explicit unresolved fields.

- ID: `onlyharness:harnesses/agent-harness-refactorer`
- Type: `harness`
- Source: `manual`
- Works with: `claude-code`, `codex`, `cursor`, `mcp`, `cli`, `github`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6aGFybmVzc2VzL2FnZW50LWhhcm5lc3MtcmVmYWN0b3Jlcg

### Data Quality Sentinel

Audits metric definitions, source freshness and dashboard evidence before a business decision relies on the data.

- ID: `onlyharness:harnesses/data-quality-sentinel`
- Type: `harness`
- Source: `manual`
- Works with: `claude-code`, `codex`, `cursor`, `mcp`, `cli`, `github`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6aGFybmVzc2VzL2RhdGEtcXVhbGl0eS1zZW50aW5lbA

### Deep Market Researcher

Multi-stage research, synthesis, critique and validation pipeline for market questions.

- ID: `onlyharness:harnesses/deep-market-researcher`
- Type: `harness`
- Source: `manual`
- Works with: `claude-code`, `codex`, `cursor`, `mcp`, `cli`, `github`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6aGFybmVzc2VzL2RlZXAtbWFya2V0LXJlc2VhcmNoZXI

### Finance Payment Safety Reviewer

Reviews payment, card and ledger changes with provider evidence, idempotency and reconciliation gates.

- ID: `onlyharness:harnesses/finance-payment-safety-reviewer`
- Type: `harness`
- Source: `manual`
- Works with: `claude-code`, `codex`, `cursor`, `mcp`, `cli`, `github`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6aGFybmVzc2VzL2ZpbmFuY2UtcGF5bWVudC1zYWZldHktcmV2aWV3ZXI

### Founder Decision Memo

Converts messy context into a short decision memo with recommendation, tradeoffs and next action.

- ID: `onlyharness:harnesses/founder-decision-memo`
- Type: `harness`
- Source: `manual`
- Works with: `claude-code`, `codex`, `cursor`, `mcp`, `cli`, `github`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6aGFybmVzc2VzL2ZvdW5kZXItZGVjaXNpb24tbWVtbw

### GTM Research Sprint

Builds target segment, account list, pain hypotheses, outreach angles and proof plan.

- ID: `onlyharness:harnesses/gtm-research-sprint`
- Type: `harness`
- Source: `manual`
- Works with: `claude-code`, `codex`, `cursor`, `mcp`, `cli`, `github`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6aGFybmVzc2VzL2d0bS1yZXNlYXJjaC1zcHJpbnQ

### Incident RCA Commander

Turns incident notes, logs and customer impact into a concise RCA, mitigation plan and follow-up checklist.

- ID: `onlyharness:harnesses/incident-rca-commander`
- Type: `harness`
- Source: `manual`
- Works with: `claude-code`, `codex`, `cursor`, `mcp`, `cli`, `github`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6aGFybmVzc2VzL2luY2lkZW50LXJjYS1jb21tYW5kZXI

### Launch Readiness Reviewer

Reviews launch scope, user-visible promises, rollout gates and rollback criteria before a feature goes live.

- ID: `onlyharness:harnesses/launch-readiness-reviewer`
- Type: `harness`
- Source: `manual`
- Works with: `claude-code`, `codex`, `cursor`, `mcp`, `cli`, `github`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6aGFybmVzc2VzL2xhdW5jaC1yZWFkaW5lc3MtcmV2aWV3ZXI

### Product Strategy Critic

Critiques product plans, identifies weak assumptions and returns a concrete MVP recommendation.

- ID: `onlyharness:harnesses/product-strategy-critic`
- Type: `harness`
- Source: `manual`
- Works with: `claude-code`, `codex`, `cursor`, `mcp`, `cli`, `github`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6aGFybmVzc2VzL3Byb2R1Y3Qtc3RyYXRlZ3ktY3JpdGlj

### Repo Truth Auditor

Checks claims against code, commands, tests and runtime evidence before giving a grounded verdict.

- ID: `onlyharness:harnesses/repo-truth-auditor`
- Type: `harness`
- Source: `manual`
- Works with: `claude-code`, `codex`, `cursor`, `mcp`, `cli`, `github`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6aGFybmVzc2VzL3JlcG8tdHJ1dGgtYXVkaXRvcg

### Security Permission Auditor

Reviews agent manifests, tool access and permission changes for least-privilege violations before install or publish.

- ID: `onlyharness:harnesses/security-permission-auditor`
- Type: `harness`
- Source: `manual`
- Works with: `claude-code`, `codex`, `cursor`, `mcp`, `cli`, `github`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6aGFybmVzc2VzL3NlY3VyaXR5LXBlcm1pc3Npb24tYXVkaXRvcg

### Support Triage Agent

Classifies support tickets, extracts exact customer quotes and drafts replies without auto-send.

- ID: `onlyharness:harnesses/support-triage-agent`
- Type: `harness`
- Source: `manual`
- Works with: `claude-code`, `codex`, `cursor`, `mcp`, `cli`, `github`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6aGFybmVzc2VzL3N1cHBvcnQtdHJpYWdlLWFnZW50

### Clean User Skill 1783976169

Updated clean-user production proof with explicit rollback guidance.

- ID: `onlyharness:packages/clean-user-skill-1783976169`
- Type: `skill`
- Source: `manual`
- Works with: `claude-code`, `codex`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6cGFja2FnZXMvY2xlYW4tdXNlci1za2lsbC0xNzgzOTc2MTY5

### E2E Evidence Skill ea8507fa

Updated production E2E skill with an explicit immutable second release.

- ID: `onlyharness:packages/e2e-skill-mrjpmzr1-ea8507fa`
- Type: `skill`
- Source: `manual`
- Works with: `claude-code`, `codex`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6cGFja2FnZXMvZTJlLXNraWxsLW1yanBtenIxLWVhODUwN2Zh

### E2E Evidence Skill ctst0nvh

Updated production E2E skill with explicit immutable install evidence.

- ID: `onlyharness:packages/e2e-skill-mrjqfe77-ctst0nvh`
- Type: `skill`
- Source: `manual`
- Works with: `claude-code`, `codex`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6cGFja2FnZXMvZTJlLXNraWxsLW1yanFmZTc3LWN0c3QwbnZo

### Production E2E Fixed Skill 705622

Production E2E fixed skill v2 with exact digest and rollback guidance.

- ID: `onlyharness:packages/prod-e2e-783983705622`
- Type: `skill`
- Source: `manual`
- Works with: `claude-code`, `codex`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6cGFja2FnZXMvcHJvZC1lMmUtNzgzOTgzNzA1NjIy

### SuperSkill production E2E proof

Immutable unreviewed production publication proof.

- ID: `onlyharness:packages/superskill-e2e-proof-20260714`
- Type: `skill`
- Source: `manual`
- Works with: `codex`, `claude-code`
- Canonical: https://superskill.sh/r/b25seWhhcm5lc3M6cGFja2FnZXMvc3VwZXJza2lsbC1lMmUtcHJvb2YtMjAyNjA3MTQ
