Github installer
Skill enc0ding/claude-agent-starter/.claude/skills/github-installer
Production-ready Claude Code agent template with hooks, persistent memory, custom skills, and auto-commit. Build an autonomous AI coding agent in 5 minutes. macOS, Linux, Windows.
npx -y skills add enc0ding/claude-agent-starter --skill github-installerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Classify and install GitHub repos correctly. Use when the user pastes a GitHub URL or asks to install, add, clone, or use a repo. Distinguishes between plugins, skills, MCP servers, and standalone tools.
SKILL.md
1.6 KB, as published. Nobody here has run it
GitHub Repo Installation Skill
When a GitHub URL is pasted, follow this process. Do NOT install before classifying.
Step 1 — Clone and classify
Clone the repo to /tmp/ (or $env:TEMP on Windows) and inspect the structure:
SKILL.mdat the root → it's a skill.claude-plugin/plugin.json→ it's a pluginpackage.jsonwith an MCP server entry point (look formcp,bin, or server config) → it's an MCP server- None of the above → standalone tool, framework, or app
Step 2 — Handle by type
Skill
Copy the entire skill directory to .claude/skills/[skill-name]/. The directory name should match the name field in the skill's frontmatter.
Plugin
Use the plugin marketplace if it's listed:
/plugin install [name]@[marketplace]
/reload-plugins
If not on a marketplace, the user must add it as a custom plugin source.
MCP Server
Add the server to .claude/settings.json under a mcpServers key. Format depends on the server — read its README.
Standalone Tool
Don't install into .claude/. Clone it to the project root or a sibling directory, depending on what makes sense.
Rules
- NEVER install before classifying
- NEVER dump an entire repo into
.claude/skills/ - Verify the install worked by checking for the expected files
- If anything is ambiguous, ask the user before proceeding