Devkit-AI
01Plugin Claude Code
Reusable skills, agents, and hooks for TypeScript development, installable into Claude Code, Cursor, or OpenCode.
Plugin Claude Code
Reusable skills, agents, and hooks for TypeScript development, installable into Claude Code, Cursor, or OpenCode.
Settings file Claude Code
Agent settings configuring enabledPlugins.
Instructions file CodexOpenCode
Instructions for pau-vega/Devkit-AI: For additional context about technologies to be used, project structure, shell commands, and other important information, read the current plan.
Instructions file
Instructions for pau-vega/Devkit-AI, covering project notes, project overview, repository structure, how to test locally and architecture.
Plugin Claude Code
Streamline git workflow with /commit, /commit-push-pr, and /clean-gone commands.
Agent
Cleans up local branches that have been deleted from the remote repository (marked as [gone]). Removes associated worktrees before deleting branches. Context: User wants to clean up stale local branches user: "/clean-gone" assistant: "I'll use the clean-gone-agent to remove stale branches." User running /clean-gone…
Agent
Creates a git commit with an automatically generated commit message based on staged and unstaged changes. Reviews diff, examines recent commit history to match repo style, stages files, and creates the commit. Context: User wants to commit their changes user: "/commit" assistant: "I'll use the commit-agent to stage…
Agent
Complete workflow agent that commits changes, pushes to a remote branch, and creates a pull request. Handles branch creation, commit message generation, and PR description with summary and test plan. Context: User wants to commit, push, and open a PR user: "/commit-push-pr" assistant: "I'll use the…
Command
Clean up local branches that have been deleted from the remote repository.
Command
Complete workflow — commit, push, and create a pull request in one step.
Command
Create a git commit with an automatically generated message based on staged and unstaged changes.
Skill Claude CodeCodex
Git workflow conventions for committing, branching, and PRs. Covers commit message style, branch naming, and PR structure. Consult when creating commits or pull requests in any project.
Plugin Claude Code
JSDoc documentation standards with three enforcement levels (Minimal, Standard, Strict), automatic warnings, and on-demand review.
Agent
Reviews TypeScript code for JSDoc documentation compliance across three enforcement levels (Minimal, Standard, Strict). Use this agent when reviewing JSDoc quality or auditing documentation coverage. Context: User wants to check JSDoc coverage in their project user: "Review my JSDocs" assistant: "I'll dispatch the…
Command
Review TypeScript files for JSDoc compliance at a specified enforcement level. This skill should be used when the user runs "/jsdoc-review", "/jsdoc-review minimal", "/jsdoc-review standard", or "/jsdoc-review strict".
Hook
Runs before the agent uses a tool for Write and Edit tool calls, executing warn-missing-jsdoc.sh via bash. From pau-vega/Devkit-AI.
Skill Claude CodeCodex
TypeScript JSDoc documentation conventions with three enforcement levels (Minimal, Standard, Strict). This skill should be used when the user asks to "add JSDoc", "document this code", "add documentation", "write JSDocs", "improve documentation", "set JSDoc level", "which JSDoc level", or when applying JSDoc…
Plugin Claude Code
Set up automated semantic versioning, changelogs, and per-package publishing in a pnpm/Turbo monorepo using googleapis/release-please-action v4.
Skill Claude CodeCodex
Set up automated semantic versioning, changelogs, and per-package publishing in a pnpm/Turbo monorepo using googleapis/release-please-action v4. Use when the user asks to "add release please", "automate releases/versioning", "publish packages on push to main", "set up release-please in a monorepo", or wants…
Plugin Claude Code
TypeScript coding conventions with automatic validation, review command, and reviewer agent.
Agent
Reviews TypeScript code for rule compliance, suggests refactorings aligned with conventions (e.g. & to interface extends), and detects bugs, logic issues, and opportunities for stricter typing. Use when reviewing TypeScript code quality. Context: User wants to check their TypeScript code against conventions user…
Command
Run a full TypeScript code review against project conventions.
Skill Claude CodeCodex
TypeScript coding conventions for any TS project. Covers types & interfaces (interface extends over &, discriminated unions, no enums), functions & error handling (Result types, no any, explicit return types), imports (import type, no default exports), and naming conventions. Use when writing or reviewing TypeScript…