arkaos 2.53.0 → 2.54.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.54.0
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: strat/growth-strategy
|
|
3
3
|
description: >
|
|
4
|
-
Growth strategy
|
|
4
|
+
Growth strategy using Ansoff Matrix + adjacency framework + Greiner growth
|
|
5
|
+
phases. Picks the next growth vector with risk-adjusted feasibility and a
|
|
6
|
+
12-month execution roadmap.
|
|
5
7
|
allowed-tools: [Read, Write, Edit, Bash, Grep, Glob, Agent, WebFetch, WebSearch]
|
|
6
8
|
---
|
|
7
9
|
|
|
@@ -21,12 +23,139 @@ does not replace the vault.
|
|
|
21
23
|
|
|
22
24
|
# Growth Strategy — `/strat growth <business>`
|
|
23
25
|
|
|
24
|
-
> **
|
|
26
|
+
> **Lead:** Tomas (Chief Strategist) | **Cross-dept:** Helena (CFO) + Rita (Market Analyst) | **Frameworks:** Ansoff Matrix + Chris Zook Adjacencies + Greiner Growth Phases
|
|
25
27
|
|
|
26
|
-
## What
|
|
28
|
+
## What ships
|
|
27
29
|
|
|
28
|
-
|
|
30
|
+
A production growth strategy in 6 deliverables:
|
|
29
31
|
|
|
30
|
-
|
|
32
|
+
1. **Greiner phase diagnosis** — current phase + impending crisis prediction
|
|
33
|
+
2. **Ansoff Matrix mapping** — concrete options per quadrant with market sizing
|
|
34
|
+
3. **Adjacency analysis** — ranked adjacencies by distance × capability × attractiveness
|
|
35
|
+
4. **Growth vector selection** — primary + assist with explicit trade-off rationale
|
|
36
|
+
5. **Risk profile** — pre-mortem with top 5 risks + early warning signals + mitigations
|
|
37
|
+
6. **12-month execution roadmap** — quarter-by-quarter milestones with named owners
|
|
31
38
|
|
|
32
|
-
|
|
39
|
+
## Greiner Growth Phases (where are you in the curve?)
|
|
40
|
+
|
|
41
|
+
Larry Greiner's model says companies grow through 6 evolutionary phases, each ending in a predictable crisis. Knowing the phase predicts the crisis.
|
|
42
|
+
|
|
43
|
+
| # | Phase | Driver | Predictable Crisis | Resolution |
|
|
44
|
+
|---|---|---|---|---|
|
|
45
|
+
| 1 | **Creativity** | Founder vision + product-market fit | Leadership Crisis (founder can't manage operations) | Hire professional management |
|
|
46
|
+
| 2 | **Direction** | Top-down management + functional structure | Autonomy Crisis (middle managers blocked by HQ) | Delegate authority downward |
|
|
47
|
+
| 3 | **Delegation** | Decentralised operating units | Control Crisis (HQ loses visibility into BUs) | Build coordination systems |
|
|
48
|
+
| 4 | **Coordination** | Formal systems, planning, ROI gates | Red Tape Crisis (bureaucracy strangles decisions) | Collaboration via teams |
|
|
49
|
+
| 5 | **Collaboration** | Cross-functional teams, matrix structure | Growth Crisis (internal saturation, need new sources) | External alliances / M&A |
|
|
50
|
+
| 6 | **Alliances** | Partnerships, joint ventures, ecosystems | Identity Crisis (who are we?) | Reinvention / spin-out |
|
|
51
|
+
|
|
52
|
+
Diagnose by symptoms, not org-chart vibes. Each phase has specific decision-making patterns and pain points.
|
|
53
|
+
|
|
54
|
+
## The Ansoff Matrix (4 growth quadrants)
|
|
55
|
+
|
|
56
|
+
The 2×2 matrix on Products (existing / new) × Markets (existing / new). Each quadrant has a different risk profile.
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
EXISTING PRODUCTS NEW PRODUCTS
|
|
60
|
+
EXISTING MARKETS Market Penetration Product Development
|
|
61
|
+
(lowest risk) (medium-high risk)
|
|
62
|
+
- Cross-sell - Adjacent product
|
|
63
|
+
- Up-sell - Same customer expansion
|
|
64
|
+
- Win share from competitor
|
|
65
|
+
|
|
66
|
+
NEW MARKETS Market Development Diversification
|
|
67
|
+
(medium risk) (highest risk)
|
|
68
|
+
- New geo - New product + new market
|
|
69
|
+
- New segment - True new business
|
|
70
|
+
- New channel - Acquisition often required
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
Default risk-adjusted sequencing: start with **Market Penetration** until the law of diminishing returns hits (typically 70-80% market share in a defined segment). Then choose between Market Development and Product Development based on capability fit. Diversification only when first three quadrants are exhausted or a structural opportunity is undeniable.
|
|
74
|
+
|
|
75
|
+
## Chris Zook Adjacency Framework
|
|
76
|
+
|
|
77
|
+
For each candidate growth move, score on three dimensions:
|
|
78
|
+
|
|
79
|
+
1. **Distance from core** (1-10): How far is this from your repeatable model? 1 = same customer + same product + tweaks. 10 = different customer + different product + different capability.
|
|
80
|
+
2. **Capability fit** (1-10): Does it use your existing strengths? 10 = leverages your core competence. 1 = requires building all-new capability.
|
|
81
|
+
3. **Market attractiveness** (1-10): Size × growth × profitability of the target market.
|
|
82
|
+
|
|
83
|
+
Zook's empirical finding: **adjacency success rate drops 50% with every step away from core**. So the math:
|
|
84
|
+
|
|
85
|
+
```
|
|
86
|
+
expected_success_rate = 0.27 × (0.5 ^ distance_from_core_steps) × capability_fit_factor × market_factor
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Adjacencies more than 2 steps from core have <10% historical success rate. Pick the closest viable adjacency, not the most attractive one.
|
|
90
|
+
|
|
91
|
+
## Growth Vector Decision Tree
|
|
92
|
+
|
|
93
|
+
```
|
|
94
|
+
Is current retention healthy (D30 > category norm)?
|
|
95
|
+
NO → Fix retention. No growth vector survives broken retention.
|
|
96
|
+
YES → Continue.
|
|
97
|
+
|
|
98
|
+
Have you saturated current market segment (>70% share or stalled)?
|
|
99
|
+
NO → Market Penetration is the default. Cross-sell, up-sell, win share.
|
|
100
|
+
YES → Continue.
|
|
101
|
+
|
|
102
|
+
Do you have unique capability that transfers?
|
|
103
|
+
YES → Product Development (new product to existing customers) OR
|
|
104
|
+
Market Development (existing product to new segment / geo).
|
|
105
|
+
Choose by capability fit score.
|
|
106
|
+
NO → Acquisition or partnership required. Diversification.
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
## Risk Profile Template
|
|
110
|
+
|
|
111
|
+
Every growth vector ships with a pre-mortem. Format:
|
|
112
|
+
|
|
113
|
+
```yaml
|
|
114
|
+
top_5_risks:
|
|
115
|
+
- name: <specific risk>
|
|
116
|
+
probability: low | medium | high
|
|
117
|
+
impact: low | medium | high | terminal
|
|
118
|
+
early_warning_signal: <observable signal in first 90 days>
|
|
119
|
+
mitigation: <named action if signal fires>
|
|
120
|
+
owner: <named human>
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
Risks must be specific. "Market might shift" is vibes; "if our top 3 partners renegotiate pricing in Q2 our gross margin drops below the cost floor" is a risk.
|
|
124
|
+
|
|
125
|
+
## 12-Month Roadmap Template
|
|
126
|
+
|
|
127
|
+
```
|
|
128
|
+
Q1: Foundation
|
|
129
|
+
Milestone: [specific outcome, not activity]
|
|
130
|
+
Owner: [named human]
|
|
131
|
+
Success metric: [measurable number]
|
|
132
|
+
|
|
133
|
+
Q2: First Proof
|
|
134
|
+
Milestone: [first measurable signal that vector is working]
|
|
135
|
+
Owner: [named]
|
|
136
|
+
Decision gate: [continue / pivot criteria]
|
|
137
|
+
|
|
138
|
+
Q3: Scale or Pivot
|
|
139
|
+
Decision: [scale signal observed? Y/N]
|
|
140
|
+
If scale: doubling milestone
|
|
141
|
+
If pivot: alternate vector selected
|
|
142
|
+
|
|
143
|
+
Q4: Compound
|
|
144
|
+
Milestone: [vector now self-sustaining or absorbed into ops]
|
|
145
|
+
Owner: [named]
|
|
146
|
+
Year-end metric: [measurable target tied to original brief]
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
Every quarter has a decision gate, not just a milestone. Roadmaps without decision gates become wish lists.
|
|
150
|
+
|
|
151
|
+
## Common Failure Modes
|
|
152
|
+
|
|
153
|
+
1. **Skipping retention check** — chasing growth on broken retention amplifies churn
|
|
154
|
+
2. **Ansoff diagonal-jumping** — jumping straight to Diversification without proving Market Penetration is exhausted
|
|
155
|
+
3. **Capability vanity** — picking the most attractive adjacency instead of the highest-fit one
|
|
156
|
+
4. **Greiner phase denial** — refusing to acknowledge the next crisis (e.g., founder won't delegate, stays in Direction phase past breakeven)
|
|
157
|
+
5. **Roadmap without decision gates** — quarterly milestones without "continue / pivot" criteria become marketing for the existing strategy
|
|
158
|
+
|
|
159
|
+
## Output → Obsidian: `WizardingCode/Strategy/Growth/<business>-<date>/`
|
|
160
|
+
|
|
161
|
+
Delivers: Greiner phase diagnosis + Ansoff Matrix mapping + adjacency analysis + vector selection rationale + risk profile (5 risks with mitigations) + 12-month roadmap with decision gates + 1-page executive summary.
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
id: strat-blue-ocean
|
|
2
|
+
name: Blue Ocean Strategy
|
|
3
|
+
description: Blue Ocean Strategy canvas with ERRC grid (Eliminate / Reduce / Raise / Create) — define uncontested market space
|
|
4
|
+
department: strategy
|
|
5
|
+
tier: enterprise
|
|
6
|
+
command: "/strat blue-ocean"
|
|
7
|
+
requires_branch: false
|
|
8
|
+
requires_spec: false
|
|
9
|
+
quality_gate_required: true
|
|
10
|
+
|
|
11
|
+
phases:
|
|
12
|
+
- id: brief
|
|
13
|
+
name: Market Brief
|
|
14
|
+
description: Define the current market, the industry's competitive factors, and the customer base under analysis
|
|
15
|
+
agents:
|
|
16
|
+
- agent_id: strategy-director-tomas
|
|
17
|
+
role: Frame current market, named competitors, customer segments
|
|
18
|
+
gate:
|
|
19
|
+
type: user_approval
|
|
20
|
+
description: User confirms market scope, competitor set, customer segments
|
|
21
|
+
|
|
22
|
+
- id: red-ocean-canvas
|
|
23
|
+
name: Red Ocean Strategy Canvas
|
|
24
|
+
description: Map the current industry on the Strategy Canvas — 6-10 competitive factors with relative levels
|
|
25
|
+
agents:
|
|
26
|
+
- agent_id: strategy-director-tomas
|
|
27
|
+
role: Identify 6-10 competitive factors the industry competes on; score each competitor 1-10
|
|
28
|
+
gate:
|
|
29
|
+
type: user_approval
|
|
30
|
+
description: User approves the red ocean canvas before ERRC analysis
|
|
31
|
+
outputs:
|
|
32
|
+
- type: document
|
|
33
|
+
format: markdown
|
|
34
|
+
obsidian_path: "WizardingCode/Strategy/BlueOcean/Canvas/"
|
|
35
|
+
description: Red Ocean Strategy Canvas with competitor scores per factor
|
|
36
|
+
|
|
37
|
+
- id: errc-grid
|
|
38
|
+
name: ERRC Grid
|
|
39
|
+
description: Apply the ERRC framework — Eliminate / Reduce / Raise / Create — to redesign the value curve
|
|
40
|
+
agents:
|
|
41
|
+
- agent_id: strategy-director-tomas
|
|
42
|
+
role: ERRC analysis on each competitive factor with rationale
|
|
43
|
+
- agent_id: market-analyst-rita
|
|
44
|
+
role: Non-customer analysis — what would the 3 tiers of non-customers value?
|
|
45
|
+
parallel: true
|
|
46
|
+
gate:
|
|
47
|
+
type: user_approval
|
|
48
|
+
description: User approves the ERRC grid
|
|
49
|
+
|
|
50
|
+
- id: non-customer-analysis
|
|
51
|
+
name: Non-Customer Analysis
|
|
52
|
+
description: Map the 3 tiers of non-customers (Soon-to-be, Refusing, Unexplored) and what would convert each tier
|
|
53
|
+
agents:
|
|
54
|
+
- agent_id: market-analyst-rita
|
|
55
|
+
role: Define 3 non-customer tiers with their reasons for not buying and conversion triggers
|
|
56
|
+
gate:
|
|
57
|
+
type: user_approval
|
|
58
|
+
description: User approves non-customer analysis
|
|
59
|
+
|
|
60
|
+
- id: blue-ocean-canvas
|
|
61
|
+
name: Blue Ocean Strategy Canvas
|
|
62
|
+
description: Draw the new value curve — the blue ocean position based on ERRC + non-customer insights
|
|
63
|
+
agents:
|
|
64
|
+
- agent_id: strategy-director-tomas
|
|
65
|
+
role: Blue Ocean Strategy Canvas with new value curve; quantify divergence from red ocean
|
|
66
|
+
gate:
|
|
67
|
+
type: user_approval
|
|
68
|
+
description: User approves the blue ocean canvas before viability test
|
|
69
|
+
outputs:
|
|
70
|
+
- type: document
|
|
71
|
+
format: markdown
|
|
72
|
+
obsidian_path: "WizardingCode/Strategy/BlueOcean/Canvas/"
|
|
73
|
+
description: Blue Ocean Strategy Canvas with new value curve and divergence analysis
|
|
74
|
+
|
|
75
|
+
- id: viability-test
|
|
76
|
+
name: Commercial Viability Test
|
|
77
|
+
description: Apply the BOS Sequence — Utility, Price, Cost, Adoption — to test whether the blue ocean is commercially viable
|
|
78
|
+
agents:
|
|
79
|
+
- agent_id: strategy-director-tomas
|
|
80
|
+
role: BOS Sequence test (Buyer Utility Map, Strategic Pricing, Target Cost, Adoption Hurdles)
|
|
81
|
+
- agent_id: cfo-helena
|
|
82
|
+
role: Cost feasibility check — does the target cost math work given the price corridor?
|
|
83
|
+
parallel: true
|
|
84
|
+
gate:
|
|
85
|
+
type: user_approval
|
|
86
|
+
description: User approves commercial viability before execution plan
|
|
87
|
+
|
|
88
|
+
- id: execution-plan
|
|
89
|
+
name: Execution Plan
|
|
90
|
+
description: 90-day execution — first product/service move, channels, organisational changes
|
|
91
|
+
agents:
|
|
92
|
+
- agent_id: strategy-director-tomas
|
|
93
|
+
role: 90-day execution plan with first move, channel implications, organisational changes
|
|
94
|
+
gate:
|
|
95
|
+
type: user_approval
|
|
96
|
+
description: User approves the 90-day execution plan
|
|
97
|
+
|
|
98
|
+
- id: self-critique
|
|
99
|
+
name: Self-Critique
|
|
100
|
+
description: Stress-test the blue ocean — is the divergence real? Are non-customer triggers credible? Does the cost math close?
|
|
101
|
+
agents:
|
|
102
|
+
- agent_id: strategy-director-tomas
|
|
103
|
+
role: Coherence + viability + execution feasibility cross-check
|
|
104
|
+
gate:
|
|
105
|
+
type: auto
|
|
106
|
+
|
|
107
|
+
- id: quality-gate
|
|
108
|
+
name: Quality Gate
|
|
109
|
+
model_override: opus
|
|
110
|
+
description: Mandatory quality review
|
|
111
|
+
agents:
|
|
112
|
+
- agent_id: cqo-marta
|
|
113
|
+
role: Orchestrate quality review
|
|
114
|
+
- agent_id: copy-director-eduardo
|
|
115
|
+
role: Canvas labels, non-customer prose, no clichés
|
|
116
|
+
parallel: true
|
|
117
|
+
- agent_id: tech-director-francisca
|
|
118
|
+
role: Visual canvas integrity, ERRC grid completeness, viability test math
|
|
119
|
+
parallel: true
|
|
120
|
+
gate:
|
|
121
|
+
type: quality_gate
|
|
122
|
+
required_verdict: APPROVED
|
|
123
|
+
|
|
124
|
+
- id: delivery
|
|
125
|
+
name: Blue Ocean Package Delivery
|
|
126
|
+
description: Compile the full blue ocean package
|
|
127
|
+
agents:
|
|
128
|
+
- agent_id: strategy-director-tomas
|
|
129
|
+
role: Full blue ocean package + 1-page executive summary
|
|
130
|
+
gate:
|
|
131
|
+
type: auto
|
|
132
|
+
outputs:
|
|
133
|
+
- type: document
|
|
134
|
+
format: markdown
|
|
135
|
+
obsidian_path: "WizardingCode/Strategy/BlueOcean/"
|
|
136
|
+
description: Complete blue ocean package — red ocean canvas + ERRC grid + non-customer analysis + blue ocean canvas + viability test + execution plan
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
id: strat-growth
|
|
2
|
+
name: Growth Strategy
|
|
3
|
+
description: Growth strategy using Ansoff Matrix + adjacencies + Greiner growth phases — pick the next growth vector with risk-adjusted feasibility
|
|
4
|
+
department: strategy
|
|
5
|
+
tier: enterprise
|
|
6
|
+
command: "/strat growth"
|
|
7
|
+
requires_branch: false
|
|
8
|
+
requires_spec: false
|
|
9
|
+
quality_gate_required: true
|
|
10
|
+
|
|
11
|
+
phases:
|
|
12
|
+
- id: brief
|
|
13
|
+
name: Growth Brief
|
|
14
|
+
description: Define current business state, current revenue mix, current growth rate, runway, success metric
|
|
15
|
+
agents:
|
|
16
|
+
- agent_id: strategy-director-tomas
|
|
17
|
+
role: Frame current business — products, markets, revenue mix, growth rate, runway
|
|
18
|
+
gate:
|
|
19
|
+
type: user_approval
|
|
20
|
+
description: User confirms business context and growth target
|
|
21
|
+
|
|
22
|
+
- id: greiner-diagnosis
|
|
23
|
+
name: Greiner Growth Phase Diagnosis
|
|
24
|
+
description: Identify which Greiner growth phase the business is in (Creativity / Direction / Delegation / Coordination / Collaboration / Alliances) and the predictable crisis
|
|
25
|
+
agents:
|
|
26
|
+
- agent_id: strategy-director-tomas
|
|
27
|
+
role: Greiner phase diagnosis with evidence; name the impending crisis
|
|
28
|
+
gate:
|
|
29
|
+
type: user_approval
|
|
30
|
+
description: User approves Greiner diagnosis
|
|
31
|
+
outputs:
|
|
32
|
+
- type: document
|
|
33
|
+
format: markdown
|
|
34
|
+
obsidian_path: "WizardingCode/Strategy/Growth/Diagnosis/"
|
|
35
|
+
description: Greiner growth phase diagnosis with crisis prediction
|
|
36
|
+
|
|
37
|
+
- id: ansoff-matrix
|
|
38
|
+
name: Ansoff Matrix Analysis
|
|
39
|
+
description: Map growth options across the 4 Ansoff quadrants (Market Penetration / Market Development / Product Development / Diversification)
|
|
40
|
+
agents:
|
|
41
|
+
- agent_id: strategy-director-tomas
|
|
42
|
+
role: Ansoff Matrix mapping with concrete options per quadrant
|
|
43
|
+
- agent_id: market-analyst-rita
|
|
44
|
+
role: Market sizing per quadrant option
|
|
45
|
+
parallel: true
|
|
46
|
+
gate:
|
|
47
|
+
type: user_approval
|
|
48
|
+
description: User approves Ansoff Matrix mapping before adjacency analysis
|
|
49
|
+
|
|
50
|
+
- id: adjacency-analysis
|
|
51
|
+
name: Adjacency Analysis
|
|
52
|
+
description: Apply Chris Zook's adjacency framework — score each adjacency by distance from core, capability fit, market attractiveness
|
|
53
|
+
agents:
|
|
54
|
+
- agent_id: strategy-director-tomas
|
|
55
|
+
role: Adjacency scoring (distance from core × capability fit × market attractiveness)
|
|
56
|
+
- agent_id: cfo-helena
|
|
57
|
+
role: Investment requirement and payback per adjacency
|
|
58
|
+
parallel: true
|
|
59
|
+
gate:
|
|
60
|
+
type: user_approval
|
|
61
|
+
description: User approves adjacency scoring
|
|
62
|
+
outputs:
|
|
63
|
+
- type: document
|
|
64
|
+
format: markdown
|
|
65
|
+
obsidian_path: "WizardingCode/Strategy/Growth/Adjacencies/"
|
|
66
|
+
description: Ranked adjacency analysis with investment + payback
|
|
67
|
+
|
|
68
|
+
- id: vector-selection
|
|
69
|
+
name: Growth Vector Selection
|
|
70
|
+
description: Pick the primary growth vector + assist vector based on Greiner phase, Ansoff quadrant, adjacency ranking
|
|
71
|
+
agents:
|
|
72
|
+
- agent_id: strategy-director-tomas
|
|
73
|
+
role: Vector selection with explicit trade-off rationale
|
|
74
|
+
gate:
|
|
75
|
+
type: user_approval
|
|
76
|
+
description: User approves primary + assist growth vector
|
|
77
|
+
|
|
78
|
+
- id: risk-feasibility
|
|
79
|
+
name: Risk & Feasibility
|
|
80
|
+
description: Stress-test the chosen vector — what kills it? What signals indicate it's working / failing?
|
|
81
|
+
agents:
|
|
82
|
+
- agent_id: strategy-director-tomas
|
|
83
|
+
role: Pre-mortem analysis — top 5 risks + early warning signals + mitigation per risk
|
|
84
|
+
- agent_id: cfo-helena
|
|
85
|
+
role: Runway impact per vector, breakeven scenario, downside math
|
|
86
|
+
parallel: true
|
|
87
|
+
gate:
|
|
88
|
+
type: user_approval
|
|
89
|
+
description: User approves risk profile
|
|
90
|
+
|
|
91
|
+
- id: execution-roadmap
|
|
92
|
+
name: 12-Month Execution Roadmap
|
|
93
|
+
description: Quarter-by-quarter milestones, owner per milestone, success metric per quarter
|
|
94
|
+
agents:
|
|
95
|
+
- agent_id: strategy-director-tomas
|
|
96
|
+
role: 12-month roadmap with quarterly milestones and named owners
|
|
97
|
+
gate:
|
|
98
|
+
type: user_approval
|
|
99
|
+
description: User approves the 12-month roadmap
|
|
100
|
+
|
|
101
|
+
- id: self-critique
|
|
102
|
+
name: Self-Critique
|
|
103
|
+
description: Stress-test coherence — does Greiner phase support the chosen vector? Does Ansoff position match adjacency ranking?
|
|
104
|
+
agents:
|
|
105
|
+
- agent_id: strategy-director-tomas
|
|
106
|
+
role: Coherence check across Greiner / Ansoff / adjacency / vector / roadmap
|
|
107
|
+
gate:
|
|
108
|
+
type: auto
|
|
109
|
+
|
|
110
|
+
- id: quality-gate
|
|
111
|
+
name: Quality Gate
|
|
112
|
+
model_override: opus
|
|
113
|
+
description: Mandatory quality review
|
|
114
|
+
agents:
|
|
115
|
+
- agent_id: cqo-marta
|
|
116
|
+
role: Orchestrate quality review
|
|
117
|
+
- agent_id: copy-director-eduardo
|
|
118
|
+
role: Diagnosis prose, vector rationale, no clichés
|
|
119
|
+
parallel: true
|
|
120
|
+
- agent_id: tech-director-francisca
|
|
121
|
+
role: Roadmap executability, milestone measurability, owner specificity
|
|
122
|
+
parallel: true
|
|
123
|
+
gate:
|
|
124
|
+
type: quality_gate
|
|
125
|
+
required_verdict: APPROVED
|
|
126
|
+
|
|
127
|
+
- id: delivery
|
|
128
|
+
name: Growth Strategy Package Delivery
|
|
129
|
+
description: Compile the full growth strategy package
|
|
130
|
+
agents:
|
|
131
|
+
- agent_id: strategy-director-tomas
|
|
132
|
+
role: Full growth package + 1-page executive summary
|
|
133
|
+
gate:
|
|
134
|
+
type: auto
|
|
135
|
+
outputs:
|
|
136
|
+
- type: document
|
|
137
|
+
format: markdown
|
|
138
|
+
obsidian_path: "WizardingCode/Strategy/Growth/"
|
|
139
|
+
description: Complete growth package — Greiner diagnosis + Ansoff Matrix + adjacency analysis + vector selection + risk profile + 12-month roadmap
|
package/package.json
CHANGED