Skip to content

Commit 9652230

Browse files
committed
feat: HCSA v5.0 Fusion Architecture - Add Tier 3 skills
1 parent fb15c3c commit 9652230

File tree

5 files changed

+823
-41
lines changed

5 files changed

+823
-41
lines changed
Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
---
2+
name: enterprise-project
3+
description: "Tier 3: Lead-Worker + Handoff for enterprise software development. Keywords: enterprise, large scale, production, architecture, scalability, 企业级, 大规模, 生产环境"
4+
layer: workflow
5+
role: lead-coordinator
6+
tier: 3
7+
version: 5.0.0
8+
architecture: lead-worker-handoff
9+
invokes:
10+
- decomposition-planner
11+
- orchestrator
12+
- coding-workflow
13+
- refactoring-workflow
14+
- aggregation-processor
15+
- security-auditor
16+
- performance-optimizer
17+
invoked_by:
18+
- meta-layer-orchestrator
19+
- lead-agent
20+
capabilities:
21+
- lead_worker_coordination
22+
- multiple_worker_teams
23+
- enterprise_quality_standards
24+
- security_compliance
25+
- scalability_planning
26+
triggers:
27+
keywords:
28+
- enterprise
29+
- production
30+
- large scale
31+
- scalable
32+
- architecture
33+
- security compliance
34+
- 企业级
35+
- 生产环境
36+
- 大规模
37+
- 架构设计
38+
conditions:
39+
- "project needs enterprise-grade quality"
40+
- "requires security & compliance"
41+
- "needs scalability planning"
42+
metrics:
43+
avg_execution_time: 90m
44+
success_rate: 0.80
45+
worker_teams: 5
46+
quality_gates: 7
47+
---
48+
49+
# Enterprise Project - Tier 3
50+
51+
> **Tier 3 Complex Skill**: Lead-Worker + Handoff for enterprise software projects.
52+
53+
## Architecture Overview
54+
55+
```
56+
┌─────────────────────────────────────────────────────────────────┐
57+
│ LEAD AGENT (This Skill) │
58+
│ • Enterprise architecture planning │
59+
│ • 5 Worker Teams assembly & coordination │
60+
│ • Multi-phase quality gates & compliance │
61+
└────────────────────────┬─────────────────────────────────────────┘
62+
63+
┌───────────────┼───────────────┬───────────────┐
64+
│ │ │ │
65+
┌────────▼────────┐ ┌───▼────────┐ ┌──▼──────────┐ ┌──▼────────────┐
66+
│ WORKER TEAM 1 │ │ WORKER TEAM 2│ │ WORKER TEAM 3│ │ WORKER TEAM 4 │
67+
│ Architecture │ │ Development │ │ Security │ │ Performance │
68+
│ • Design ━━┓│ • Backend ━━┓│ • Audit ━━┓│ • Optimize ━━┓│
69+
│ • Review ◀━┛│ • Frontend ◀━┛│ • Compliance◀━┛│ • Scale ◀━┛│
70+
│ (Handoff) │ │ (Handoff) │ │ (Handoff) │ │ (Handoff) │
71+
└────────┬─────────┘ └──────┬───────┘ └──────┬───────┘ └──────┬─────────┘
72+
│ │ │ │
73+
└────────────────────┼─────────────────┼─────────────────┘
74+
│ │
75+
┌─────────▼─────────┐ ┌───▼──────────┐
76+
│ WORKER TEAM 5 │ │ AGGREGATOR │
77+
│ DevOps & QA │ └──────┬───────┘
78+
│ • CI/CD ━━┓ │ │
79+
│ • E2E Test ◀━┛ │ │
80+
│ • Deploy │ │ │
81+
└────────┬─────────┘ │ │
82+
│ │ │
83+
└──────────────┴────────┘
84+
85+
┌───────▼───────┐
86+
│ LEAD REVIEW │
87+
│ & Final QC │
88+
└───────────────┘
89+
```
90+
91+
## Worker Teams (5 Teams Total)
92+
93+
### Team 1: Architecture (Handoff Chain)
94+
95+
| Expert | Responsibility |
96+
|--------|----------------|
97+
| **Enterprise Architect** | High-level system design |
98+
| **Tech Lead Reviewer** | Architecture validation & feedback |
99+
100+
### Team 2: Development (Parallel Sub-Teams)
101+
102+
- **Backend Sub-Team**: API Designer → Backend Coder → Backend Tester
103+
- **Frontend Sub-Team**: UI Designer → Frontend Coder → Frontend Tester
104+
105+
### Team 3: Security (Handoff Chain)
106+
107+
| Expert | Responsibility |
108+
|--------|----------------|
109+
| **Security Auditor** | Vulnerability assessment |
110+
| **Compliance Officer** | GDPR/SOC2/ISO compliance |
111+
112+
### Team 4: Performance (Handoff Chain)
113+
114+
| Expert | Responsibility |
115+
|--------|----------------|
116+
| **Performance Engineer** | Optimization & load testing |
117+
| **Scalability Planner** | Horizontal/vertical scaling design |
118+
119+
### Team 5: DevOps & QA (Handoff Chain)
120+
121+
| Expert | Responsibility |
122+
|--------|----------------|
123+
| **CI/CD Engineer** | Pipeline setup |
124+
| **QA Engineer** | E2E & regression testing |
125+
| **SRE** | Production deployment & monitoring |
126+
127+
## Enterprise Quality Gates (7 Gates)
128+
129+
| Gate # | Name | Phase |
130+
|--------|------|-------|
131+
| 1 | Architecture Sign-off | After Team 1 |
132+
| 2 | Development Complete | After Team 2 |
133+
| 3 | Security Pass | After Team 3 |
134+
| 4 | Performance Pass | After Team 4 |
135+
| 5 | CI/CD & QA Pass | After Team 5 |
136+
| 6 | Integration Test Pass | Aggregation |
137+
| 7 | Final Lead Sign-off | Review |
138+
139+
---
140+
141+
## Related Skills
142+
143+
- **decomposition-planner** - Enterprise task decomposition
144+
- **security-auditor** - Security assessment
145+
- **performance-optimizer** - Performance optimization

0 commit comments

Comments
 (0)