Package Exports
- create-sdlc-agents
- create-sdlc-agents/src/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (create-sdlc-agents) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
🤖 Enterprise SDLC Agent System
18 AI agents chuyên biệt cho toàn bộ vòng đời phát triển phần mềm.
Hỗ trợ cả Claude Code và GitHub Copilot — plug-and-play vào bất kỳ dự án nào.
🚀 Quick Install
# Cách 1: NPX — Interactive setup wizard (khuyên dùng)
npx create-sdlc-agents
# Cách 2: NPX — Non-interactive
npx create-sdlc-agents --platform both --type fullstack --no-interactive
# Cách 3: Copy thủ công
cp -r AI_agentic/.claude/ your-project/.claude/ # Claude Code
cp -r AI_agentic/.github/ your-project/.github/ # GitHub Copilot⚡ Quick Start (5 phút)
# 1. Cấu hình tech stack
# Edit: .claude/config/project.config.yml (hoặc .github/config/)
# 2. Mô tả dự án
# Edit: .claude/memory/project-context.md (hoặc .github/memory/)
# 3. Bắt đầu dùng!
@setup-assistant Analyze my project # Auto-detect tech stack
@implementer Tạo CRUD service cho module products
@qa-tester Viết test cho products service
@code-reviewer Review module products📋 Xem thêm: QUICK_START.md — Bảng tham chiếu nhanh 1 trang
🏗️ Kiến trúc
User Request
│
┌────────▼────────┐
│ @router │ Phân loại & điều phối
└────────┬────────┘
│
┌─────────────┼─────────────┐
│ Simple │ Complex │
▼ ▼ │
Single Agent @planner │
(Decompose) │
│ │
┌────────▼────────┐ │
│ PIPELINE │ │
│ │ │
│ Design: @architect, @db-designer, @api-designer │
│ Build: @implementer, @frontend-dev │
│ Test: @qa-tester, @code-reviewer, @security-aud │
│ Ship: @devops, @tech-writer │
└─────────────────┘🤖 18 Agents
| Agent | Vai trò | Dùng khi |
|---|---|---|
@router |
Phân loại & route requests | Tự động |
@planner |
Tách task phức tạp | Feature lớn |
@product-manager |
PRD, user stories | Feature mới |
@architect |
Thiết kế kiến trúc | Module mới |
@db-designer |
Database schema & migration | Schema change |
@api-designer |
API endpoints & DTOs | API mới |
@implementer |
Code backend | Implement logic |
@frontend-dev |
Code frontend (React) | UI components |
@qa-tester |
Unit/integration/E2E test | Test coverage |
@code-reviewer |
Review code | Trước merge |
@security-auditor |
OWASP audit | Auth/payment |
@critic |
Phản biện & debate | Quyết định rủi ro |
@debug-detective |
Debug & RCA | Bug report |
@performance-optimizer |
Profiling & optimization | API chậm |
@devops |
CI/CD, Docker, deploy | Infrastructure |
@tech-writer |
Documentation | README, API docs |
@ticket-manager |
Issue triage & SLA | Bug/feature tickets |
@setup-assistant |
🆕 Setup & onboarding | Dự án mới, config |
📊 Đánh giá
| Platform | Score | Grade |
|---|---|---|
| GitHub Copilot | 9.58 / 10 | 🏆 A+ |
| Claude Code | 9.55 / 10 | 🏆 A+ |
Đánh giá theo 12 tiêu chí: Agent Anatomy, Core Protocols, Skills, Pipeline, Guardrails, Documentation, Memory, Prompts, Platform Integration, Portability, Error Handling, Production Readiness.
📚 Tài liệu
Cho người mới bắt đầu
| Tài liệu | Mô tả |
|---|---|
| 📋 Quick Start | Cheat sheet 1 trang — chọn agent, prompt patterns, pipelines |
| 📖 Hướng dẫn tổng quan | Guide 32KB — 9 use cases thực tế step-by-step |
Theo Platform
| Tài liệu | Mô tả |
|---|---|
| 🔵 Claude Code Guide | 30KB — Cài đặt, 17 agents, pipelines, slash commands, FAQ |
| 🟢 GitHub Copilot Guide | 33KB — Cài đặt VS Code, agents, skills, so sánh platforms |
Nâng cao
| Tài liệu | Mô tả |
|---|---|
| 📊 Evaluation Report | Đánh giá chi tiết 12 tiêu chí (v4.0) |
| 🔄 Portability Guide | Migration giữa Claude/Copilot/Cursor/Cline |
| ⚙️ Tuning Guide | Cấu hình nâng cao, model routing, cost optimization |
🗂️ Cấu trúc thư mục
AI_agentic/
│
├── 📄 README.md ← Bạn đang đây
├── 📄 QUICK_START.md ← Cheat sheet 1 trang
├── 📄 AGENT_SYSTEM_GUIDE.md ← Hướng dẫn tổng quan (9 use cases)
├── 📄 EVALUATION_REPORT.md ← Đánh giá A+ (v4.0)
│
├── 📁 .claude/ ← Claude Code Agent System
│ ├── CLAUDE.md ← Global rules
│ ├── USAGE_GUIDE.md ← Hướng dẫn sử dụng
│ ├── llms.md ← Project metadata
│ ├── agents/ (18 files) ← Agent definitions
│ ├── core/ (14 files) ← Core protocols
│ ├── skills/ (27 folders) ← Skill library
│ ├── config/ ← Configuration
│ └── memory/ ← Persistent memory
│
├── 📁 .github/ ← GitHub Copilot Agent System
│ ├── copilot-instructions.md ← Global rules
│ ├── USAGE_GUIDE.md ← Hướng dẫn sử dụng
│ ├── llms.md ← Project metadata
│ ├── agents/ (18 files) ← Agent definitions (.agent.md)
│ ├── core/ (14 files) ← Core protocols
│ ├── skills/ (27 folders) ← Skill library
│ ├── config/ ← Configuration
│ └── memory/ ← Persistent memory
│
├── 📁 bin/ ← CLI entry point
├── 📁 src/ ← NPX CLI source
├── 📁 templates/ ← Template files for scaffolding
│
└── 📁 docs/ ← Supplementary docs🔄 Cross-Platform
Cả 2 hệ thống có cùng 18 agents, 14 protocols, 27 skills — chỉ khác format file:
| Component | Claude Code | GitHub Copilot |
|---|---|---|
| Rules file | CLAUDE.md |
copilot-instructions.md |
| Agent format | agent-name.md |
agent-name.agent.md |
| Invocation | @agent in CLI |
@agent in VS Code Chat |
| Context | 200K tokens | VS Code context |
🔄 Xem Portability Guide để migrate giữa các platform.
📈 Thống kê
| Metric | Claude | GitHub | Total |
|---|---|---|---|
| Files | 85 | 109 | 194 |
| Total size | 507KB | 704KB | 1.2MB |
| Agent avg depth | 9.1KB | 9.2KB | — |
| Protocol avg depth | 10.9KB | 10.1KB | — |
| Documentation | 49KB | 60KB | 109KB |
Enterprise SDLC Agent System v5.0 — A+ Grade (9.55-9.58/10)
© 2026 Doan Hai Duy — Built with Claude Opus 4.6