{"id":38067604,"url":"https://github.com/plaited/development-skills","last_synced_at":"2026-01-25T10:03:02.547Z","repository":{"id":332880039,"uuid":"1135289507","full_name":"plaited/development-skills","owner":"plaited","description":"Make AI coding agents smarter. Type-aware code search, documentation standards, development conventions. CLI + installable skills for Claude, Cursor, Copilot.","archived":false,"fork":false,"pushed_at":"2026-01-19T23:48:26.000Z","size":146,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-20T06:40:38.552Z","etag":null,"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"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/plaited.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-01-15T22:30:54.000Z","updated_at":"2026-01-19T23:48:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/plaited/development-skills","commit_stats":null,"previous_names":["plaited/typescript-lsp"],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/plaited/development-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plaited%2Fdevelopment-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plaited%2Fdevelopment-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plaited%2Fdevelopment-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plaited%2Fdevelopment-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/plaited","download_url":"https://codeload.github.com/plaited/development-skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plaited%2Fdevelopment-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28751065,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T09:58:17.166Z","status":"ssl_error","status_checked_at":"2026-01-25T09:55:56.104Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["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"],"created_at":"2026-01-16T20:36:17.524Z","updated_at":"2026-01-25T10:03:02.542Z","avatar_url":"https://github.com/plaited.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @plaited/development-skills\n\n[![npm version](https://img.shields.io/npm/v/@plaited/development-skills.svg)](https://www.npmjs.com/package/@plaited/development-skills)\n[![CI](https://github.com/plaited/acp-harness/actions/workflows/ci.yml/badge.svg)](https://github.com/plaited/development-skills/actions/workflows/ci.yml)\n[![License: ISC](https://img.shields.io/badge/License-ISC-blue.svg)](https://opensource.org/licenses/ISC)\n\n \u003e TypeScript LSP tools and AI agent skills for modern development workflows\n\n## Examples\n\n```bash\n# Find where a type is defined\nbunx @plaited/development-skills lsp-find UserConfig\n\n# Get type info at cursor position (line 25, column 10)\nbunx @plaited/development-skills lsp-hover src/app.ts 25 10\n\n# Find all usages of a symbol\nbunx @plaited/development-skills lsp-refs src/types.ts 15 12\n\n# Validate your AI agent skills\nbunx @plaited/development-skills validate-skill .claude/skills\n\n# Scaffold development rules for your project\nbunx @plaited/development-skills scaffold-rules\n```\n\n## Why LSP?\n\nText search finds strings. LSP finds *meaning*.\n\n```bash\n# Text search: finds \"Config\" in comments, strings, everywhere\ngrep -r \"Config\" src/\n\n# LSP search: finds the actual Config type and its usages\nbunx @plaited/development-skills lsp-find Config\n```\n\nLSP understands re-exports, aliases, and type relationships.\n\n## Install for AI Agents\n\n```bash\ncurl -fsSL https://raw.githubusercontent.com/plaited/skills-installer/main/install.sh | bash -s -- --agents \u003cagent-name\u003e --project development-skills\n```\n\n**Agents:** `claude` · `cursor` · `copilot` · `codex` · `gemini` · `windsurf` · `opencode` · `amp` · `goose` · `factory`\n\n## Commands\n\n| Command | What it does |\n|---------|--------------|\n| `lsp-hover` | Type info at position |\n| `lsp-find` | Symbol search |\n| `lsp-refs` | Find references |\n| `lsp-analyze` | Batch file analysis |\n| `validate-skill` | Validate AgentSkills |\n| `scaffold-rules` | Scaffold dev rules |\n\n## Skills Included\n\n- **typescript-lsp** - LSP integration for AI agents\n- **code-documentation** - TSDoc workflow and standards\n- **validate-skill** - Skill validation\n- **scaffold-rules** - Development rules scaffolding\n\n## License\n\nISC\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplaited%2Fdevelopment-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplaited%2Fdevelopment-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplaited%2Fdevelopment-skills/lists"}