{"id":50765521,"url":"https://github.com/mackysoft/agent-skills","last_synced_at":"2026-06-11T13:30:44.758Z","repository":{"id":358917648,"uuid":"1242811382","full_name":"mackysoft/agent-skills","owner":"mackysoft","description":"Agent Skills generation and distribution tooling.","archived":false,"fork":false,"pushed_at":"2026-05-19T17:16:39.000Z","size":210,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-19T18:48:45.690Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mackysoft.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null},"funding":{"github":"mackysoft"}},"created_at":"2026-05-18T19:25:32.000Z","updated_at":"2026-05-19T17:16:42.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/mackysoft/agent-skills","commit_stats":null,"previous_names":["mackysoft/agent-skills"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/mackysoft/agent-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mackysoft%2Fagent-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mackysoft%2Fagent-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mackysoft%2Fagent-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mackysoft%2Fagent-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mackysoft","download_url":"https://codeload.github.com/mackysoft/agent-skills/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mackysoft%2Fagent-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34201839,"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-06-11T02:00:06.485Z","response_time":57,"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":[],"created_at":"2026-06-11T13:30:42.801Z","updated_at":"2026-06-11T13:30:44.747Z","avatar_url":"https://github.com/mackysoft.png","language":"C#","funding_links":["https://github.com/sponsors/mackysoft"],"categories":[],"sub_categories":[],"readme":"# Agent Skills\n\nAgent Skills provides reusable .NET services and a CLI tool for product-owned agent skill packages. Product repositories keep their SKILL definitions and generated package outputs, while this repository owns the canonical package format, host materialization rules, install/update/uninstall/export operations, and doctor diagnostics.\n\n## Packages\n\n| Package | Purpose |\n| --- | --- |\n| `MackySoft.AgentSkills` | Runtime library for reading generated packages, materializing them for supported hosts, and running install/export/doctor workflows. |\n| `MackySoft.AgentSkills.Cli` | .NET tool that generates canonical packages from `skills/definitions` into `skills/generated`. |\n\nBoth packages are versioned together.\n\n## Product Layout\n\nEach product repository owns its source definitions and generated outputs.\n\n```text\nskills/\n  definitions/\n    \u003cskill-name\u003e/\n      skill.json\n      SKILL.md.template\n      references/\n        *.md.template\n  generated/\n    \u003cskill-name\u003e/\n      SKILL.md\n      agent-skill.json\n      agents/\n        openai.yaml\n      references/\n        *.md\n```\n\n`skills/definitions` is the source of truth. `skills/generated` is deterministic build output; do not edit it manually.\n\n## CLI Tool\n\nInstall the CLI through a .NET tool manifest in each product repository.\n\n```bash\ndotnet new tool-manifest\ndotnet tool install MackySoft.AgentSkills.Cli --version 0.2.0\n```\n\nGenerate canonical packages.\n\n```bash\ndotnet tool run agent-skills -- build \\\n  --definitionsRoot skills/definitions \\\n  --generatedRoot skills/generated\n```\n\nBuild options:\n\n- `--definitionsRoot`: directory that contains one subdirectory per source SKILL definition.\n- `--generatedRoot`: canonical generated package root, normally `skills/generated`.\n\nThe CLI validates definition metadata, computes deterministic digests, writes `agent-skill.json`, and emits host artifact metadata for every supported host.\n\n## Runtime Library\n\nUse the library from product CLI or application code that needs to list, export, install, update, uninstall, or diagnose generated agent skills.\n\n```bash\ndotnet add \u003cPROJECT\u003e.csproj package MackySoft.AgentSkills --version 0.2.0\n```\n\nEquivalent project file reference:\n\n```xml\n\u003cPackageReference Include=\"MackySoft.AgentSkills\" Version=\"0.2.0\" /\u003e\n```\n\nThe canonical package manifest file is `agent-skill.json`. Generated package directories are canonical package inputs; runtime materialization converts those packages into host-specific install/export contents.\n\nSupported host keys:\n\n- `openai`\n- `claude`\n- `copilot`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmackysoft%2Fagent-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmackysoft%2Fagent-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmackysoft%2Fagent-skills/lists"}