plaited/development-skills

Make AI coding agents smarter. Type-aware code search, documentation standards, development conventions. CLI + installable skills for Claude, Cursor, Copilot.

1 stars0 forksUpdated Jan 25, 2026
npx skills add plaited/development-skills

README

@plaited/development-skills

npm version CI License: ISC

TypeScript LSP tools and AI agent skills for modern development workflows

Examples

# Find where a type is defined
bunx @plaited/development-skills lsp-find UserConfig

# Get type info at cursor position (line 25, column 10)
bunx @plaited/development-skills lsp-hover src/app.ts 25 10

# Find all usages of a symbol
bunx @plaited/development-skills lsp-refs src/types.ts 15 12

# Validate your AI agent skills
bunx @plaited/development-skills validate-skill .claude/skills

# Scaffold development rules for your project
bunx @plaited/development-skills scaffold-rules

Why LSP?

Text search finds strings. LSP finds meaning.

# Text search: finds "Config" in comments, strings, everywhere
grep -r "Config" src/

# LSP search: finds the actual Config type and its usages
bunx @plaited/development-skills lsp-find Config

LSP understands re-exports, aliases, and type relationships.

Install for AI Agents

curl -fsSL https://raw.githubusercontent.com/plaited/skills-installer/main/install.sh | bash -s -- --agents <agent-name> --project development-skills

Agents: claude · cursor · copilot · codex · gemini · windsurf · opencode · amp · goose · factory

Commands

CommandWhat it does
lsp-hoverType info at position
lsp-findSymbol search
lsp-refsFind references
lsp-analyzeBatch file analysis
validate-skillValidate AgentSkills
scaffold-rulesScaffold dev rules

Skills Included

  • typescript-lsp - LSP integration for AI agents
  • code-documentation - TSDoc workflow and standards
  • validate-skill - Skill validation
  • scaffold-rules - Development rules scaffolding

License

ISC