smithery.ai

implement-feature

Implement a feature or fix a bug following the project's TypeScript patterns and conventions. Use when code changes are needed.

First seen Mar 19, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,038 B
  • docs SUMMARY.md 152 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 4 installs

SKILL.md

Implement Feature

Implement the following:

$ARGUMENTS

Implementation Checklist

  1. Read existing code before making changes
  2. Follow existing patterns:

- Agents: BaseAgent + StateGraph + Annotation state - Backend: tsoa controllers + service layer - Frontend: Vue 3 Composition API + Pinia - Common: Shared types and utilities

  1. Write TypeScript with proper type annotations
  2. Handle errors at system boundaries
  3. Verify the build passes: pnpm build

Key Conventions

  • Use Annotation.Root({}) for LangGraph agent state
  • Use @traceable decorator for LangSmith observability
  • Export new types from the appropriate package's index.ts
  • Register new agents in AgentFactory
  • Generate routes after controller changes: pnpm --filter @llmops-demo-ts/backend generate