project-development-mindset
Universal developer mindset and project workflow guide for programming projects. Use when creating a new project, choosing or reviewing a tech stack, modifying an existing codebase, implementing features, fixing bugs, writing or updating documentation, designing architecture or folder structure, improving UI/UX consistency, adding tests, debugging errors, improving performance, preparing deployment, or working across multiple repositories. Useful for experienced developers, beginners, non-developers, founders, and anyone who needs AI assistance to build, maintain, document, test, debug, or deploy software safely.
What this skill does
# Project Development Mindset
Use this skill early for programming tasks, especially when the user has not provided detailed project conventions. Work from the existing project first, keep changes small and reversible, and explain important decisions in plain language.
## Core Mindset
- Respect the existing project first.
- Read before changing.
- Do not overwrite existing files without checking their content.
- Do not move, delete, or restructure important files without user confirmation.
- Prefer small, reversible changes.
- Keep documentation synchronized with code.
- Always consider testing before declaring work complete.
- Explain important technical decisions in plain language so non-developers can understand.
- Avoid guessing when the project already contains docs, conventions, configs, tests, logs, or architecture decisions.
- When uncertain, inspect the project first and make the safest reasonable assumption.
- Ask the user only when the decision is risky, destructive, related to credentials, deployment, production, billing, database migrations, or major architecture.
## Optional Same-Repository Skills
Reference other skills only when they exist in the same shared skills repository as this skill.
Before using an optional skill:
1. Locate this skill in the shared repository.
2. Verify that the sibling skill folder exists and contains a valid `SKILL.md`, such as `../documentation-guidelines/SKILL.md` from this skill folder or `skills/documentation-guidelines/SKILL.md` from the repository root.
3. If the skill is missing, tell the user the optional skill was not found in the shared repository and use the fallback instructions in this skill.
Optional skills to check before use:
- `documentation-guidelines`: use for feature, module, backend, and API documentation. Fallback: use the documentation structure and content checklist below.
- `design-system-generator`: use for creating or updating `docs/DESIGN_SYSTEM.md`. Fallback: create a practical design system document manually.
- `agents-md-generator`: use for creating or updating `AGENTS.md`, `CLAUDE.md`, or equivalent project memory files. Fallback: create or update those files manually.
- `vps-docker-traefik-deploy`: use for VPS, Docker Compose, and Traefik deployment planning or implementation. Fallback: provide general deployment guidance manually.
Do not reference, require, download, or depend on external skills or user-specific local paths.
## General Workflow
### 1. Discover
- Inspect the repository structure.
- Identify the tech stack, framework, package manager, test tooling, build tooling, deployment files, and documentation.
- Look for `README.md`, `docs/`, `AGENTS.md`, `CLAUDE.md`, package files, lock files, framework configs, Docker files, CI files, and existing tests.
- In multi-repository projects, check related repositories when the task clearly spans backend, frontend, API, admin panel, worker, mobile app, or deployment.
### 2. Understand
- Read existing documentation before changing code.
- Read relevant source files before proposing changes.
- Look for business rules and special project-specific behavior.
- Do not replace unique business logic with generic assumptions.
### 3. Plan
- Create a short implementation plan for substantial tasks.
- Mention files likely to change.
- Mention the testing strategy.
- For non-developers, explain the plan in simple language.
### 4. Implement
- Follow existing architecture, naming conventions, coding style, framework standards, and package manager conventions.
- Prefer minimal changes that solve the task.
- Do not introduce unnecessary new libraries.
- Use official documentation or local project conventions when working with frameworks or third-party libraries.
### 5. Test
- Run the most relevant targeted tests first.
- Then run the full available test suite when practical.
- If tests fail, fix the issue and rerun.
- If full tests cannot be run, clearly explain why and provide the closest reliable verification.
### 6. Document
- Update relevant documentation after code changes.
- Update feature docs, module docs, `README.md`, `AGENTS.md`, or `CLAUDE.md` when project behavior or instructions changed.
- Document difficult bugs and their solutions so the project does not repeat the same problem later.
### 7. Report
- Summarize what changed.
- List tests or checks that were run.
- Mention documentation updated.
- Mention anything that could not be verified.
- Mention remaining risks or recommended next steps.
## New Project Workflow
Use this when the project is empty, newly created, or still choosing a stack.
Create these folders and files when they do not already exist:
- `README.md`
- `docs/`
- `docs/README.md`
- `deploy/`
- `deploy/README.md`
- `src/` when appropriate for the selected stack
For frameworks that use a different standard source folder, such as `app/`, `pages/`, `packages/`, `backend/`, `frontend/`, `cmd/`, `internal/`, or another framework-specific structure, respect the framework standard. Do not force all source code into `src/` if that would conflict with the stack.
For a new project:
- Help the user choose a suitable tech stack if they have not chosen one.
- Explain tradeoffs in plain language.
- Recommend a simple, maintainable structure.
- Initialize documentation early.
- Create a `README.md` that explains project purpose, setup, development, testing, and deployment basics.
- Create `docs/README.md` as the documentation entry point.
- Create `deploy/README.md` as the deployment entry point.
- Check whether Git is installed.
- If Git is installed, initialize Git when appropriate and safe.
- If Git is not installed, guide the user to install it. Do not attempt system-level installation without user confirmation.
- Ask whether the user wants GitHub, GitLab, Bitbucket, or another Git hosting provider for safe remote backup.
- Do not create remotes, push code, or configure credentials without user confirmation.
## Existing Project Workflow
Use this when the project already contains source code, configs, docs, or deployment files.
Create these folders and files only if missing and safe:
- `README.md`
- `docs/`
- `docs/README.md`
- `deploy/`
- `deploy/README.md`
For `src/`:
- Do not force-create or migrate to `src/` if the project already has a framework-standard source structure.
- Create `src/` only when the project has no clear source folder and `src/` would improve clarity.
- Never move existing code into `src/` without user confirmation.
## Documentation Structure
Use `docs/features/` for feature and module documentation.
Recommended structure:
```text
docs/
README.md
DESIGN_SYSTEM.md
features/
customer/
README.md
customer-module.md
customer-payment.md
order/
README.md
order-module.md
order-fulfillment.md
```
Rules:
- Give each major business module its own folder under `docs/features/`.
- Put a `README.md` in each module folder.
- Link from the module `README.md` to all child documents in that module.
- Keep related docs together.
- Use clear file names such as `customer-module.md`, `customer-payment.md`, and `customer-notifications.md`.
- Keep docs practical, not theoretical.
When writing module docs, include:
- Module purpose
- Main user flows
- Important business rules
- Related source files
- Related API endpoints, pages, components, jobs, commands, database tables, or services
- Special project-specific behavior
- Edge cases
- Known limitations
- Testing notes
- Deployment or configuration notes when relevant
- Links to child docs or related module docs
Use `documentation-guidelines` only if it exists in the same shared skills repository. Otherwise, use this section as the fallback.
## Design System
For projects with UI, create or update `docs/DESIGN_SYSTEM.md`.
Use `design-system-generator` only if it exists in the same shared skills repository. Otherwise, create a practical `DESIGN_SYSTEM.md` manually with:
- LayoutRelated in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.