suggesting-toolinglisted
Install: claude install-skill aiskillstore/marketplace
# Suggesting Tooling
Analyzes codebases to suggest custom skills and agents for workflow automation.
## Quick Start
1. Scan codebase for patterns (languages, frameworks, workflows)
2. Match patterns to skill/agent templates
3. Present suggestions with rationale
4. Generate approved tooling using creating-skills/creating-agents
## Workflow
```
Progress:
- [ ] Analyze codebase patterns
- [ ] Match to tooling templates
- [ ] Present suggestions
- [ ] Generate approved items
```
### Step 1: Analyze Codebase
Run lightweight analysis:
```bash
# Language detection
find . -type f -name "*.ts" -o -name "*.js" -o -name "*.py" | head -100
# Framework detection
ls package.json pyproject.toml Cargo.toml go.mod 2>/dev/null
# Workflow detection
ls .github/workflows/ .gitlab-ci.yml Dockerfile 2>/dev/null
# Existing tooling
ls .claude/skills/ .claude/agents/ 2>/dev/null
```
Collect:
- Primary language(s)
- Framework(s) in use
- Build/test tooling
- CI/CD setup
- Existing .claude/ configuration
### Step 2: Pattern Matching
Match detected patterns to suggestions:
| Signal | Skill Suggestion | Agent Suggestion |
|--------|------------------|------------------|
| Jest/Pytest/Mocha | testing-code | - |
| REST routes | - | api-testing |
| Prisma/migrations | db-migrations | - |
| Dockerfile | deploying-code | - |
| ESLint/Prettier | linting-code | - |
| Auth patterns | - | security-review |
| Many .md files | documenting-code | - |
| PR workflow | - | code-reviewer |
See [patterns/s