{"id":51168017,"url":"https://github.com/devlikebear/tars-skills","last_synced_at":"2026-06-26T21:30:27.997Z","repository":{"id":345899257,"uuid":"1187779047","full_name":"devlikebear/tars-skills","owner":"devlikebear","description":"TARS Skill Hub - Community skill registry for TARS personal assistant","archived":false,"fork":false,"pushed_at":"2026-05-16T07:56:34.000Z","size":69,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-16T09:50:25.274Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devlikebear.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":null,"dco":null,"cla":null}},"created_at":"2026-03-21T06:32:22.000Z","updated_at":"2026-05-16T07:56:38.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/devlikebear/tars-skills","commit_stats":null,"previous_names":["devlikebear/tars-skills"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devlikebear/tars-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlikebear%2Ftars-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlikebear%2Ftars-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlikebear%2Ftars-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlikebear%2Ftars-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devlikebear","download_url":"https://codeload.github.com/devlikebear/tars-skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devlikebear%2Ftars-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34834415,"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-26T02:00:06.560Z","response_time":106,"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-26T21:30:27.223Z","updated_at":"2026-06-26T21:30:27.985Z","avatar_url":"https://github.com/devlikebear.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TARS Skill Hub\n\nPublic skill registry for [TARS](https://github.com/devlikebear/tars).\n\n## Usage\n\n```bash\n# Search skills\ntars skill search project\n\n# Install a skill\ntars skill install project-start\n\n# List installed skills\ntars skill list\n\n# Update all skills\ntars skill update\n\n# Search trusted MCP packages\ntars mcp search\n\n# Install a hosted MCP server\ntars mcp install safe-time\n\n# Install the Stack-chan robot skill\n# (the MCP server is external: `brew install devlikebear/tap/tars-stackchan` —\n#  the skill guides setup; this repo ships no Stack-chan server)\ntars skill install tars-stackchan\n\n# Review and install a domain pack\ntars pack install github-maintainer-pack\n```\n\n## Skill Format\n\nEach skill lives in `skills/\u003cname\u003e/SKILL.md` with YAML frontmatter:\n\n```yaml\n---\nname: my-skill\ndescription: \"What this skill does\"\nuser-invocable: true\nrecommended_tools:\n  - tool_name\n---\n\n# My Skill\n\nSkill instructions in Markdown...\n```\n\n## Registry Format\n\n`registry.json` indexes all available skills, plugins, and trusted MCP packages:\n\n```json\n{\n  \"version\": 3,\n  \"skills\": [\n    {\n      \"name\": \"skill-name\",\n      \"description\": \"...\",\n      \"version\": \"0.6.0\",\n      \"author\": \"username\",\n      \"tags\": [\"tag1\", \"tag2\"],\n      \"path\": \"skills/skill-name\",\n      \"user_invocable\": true,\n      \"quality\": {\n        \"score\": 85,\n        \"last_updated\": \"2026-05-01\",\n        \"tests_passing\": true,\n        \"required_tools\": [\"bash\"],\n        \"permissions\": [\"filesystem\"],\n        \"companion_cli\": true,\n        \"install_count\": 120\n      }\n    }\n  ],\n  \"mcp_servers\": [\n    {\n      \"name\": \"safe-time\",\n      \"path\": \"mcp-servers/safe-time\",\n      \"manifest\": \"tars.mcp.json\",\n      \"files\": [\n        {\n          \"path\": \"tars.mcp.json\",\n          \"sha256\": \"\u003csha256\u003e\"\n        }\n      ]\n    }\n  ],\n  \"packs\": [\n    {\n      \"name\": \"github-maintainer-pack\",\n      \"description\": \"GitHub maintainer workflow bundle for log triage, issue filing, and PR/worktree operations.\",\n      \"version\": \"0.1.0\",\n      \"author\": \"devlikebear\",\n      \"tags\": [\"github\", \"maintenance\", \"dogfooding\"],\n      \"skills\": [\"github-ops\", \"log-watcher\", \"log-anomaly-detect\"],\n      \"plugins\": [],\n      \"mcp_servers\": [],\n      \"quality\": {\n        \"score\": 86,\n        \"last_updated\": \"2026-05-01\",\n        \"tests_passing\": true,\n        \"required_tools\": [\"bash\", \"git\", \"gh\"],\n        \"permissions\": [\"filesystem\", \"github\", \"shell\", \"docker\"],\n        \"companion_cli\": true\n      }\n    }\n  ]\n}\n```\n\n### Quality Metadata\n\nEvery installable registry entry may include a `quality` object. TARS renders\nthis metadata in the Extensions Hub before install:\n\n- `score`: required when `quality` is present; integer from 0 to 100.\n- `last_updated`: ISO date (`YYYY-MM-DD`) for the packaged entry metadata or files.\n- `tests_passing`: whether the latest maintainer smoke/unit test pass is known.\n- `required_tools`: local executables or CLIs the package expects.\n- `permissions`: user-impacting capabilities such as `filesystem`, `github`,\n  `network`, `browser`, or `mcp`.\n- `companion_cli`: whether the skill ships or depends on a companion CLI/script.\n- `install_count`: optional observed install count when available.\n\n### Domain Packs\n\n`packs` are reviewable bundles of existing skills, plugins, and MCP packages.\nTARS prints the install plan before applying it, then installs each member\nthrough the same sandbox checks as individual package installs.\n\n## Contributing\n\n1. Create `skills/\u003cyour-skill\u003e/SKILL.md`\n2. Or create `mcp-servers/\u003cyour-server\u003e/tars.mcp.json` plus hosted runtime files\n3. Or create a `packs` entry that references existing packages\n4. Add an entry to `registry.json` with quality metadata\n5. Open a PR\n\n## OpenClaw Compatibility\n\nTARS can also install skills from [ClawHub](https://clawhub.ai) via adapter. Use the `--source openclaw` flag:\n\n```bash\ntars skill search --source openclaw \u003cquery\u003e\ntars skill install --source openclaw \u003cpackage-name\u003e\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevlikebear%2Ftars-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevlikebear%2Ftars-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevlikebear%2Ftars-skills/lists"}