https://github.com/plaited/development-skills
Make AI coding agents smarter. Type-aware code search, documentation standards, development conventions. CLI + installable skills for Claude, Cursor, Copilot.
https://github.com/plaited/development-skills
agent-skills agentskills ai-coding-agents ai-developer-tools bun claude-code cli code-quality cursor developer-tools development-rules github-copilot language-server-protocol tsdoc typescript typescript-lsp
Last synced: 25 days ago
JSON representation
Make AI coding agents smarter. Type-aware code search, documentation standards, development conventions. CLI + installable skills for Claude, Cursor, Copilot.
- Host: GitHub
- URL: https://github.com/plaited/development-skills
- Owner: plaited
- License: isc
- Created: 2026-01-15T22:30:54.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-01-19T23:48:26.000Z (about 1 month ago)
- Last Synced: 2026-01-20T06:40:38.552Z (about 1 month ago)
- Topics: agent-skills, agentskills, ai-coding-agents, ai-developer-tools, bun, claude-code, cli, code-quality, cursor, developer-tools, development-rules, github-copilot, language-server-protocol, tsdoc, typescript, typescript-lsp
- Language: TypeScript
- Homepage:
- Size: 143 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Agents: AGENTS.md
Awesome Lists containing this project
README
# @plaited/development-skills
[](https://www.npmjs.com/package/@plaited/development-skills)
[](https://github.com/plaited/development-skills/actions/workflows/ci.yml)
[](https://opensource.org/licenses/ISC)
> TypeScript LSP tools and AI agent skills for modern development workflows
## Examples
```bash
# 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*.
```bash
# 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
```bash
curl -fsSL https://raw.githubusercontent.com/plaited/skills-installer/main/install.sh | bash -s -- --agents --project development-skills
```
**Agents:** `claude` · `cursor` · `copilot` · `codex` · `gemini` · `windsurf` · `opencode` · `amp` · `goose` · `factory`
## Commands
| Command | What it does |
|---------|--------------|
| `lsp-hover` | Type info at position |
| `lsp-find` | Symbol search |
| `lsp-refs` | Find references |
| `lsp-analyze` | Batch file analysis |
| `validate-skill` | Validate AgentSkills |
| `scaffold-rules` | Scaffold 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