🛠️ Development
ウェブ、モバイル、バックエンド開発を統合し、フロントエンドからフルスタックまで一貫したアプリケーションを提供するSkill。
📺 まず動画で見る(YouTube)
▶ 【衝撃】最強のAIエージェント「Claude Code」の最新機能・使い方・プログラミングをAIで効率化する超実践術を解説! ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
Comprehensive web, mobile, and backend development workflow bundling frontend, backend, full-stack, and mobile development skills for end-to-end application delivery.
🇯🇵 日本人クリエイター向け解説
ウェブ、モバイル、バックエンド開発を統合し、フロントエンドからフルスタックまで一貫したアプリケーションを提供するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o development.zip https://jpskill.com/download/2765.zip && unzip -o development.zip && rm development.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/2765.zip -OutFile "$d\development.zip"; Expand-Archive "$d\development.zip" -DestinationPath $d -Force; ri "$d\development.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
development.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
developmentフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
💬 こう話しかけるだけ — サンプルプロンプト
- › Development を使って、最小構成のサンプルコードを示して
- › Development の主な使い方と注意点を教えて
- › Development を既存プロジェクトに組み込む方法を教えて
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Development Workflow Bundle
Overview
Consolidated workflow for end-to-end software development covering web, mobile, and backend development. This bundle orchestrates skills for building production-ready applications from scaffolding to deployment.
When to Use This Workflow
Use this workflow when:
- Building new web or mobile applications
- Adding features to existing applications
- Refactoring or modernizing legacy code
- Setting up new projects with best practices
- Full-stack feature development
- Cross-platform application development
Workflow Phases
Phase 1: Project Setup and Scaffolding
Skills to Invoke
app-builder- Main application building orchestratorsenior-fullstack- Full-stack development guidanceenvironment-setup-guide- Development environment setupconcise-planning- Task planning and breakdown
Actions
- Determine project type (web, mobile, full-stack)
- Select technology stack
- Scaffold project structure
- Configure development environment
- Set up version control and CI/CD
Copy-Paste Prompts
Use @app-builder to scaffold a new React + Node.js full-stack application
Use @senior-fullstack to set up a Next.js 14 project with App Router
Use @environment-setup-guide to configure my development environment
Phase 2: Frontend Development
Skills to Invoke
frontend-developer- React/Next.js component developmentfrontend-design- UI/UX design implementationreact-patterns- Modern React patternstypescript-pro- TypeScript best practicestailwind-patterns- Tailwind CSS stylingnextjs-app-router-patterns- Next.js 14+ patterns
Actions
- Design component architecture
- Implement UI components
- Set up state management
- Configure routing
- Apply styling and theming
- Implement responsive design
Copy-Paste Prompts
Use @frontend-developer to create a dashboard component with React and TypeScript
Use @react-patterns to implement proper state management with Zustand
Use @tailwind-patterns to style components with a consistent design system
Phase 3: Backend Development
Skills to Invoke
backend-architect- Backend architecture designbackend-dev-guidelines- Backend development standardsnodejs-backend-patterns- Node.js/Express patternsfastapi-pro- FastAPI developmentapi-design-principles- REST/GraphQL API designauth-implementation-patterns- Authentication implementation
Actions
- Design API architecture
- Implement REST/GraphQL endpoints
- Set up database connections
- Implement authentication/authorization
- Configure middleware
- Set up error handling
Copy-Paste Prompts
Use @backend-architect to design a microservices architecture for my application
Use @nodejs-backend-patterns to create Express.js API endpoints
Use @auth-implementation-patterns to implement JWT authentication
Phase 4: Database Development
Skills to Invoke
database-architect- Database designdatabase-design- Schema design principlesprisma-expert- Prisma ORMpostgresql- PostgreSQL optimizationneon-postgres- Serverless Postgres
Actions
- Design database schema
- Create migrations
- Set up ORM
- Optimize queries
- Configure connection pooling
Copy-Paste Prompts
Use @database-architect to design a normalized schema for an e-commerce platform
Use @prisma-expert to set up Prisma ORM with TypeScript
Phase 5: Testing
Skills to Invoke
test-driven-development- TDD workflowjavascript-testing-patterns- Jest/Vitest testingpython-testing-patterns- pytest testinge2e-testing-patterns- Playwright/Cypress E2Eplaywright-skill- Browser automation testing
Actions
- Write unit tests
- Create integration tests
- Set up E2E tests
- Configure CI test runners
- Achieve coverage targets
Copy-Paste Prompts
Use @test-driven-development to implement features with TDD
Use @playwright-skill to create E2E tests for critical user flows
Phase 6: Code Quality and Review
Skills to Invoke
code-reviewer- AI-powered code reviewclean-code- Clean code principleslint-and-validate- Linting and validationsecurity-scanning-security-sast- Static security analysis
Actions
- Run linters and formatters
- Perform code review
- Fix code quality issues
- Run security scans
- Address vulnerabilities
Copy-Paste Prompts
Use @code-reviewer to review my pull request
Use @lint-and-validate to check code quality
Phase 7: Build and Deployment
Skills to Invoke
deployment-engineer- Deployment orchestrationdocker-expert- Containerizationvercel-deployment- Vercel deploymentgithub-actions-templates- CI/CD workflowscicd-automation-workflow-automate- CI/CD automation
Actions
- Create Dockerfiles
- Configure build pipelines
- Set up deployment workflows
- Configure environment variables
- Deploy to production
Copy-Paste Prompts
Use @docker-expert to containerize my application
Use @vercel-deployment to deploy my Next.js app to production
Use @github-actions-templates to set up CI/CD pipeline
Technology-Specific Workflows
React/Next.js Development
Skills: frontend-developer, react-patterns, nextjs-app-router-patterns, typescript-pro, tailwind-patterns
Python/FastAPI Development
Skills: fastapi-pro, python-pro, python-patterns, pydantic-models-py
Node.js/Express Development
Skills: nodejs-backend-patterns, javascript-pro, typescript-pro, express (via nodejs-backend-patterns)
Full-Stack Development
Skills: senior-fullstack, app-builder, frontend-developer, backend-architect, database-architect
Mobile Development
Skills: mobile-developer, react-native-architecture, flutter-expert, ios-developer
Quality Gates
Before moving to next phase, verify:
- [ ] All tests passing
- [ ] Code review completed
- [ ] Security scan passed
- [ ] Linting/formatting clean
- [ ] Documentation updated
Related Workflow Bundles
wordpress- WordPress-specific developmentsecurity-audit- Security testing workflowtesting-qa- Comprehensive testing workflowdocumentation- Documentation generation workflow
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.