{"id":44711929,"url":"https://github.com/plaited/skills-installer","last_synced_at":"2026-02-15T12:45:01.546Z","repository":{"id":332905439,"uuid":"1135295666","full_name":"plaited/skills-installer","owner":"plaited","description":"Install Plaited skills for AI coding agents supporting the agent-skills-spec.","archived":false,"fork":false,"pushed_at":"2026-01-25T08:45:24.000Z","size":78,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-25T22:42:38.702Z","etag":null,"topics":["agent-skills-spec","ai-agent-skills","ai-coding-agents","bash","claude-code","cli","codex","cursor","gemini-cli","github-copilot","installer","windsurf"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/plaited.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":".github/CODEOWNERS","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-01-15T22:46:33.000Z","updated_at":"2026-01-25T08:45:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/plaited/skills-installer","commit_stats":null,"previous_names":["plaited/marketplace","plaited/skills-installer"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/plaited/skills-installer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plaited%2Fskills-installer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plaited%2Fskills-installer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plaited%2Fskills-installer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plaited%2Fskills-installer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/plaited","download_url":"https://codeload.github.com/plaited/skills-installer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plaited%2Fskills-installer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29478360,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T11:35:25.641Z","status":"ssl_error","status_checked_at":"2026-02-15T11:34:57.128Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-spec","ai-agent-skills","ai-coding-agents","bash","claude-code","cli","codex","cursor","gemini-cli","github-copilot","installer","windsurf"],"created_at":"2026-02-15T12:44:59.874Z","updated_at":"2026-02-15T12:45:01.542Z","avatar_url":"https://github.com/plaited.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Plaited Skills Installer\n\n[![CI](https://github.com/plaited/skills-installer/actions/workflows/ci.yml/badge.svg)](https://github.com/plaited/skills-installer/actions/workflows/ci.yml)\n[![License: ISC](https://img.shields.io/badge/License-ISC-blue.svg)](https://opensource.org/licenses/ISC)\n\nInstall Plaited skills for AI coding agents supporting the agent-skills-spec.\n\n## Requirements\n\n- **macOS / Linux**: Works out of the box\n- **Windows**: Requires one of:\n  - WSL (Windows Subsystem for Linux) - recommended\n  - Developer Mode enabled (for symlink support)\n\nThe installer uses symlinks to avoid duplicating skill files across multiple agents. Windows requires special permissions or WSL for symlink creation.\n\n## Installation\n\nFor agents supporting the agent-skills-spec (Gemini CLI, GitHub Copilot, Cursor, OpenCode, Amp, Goose, Factory, Codex, Windsurf, Claude Code):\n\n```bash\n# Install for multiple agents\ncurl -fsSL https://raw.githubusercontent.com/plaited/skills-installer/main/install.sh | bash -s -- --agents claude,gemini\n\n# Install a specific project\ncurl -fsSL https://raw.githubusercontent.com/plaited/skills-installer/main/install.sh | bash -s -- --agents claude --project development-skills\n```\n\n**Or clone and run locally:**\n\n```bash\ngit clone https://github.com/plaited/skills-installer.git\ncd skills-installer\n./install.sh                              # Interactive mode (multi-select agents)\n./install.sh --agents claude,gemini       # Install for multiple agents\n./install.sh --agents cursor --project agent-eval-harness  # Specific project\n./install.sh --list                       # List available projects\n./install.sh --uninstall                  # Remove all\n```\n\n## Architecture\n\nSkills are installed to a central `.plaited/skills/` directory and symlinked to each agent's skills directory:\n\n```\n.plaited/skills/                          # Central storage (single copy)\n  skill-name@org_project/\n\n.claude/skills/                           # Symlinks\n  skill-name@org_project -\u003e ../../.plaited/skills/skill-name@org_project\n\n.gemini/skills/                           # Symlinks\n  skill-name@org_project -\u003e ../../.plaited/skills/skill-name@org_project\n```\n\nThis approach:\n- Saves disk space when supporting multiple agents\n- Ensures all agents use identical skill versions\n- Makes updates simpler (update once, all agents see changes)\n\n**Note:** Modifying files through symlinks affects all agents sharing that skill.\n\n**Supported agents:**\n\n| Agent | Skills Directory |\n|-------|------------------|\n| gemini | `.gemini/skills/` |\n| copilot | `.github/skills/` |\n| cursor | `.cursor/skills/` |\n| opencode | `.opencode/skill/` |\n| amp | `.amp/skills/` |\n| goose | `.goose/skills/` |\n| factory | `.factory/skills/` |\n| codex | `.codex/skills/` |\n| windsurf | `.windsurf/skills/` |\n| claude | `.claude/skills/` |\n\n## Available Projects\n\n| Project | Source |\n|---------|--------|\n| **development-skills** | [plaited/development-skills](https://github.com/plaited/development-skills) |\n| **agent-eval-harness** | [plaited/agent-eval-harness](https://github.com/plaited/agent-eval-harness) |\n| **plaited** | [plaited/plaited](https://github.com/plaited/plaited) |\n\n## Skill Scoping\n\nSkills are automatically scoped during installation to prevent naming collisions when multiple projects provide skills with the same name.\n\n**Skill folders** are renamed using the pattern: `\u003cskill-name\u003e@\u003corg\u003e_\u003cproject\u003e`\n\nExample: `typescript-lsp` from `plaited/development-skills` becomes `typescript-lsp@plaited_development-skills`\n\n**Inherited skills** (already scoped from another project) preserve their original scope to prevent double-scoping.\n\n**Note:** Org and project names may contain alphanumeric characters, dots, hyphens, and underscores. Some tools using dot-notation for namespacing may interpret dots specially.\n\n### Replace-on-Install Behavior\n\nRunning `./install.sh` replaces existing skill folders with fresh copies from the source repository. This ensures skills are always up-to-date but will overwrite any local modifications. The installer will display \"Replaced\" for skills that were updated and \"Installed\" for new skills.\n\n**Note:** If you have local modifications you want to preserve, back them up before reinstalling.\n\n## Project Details\n\n### development-skills\n\nDevelopment tools including:\n\n- **typescript-lsp** - LSP-based code exploration for TypeScript/JavaScript\n- **code-documentation** - Code documentation generation\n- **validate-skill** - Skill validation tools\n\n**Source:** [plaited/development-skills](https://github.com/plaited/development-skills)\n\n### agent-eval-harness\n\nCLI tool for evaluating AI agents by capturing execution trajectories:\n\n- Capture full execution traces (thoughts, messages, tool calls, plans)\n- Run pass@k evaluations with customizable grading functions\n- Schema-driven adapters for any CLI agent producing JSON output\n- Unix-style composable pipelines (run → extract → grade → format)\n\n**Source:** [plaited/agent-eval-harness](https://github.com/plaited/agent-eval-harness)\n\n### plaited\n\nDevelopment tools for the Plaited behavioral programming framework:\n\n- **loom** - Templating and component library\n- **plaited-behavioral-core** - Behavioral programming patterns\n- **plaited-standards** - Code conventions and standards\n- **plaited-ui-patterns** - UI templates and styling\n- **plaited-web-patterns** - Web component patterns\n\n**Source:** [plaited/plaited](https://github.com/plaited/plaited)\n\n## License\n\nISC\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplaited%2Fskills-installer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplaited%2Fskills-installer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplaited%2Fskills-installer/lists"}