Agent skills for fallow, codebase intelligence for JavaScript and TypeScript. Teaches AI agents how to find unused code, duplication, circular deps, complexity hotspots, architecture drift, and (with Fallow Runtime) hot-path and cold-path evidence. Works with Claude Code, Cursor, Codex, Gemini CLI, and 30+ agents.
npx skills add https://github.com/fallow-rs/fallow-skills --skill fallowInstale esta skill com a CLI e comece a usar o fluxo de trabalho SKILL.md em seu espaço de trabalho.
Agent skills for the JavaScript and TypeScript codebase intelligence layer.
Agent skills for fallow, Rust-native codebase intelligence for JavaScript and TypeScript. The free static layer finds unused code, circular dependencies, code duplication, complexity hotspots, and architecture boundary violations in milliseconds. The optional paid runtime layer (Fallow Runtime) adds production execution evidence so agents can delete cold code, flag hot-path changes, and retire stale flags with proof. 90 framework plugins, zero configuration. Works with any agent that supports the Agent Skills specification: Claude Code, Cursor, OpenAI Codex, Windsurf, GitHub Copilot, Gemini CLI, Amp, and 30+ more.
Linters enforce style. Formatters enforce consistency. Fallow enforces relevance. Linters work file by file. TypeScript works type by type. Neither builds the full module graph, so neither can see what nothing depends on. Fallow does, in milliseconds. These skills teach agents how to use fallow effectively: which commands to run, what flags to use, how to interpret output, and how to avoid common pitfalls.
/install fallow-rs/fallow-skills
git clone https://github.com/fallow-rs/fallow-skills.git ~/.cursor/skills/fallow-skills
git clone https://github.com/fallow-rs/fallow-skills.git ~/.agents/skills/fallow-skills
git clone https://github.com/fallow-rs/fallow-skills.git ~/.codeium/windsurf/skills/fallow-skills
git clone https://github.com/fallow-rs/fallow-skills.git .github/skills/fallow-skills
gemini skills install https://github.com/fallow-rs/fallow-skills.git
git clone https://github.com/fallow-rs/fallow-skills.git ~/.config/agents/skills/fallow-skills
Clone or copy the skill directory into your agent's skills location. This skill follows the open Agent Skills specification and works with any compatible agent.
Fallow must be installed in the target project:
npm install -g fallow # prebuilt binaries
npx fallow dead-code # or run without installing
See the installation guide for all options including cargo install fallow-cli.
| Skill | Description | Trigger phrases |
|---|---|---|
| fallow | Codebase intelligence for JS/TS: unused code, circular deps, duplication, complexity, and (with Runtime) hot-path and cold-path evidence | "find dead code", "unused exports", "find duplicates", "check code health", "what code actually runs" |
| Category | What it does |
|---|---|
| Dead Code | Find unused files, exports, types, dependencies, enum/class members (15 issue types) |
| Duplication | Find code clones with 4 modes: strict, mild, weak, semantic |
| Complexity | Function complexity analysis, hotspot detection, health scores |
| Auto-Fix | Remove unused exports and dependencies with dry-run preview |
| CI | GitHub Actions, SARIF upload, baseline comparison, PR-scoped checks |
| Monorepo | Per-workspace analysis with cross-package resolution |
| Debug | Trace export usage chains, file edges, and dependency usage |
Once installed, you can use natural language:
User: "Find all unused exports"
↓
Agent loads fallow skill
↓
Skill instructs: run `fallow dead-code --format json --quiet --unused-exports`
↓
Agent executes command, parses JSON output
↓
Agent summarizes findings with file paths and line numbers
The skill provides agents with:
--yes in non-TTY--traceSee CLAUDE.md for repository structure, skill creation guidelines, and quality standards.
MIT. See LICENSE for details.