{"id":51444029,"url":"https://github.com/haydenk/particular-set","last_synced_at":"2026-07-05T14:02:48.326Z","repository":{"id":359233346,"uuid":"1245102548","full_name":"haydenk/particular-set","owner":"haydenk","description":"Provider-agnostic agent skills — portable SKILL.md specs that any AI coding agent can consume, also installable as a Claude Code plugin.","archived":false,"fork":false,"pushed_at":"2026-06-20T17:18:31.000Z","size":4002,"stargazers_count":1,"open_issues_count":15,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-20T19:06:22.585Z","etag":null,"topics":["agent-skills","ai-agents","claude-code","claude-code-plugin","claude-skills","coding-agents","dagger","llm-tools","markdown","prompt-engineering","specification"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/haydenk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"haydenk"}},"created_at":"2026-05-20T23:08:24.000Z","updated_at":"2026-06-20T17:18:34.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/haydenk/particular-set","commit_stats":null,"previous_names":["haydenk/particular-set"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/haydenk/particular-set","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haydenk%2Fparticular-set","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haydenk%2Fparticular-set/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haydenk%2Fparticular-set/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haydenk%2Fparticular-set/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/haydenk","download_url":"https://codeload.github.com/haydenk/particular-set/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haydenk%2Fparticular-set/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35156522,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-05T02:00:06.290Z","response_time":100,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agent-skills","ai-agents","claude-code","claude-code-plugin","claude-skills","coding-agents","dagger","llm-tools","markdown","prompt-engineering","specification"],"created_at":"2026-07-05T14:02:47.305Z","updated_at":"2026-07-05T14:02:48.295Z","avatar_url":"https://github.com/haydenk.png","language":"Go","funding_links":["https://github.com/sponsors/haydenk"],"categories":[],"sub_categories":[],"readme":"# Particular Set of Skills\n\n![particular-set README banner](docs/assets/readme-banner.png)\n\nA collection of provider-agnostic agent skill specs.\n\nEach skill is a self-contained directory under `skills/` with a `SKILL.md`\nmanifest (YAML frontmatter + Markdown body) and any bundled resources it\nneeds. Skills are written to be readable by any agent runtime, but the repo\nis also packaged as a Claude Code plugin so it can be installed directly.\n\n## Layout\n\n```text\nskills/\n  \u003cskill-name\u003e/\n    SKILL.md            required\n    references/         optional supporting docs the skill links to\n    scripts/            optional helper scripts\n    assets/             optional static files\n```\n\n## Skill manifest\n\n`SKILL.md` must start with YAML frontmatter:\n\n```yaml\n---\nname: \u003ckebab-case-slug\u003e          # matches the directory name\ndescription: \u003cone-line trigger\u003e  # used by agents to decide when to invoke\nallowed-tools: [optional, list]  # runtime-specific, ignored when absent\n---\n```\n\nFull spec: [`docs/skill-spec.md`](docs/skill-spec.md).\n\n## Installing as a Claude Code plugin\n\n```text\n/plugin marketplace add \u003cgit-url\u003e\n/plugin install particular-set@particular-set\n```\n\nThe marketplace manifest lives at `.claude-plugin/marketplace.json`.\n\n## Using skills outside Claude Code\n\nEach `SKILL.md` is plain Markdown. Read it, paste the body into your agent's\nsystem prompt, or have your runtime load it directly.\n\n## Development\n\nAll checks run via a Dagger Go module — no host Node toolchain required.\nmise pins the Dagger CLI version.\n\n```sh\nmise install              # installs dagger (and go for module edits)\nmise run install-hooks    # link .git/hooks/pre-commit (idempotent)\nmise run check            # validate + lint\nmise run validate         # SKILL.md frontmatter only\nmise run lint             # markdownlint in a container\n```\n\nOr call Dagger directly: `dagger call check --source=.`.\n\nThe pre-commit hook lives at `.githooks/pre-commit` and is installed as\na symlink into `.git/hooks/` by `mise run install-hooks`. CI runs the\nsame `check` function on every PR.\n\n## Adding a skill\n\n1. `mkdir skills/\u003cslug\u003e` and add `SKILL.md`.\n2. Run `mise run validate` to confirm frontmatter is well-formed.\n3. Open a PR. CI enforces the spec.\n\nSee [`skills/example-skill/`](skills/example-skill/) for a reference.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhaydenk%2Fparticular-set","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhaydenk%2Fparticular-set","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhaydenk%2Fparticular-set/lists"}