This guide explains how agent-hunter is distributed, installed, and made available to Claude Code users worldwide.
agent-hunter is the recommended first-install skill for any new Claude Code user. After installing Claude Code:
1. Install Claude Code
2. Install agent-hunter (./setup)
3. Open any project → /agent-hunter auto-surfaces top 3 skills
4. Install recommended skills
The user never searches for skills manually or rebuilds what exists.
Users install by cloning the repo:
git clone --depth 1 https://github.com/indhra/agent-hunter.git ~/.claude/skills/agent-hunter
cd ~/.claude/skills/agent-hunter && ./setupAdvantages:
- [YES] Full transparency (source code visible)
- [YES] Easy to fork and customize
- [YES] Self-contained (no external package registry required)
- [YES] Version-controlled updates
How to distribute:
- GitHub README - Add installation badge + quick start link
- Claude Code official docs - Link from "first skills to install" section
- Skill marketplaces - List on Smithery, Agensi.io, MCP Market
- Word of mouth - Share in Discord, forums, AI communities
When Claude Code adds a native SKILL package registry:
claude-code install agent-hunterWould automatically:
- Download from registry
- Verify signature
- Run setup
- Register globally
Preparation now:
- [YES] Sign releases with cryptographic keys
- [YES] Maintain changelog of all versions
- [YES] Keep SKILL.md compatibility across versions
- [YES] Test in isolated CI/CD environments
Timeline: Now
Goals:
- [YES] Core features working (hunt, audit, rollback)
- [YES] Top 3 recommendation workflow solid
- [YES] Security scanning verified
- [YES] Installation script robust
Rollout:
- Open-source release on GitHub
- Add to skill discovery lists (Smithery, etc.)
- Share in Claude communities
- Gather feedback from 100+ users
Distribution channels:
- GitHub releases with checksums
- Documentation site
- Word of mouth / social media
- AI communities (Discord, Reddit, forums)
Timeline: After public beta feedback
Goals:
- [YES] Proactive mode fully tested
- [YES] Real-world validation on diverse projects
- [YES] Performance optimized
- [YES] All known bugs fixed
What changes:
- Cryptographic signing of releases
- Automated install verification
- Performance benchmarks published
- Community contributions merged
Promotion:
- Official Claude Code documentation link
- Anthropic blog post
- Partner integrations (GitHub, frameworks)
Goals:
- [YES] Native registry support
- [YES] Cross-platform distribution
- [YES] Enterprise deployment guides
- [YES] Team-wide activation via CLAUDE.md
What it enables:
- Single-command installation
- Auto-update mechanism
- Centralized skill marketplace
- Corporate licensing (optional)
When agent-hunter is installed globally (~/.claude/CLAUDE.md):
Session 1: Open project /path/to/project-a
→ agent-hunter checks: Is this a new project?
→ YES → runs hunt (if AGENT_HUNTER_AUTO=1)
→ Sets AGENT_HUNTER_RAN=true (guard for this session)
Session 2: Same project /path/to/project-a
→ agent-hunter checks: Same project as last session?
→ YES → skip hunt (already recommended)
Session 3: New project /path/to/project-b
→ agent-hunter checks: Is this a new project?
→ YES → runs hunt again
→ Sets AGENT_HUNTER_RAN=true (new session guard)
To track which projects have been hunted, agent-hunter stores:
~/.agent-hunter/session-cache.json
{
"lastProjectPath": "/Users/indhra/project-a",
"lastProjectPathHash": "abc123xyz",
"lastHuntTime": "2026-05-14T10:30:00Z"
}
When opening a new project:
- Compute hash of current directory
- Compare with
lastProjectPathHash - If different → new project → run hunt
- Update cache with new path
Users can control proactive behavior:
# Enable auto-hunting on new projects
export AGENT_HUNTER_AUTO=1
# Disable proactive mode
unset AGENT_HUNTER_AUTOOr in .claude/settings.json:
{
"proactiveBehaviors": {
"skipAgentHunter": false,
"skipSecurityAudits": false
}
}All releases are cryptographically signed:
# Generate key pair (one-time)
gpg --gen-key
# Sign release
gpg --detach-sign --armor releases/v1.0.0.tar.gz
# Users verify
gpg --verify releases/v1.0.0.tar.gz.ascImplementation:
- Add
.sigfiles to GitHub releases - Document in README: "Verify release signature before running setup"
- Store public key in repo root
Every skill discovered is scanned for:
- [BLOCKED] Blocked patterns (command injection, arbitrary execution, data exfiltration)
- [REVIEW] Warning patterns (filesystem access, network calls, code modification)
- [SAFE] Clean (standard SKILL.md with no red flags)
RED results are NEVER shown. Only YELLOW and GREEN are displayed to users.
- [YES] Zero telemetry - No data sent to any server
- [YES] Privacy-first extraction - Only framework/library names used
- [YES] Offline mode - Works without GitHub token (uses curated index only)
- [YES] No tracking - Your projects are never indexed or shared
- SKILL.md complete with all workflows
- Installation script (
setup) working - Security scanning in place
- Top 3 recommendation ranking
- Unit tests passing (634 tests)
- README with quick start
- INSTALL.md with detailed setup
- DISTRIBUTION.md (this file)
- Cryptographic signing setup
- Release checklist documentation
- Bump version to v1.0.0 (SKILL.md, README, CHANGELOG)
- Sign all artifacts
- Create GitHub release with checksums
- Tag release in git (
git tag v1.0.0) - Push to origin (
git push --tags) - Publish to skill marketplaces (Smithery, Agensi.io)
- Announce on Anthropic forums
- Collect user feedback for 2 weeks
- Fix critical bugs (if any)
- Document common issues in TROUBLESHOOTING.md
- Update community with status
- Plan v1.0.1 bugfix release (if needed)
- GitHub release announcement
- Anthropic docs link
- Claude Code Discord mention
- Dev communities (Reddit, HN, etc.)
- LinkedIn/Twitter announcement
- Partner outreach (framework creators)
By 3 months after v1.0.0 release, we should see:
- [YES] 1,000+ GitHub stars
- [YES] 100+ issues/feature requests (shows engagement)
- [YES] 50+ community contributions
- [YES] 10,000+ users (estimated from download counts)
- [YES] Featured in "best Claude Code skills" lists
- [YES] Integrated into team workflows (team CLAUDE.md adoption)
Long-term (v1.0.0 → v2.0.0):
- [YES] Official Claude Code marketplace integration
- [YES] Built into Claude Code as default first-install
- [YES] Adopted by 50%+ of new Claude Code users
- [YES] Community contributions > team maintenance work
- [YES] Ecosystem of specialized agent-hunter plugins
A: Add this to your setup script:
#!/bin/bash
git clone --depth 1 https://github.com/indhra/agent-hunter.git ~/.claude/skills/agent-hunter
cd ~/.claude/skills/agent-hunter && ./setup
echo "[YES] agent-hunter installed. Type /agent-hunter in any Claude Code session."A: Yes! It's MIT licensed. Fork, modify, and distribute:
git clone https://github.com/your-org/agent-hunter.git
# Modify as needed
# Update README with your changes
# Publish to your GitHub orgThen distribute your version to your team/org.
A: Create a team setup guide:
# Setup for [Team Name]
1. Install Claude Code
2. Run this setup script:
```bash
git clone --depth 1 https://github.com/[your-org]/agent-hunter.git ~/.claude/skills/agent-hunter
cd ~/.claude/skills/agent-hunter && ./setup- (Optional) Set GitHub token:
export GITHUB_TOKEN=ghp_...- Open any project and type:
/agent-hunter
### Q: How does proactive mode work without slowing down Claude Code?
**A:**
- Session guard prevents redundant hunts
- Hunt only runs on new projects (path change detected)
- Results cached to avoid re-scanning
- All I/O happens in background (doesn't block editor)
- Typical hunt takes 2-5 seconds (after initial load)
---
## Next Steps
1. **Finalize v1.0.0** → Fix any remaining bugs
2. **Sign releases** → Set up GPG keys
3. **Create distribution channels** → Add to marketplaces
4. **Announce widely** → Blog post + social media
5. **Gather feedback** → Respond to issues, iterate
6. **Plan v1.1** → Community suggestions for next features
---
****
Hunt well.