aceternity-ui
100+ animated React components (Aceternity UI) for Next.js with Tailwind. Use for hero sections, parallax, 3D effects, or encountering animation, shadcn CLI…
Automate 7-phase feature development with specialized agents (code-explorer, code-architect, code-reviewer). Use for multi-file features, architectural decisions, or encountering ambiguous requirements, integration patterns, design approach errors.
$ npx -y skills add secondsky/claude-skills --skill feature-dev --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/feature-devContext preview
The summary Claude sees to decide when to auto-load this skill.
Automate 7-phase feature development with specialized agents (code-explorer, code-architect, code-reviewer). Use for multi-file features, architectural decisions, or encountering ambiguous requirements, integration patterns, design approach errors.
name: feature-dev
description: "Automate 7-phase feature development with specialized agents (code-explorer, code-architect, code-reviewer). Use for multi-file features, architectural decisions, or encountering ambiguous requirements, integration patterns, design approach errors."
license: MIT
allowed-tools: ["Read", "Write", "Edit", "Bash", "Task"]
metadata:
version: 1.0.0
author: Sid Bidasaria
agents:
- code-explorer
- code-architect
- code-reviewer
keywords:
- feature development
- code exploration
- architecture design
- code review
- workflow automation
- slash command
- agents
- discovery phase
- implementation planning
- quality reviewA comprehensive, structured workflow for feature development with specialized agents for codebase exploration, architecture design, and quality review.
Launch the guided feature development workflow:
/feature-dev Add user authentication with OAuth
Or interactively:
/feature-dev
The workflow will guide you through 7 distinct phases automatically.
Building features requires more than just writing code. This skill provides a systematic approach that:
**Goal**: Understand what needs to be built
**Example**:
User: /feature-dev Add caching
Agent: Let me understand what you need...
- What should be cached? (API responses, computed values, etc.)
- What are your performance requirements?
- Do you have a preferred caching solution?**Goal**: Understand relevant existing code and patterns
**Agents launched**:
**Example output**:
Found similar features: - User authentication (src/auth/): Uses JWT tokens, middleware pattern - Session management (src/session/): Redis-backed, 24hr expiry Key files: - src/auth/AuthService.ts:45 - Core authentication logic - src/middleware/authMiddleware.ts:12 - Request authentication
**Goal**: Fill in gaps and resolve all ambiguities
**Example**:
Before designing, I need to clarify: 1. OAuth provider: Which providers? (Google, GitHub, custom?) 2. User data: Store OAuth tokens or just profile? 3. Existing auth: Replace or add alongside current auth? 4. Sessions: Integrate with existing session management? 5. Error handling: How to handle OAuth failures?
**Critical**: Ensures nothing is ambiguous before design begins.
**Goal**: Design multiple implementation approaches
**Example output**:
Approach 1: Minimal Changes - Extend existing AuthService with OAuth methods Pros: Fast, low risk Cons: Couples OAuth to existing auth Approach 2: Clean Architecture - New OAuthService with dedicated interface Pros: Clean separation, testable Cons: More files, more refactoring Approach 3: Pragmatic Balance - New OAuthProvider abstraction Pros: Balanced complexity and cleanliness Cons: Some coupling remains Recommendation: Approach 3 - clean boundaries without excessive refactoring
**Goal**: Build the feature
**Goal**: Ensure code is simple, DRY, elegant, and functionally correct
**Example output**:
High Priority Issues: 1. Missing error handling in OAuth callback (src/auth/oauth.ts:67) 2. Memory leak: OAuth state not cleaned up (src/auth/oauth.ts:89) Medium Priority: 1. Could simplify token refresh logic (src/auth/oauth.ts:120) What would you like to do?
**Goal**: Document what was accomplished
**Purpose**: Deeply analyzes existing codebase features by tracing execution paths
**Focus**:
**Output**:
**Triggered**: Automatic
145 production-ready skills for Claude Code CLI 🔌 Platform / Harness Support These plugins ship as Claude Code marketplace plugins (.claude-plugin/ manifests) and Codex CLI plugins (.codex-plugin/ manifests).
Repo: secondsky/claude-skills
100+ animated React components (Aceternity UI) for Next.js with Tailwind. Use for hero sections, parallax, 3D effects, or encountering animation, shadcn CLI…
Secure API authentication with JWT, OAuth 2.0, API keys. Use for authentication systems, third-party integrations, service-to-service communication, or…
Creates comprehensive API changelogs documenting breaking changes, deprecations, and migration strategies for API consumers. Use when managing API versions,…
Verifies API contracts between services using consumer-driven contracts, schema validation, and tools like Pact. Use when testing microservices communication,…
Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs,…
Implements standardized API error responses with proper status codes, logging, and user-friendly messages. Use when building production APIs, implementing…