fcc-agent-team-ext 0.2.0__py3-none-any.whl
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.
- fcc/__init__.py +3 -0
- fcc/_resources.py +51 -0
- fcc/data/__init__.py +0 -0
- fcc/data/docs/constitution_template.yaml +37 -0
- fcc/data/docs/prompt_topics.yaml +78 -0
- fcc/data/docs/tutorial_topics.yaml +129 -0
- fcc/data/governance/quality_gates.yaml +263 -0
- fcc/data/governance/tag_registry.yaml +126 -0
- fcc/data/personas/champions.yaml +404 -0
- fcc/data/personas/core_personas.yaml +456 -0
- fcc/data/personas/cross_reference.yaml +598 -0
- fcc/data/personas/dimension_definitions.yaml +233 -0
- fcc/data/personas/dimension_interpretation_guide.yaml +191 -0
- fcc/data/personas/dimensions/ams_profile.yaml +309 -0
- fcc/data/personas/dimensions/bc_profile.yaml +309 -0
- fcc/data/personas/dimensions/bchm_profile.yaml +309 -0
- fcc/data/personas/dimensions/bv_profile.yaml +309 -0
- fcc/data/personas/dimensions/cia_profile.yaml +309 -0
- fcc/data/personas/dimensions/co_profile.yaml +309 -0
- fcc/data/personas/dimensions/de_profile.yaml +309 -0
- fcc/data/personas/dimensions/dgs_profile.yaml +309 -0
- fcc/data/personas/dimensions/ec_profile.yaml +309 -0
- fcc/data/personas/dimensions/gca_profile.yaml +309 -0
- fcc/data/personas/dimensions/pte_profile.yaml +309 -0
- fcc/data/personas/dimensions/rb_profile.yaml +309 -0
- fcc/data/personas/dimensions/rbch_profile.yaml +309 -0
- fcc/data/personas/dimensions/rc_profile.yaml +309 -0
- fcc/data/personas/dimensions/rchm_profile.yaml +309 -0
- fcc/data/personas/dimensions/ric_profile.yaml +309 -0
- fcc/data/personas/dimensions/rs_profile.yaml +309 -0
- fcc/data/personas/dimensions/scp_profile.yaml +309 -0
- fcc/data/personas/dimensions/smc_profile.yaml +309 -0
- fcc/data/personas/dimensions/ste_profile.yaml +309 -0
- fcc/data/personas/dimensions/ts_profile.yaml +309 -0
- fcc/data/personas/dimensions/ug_profile.yaml +309 -0
- fcc/data/personas/dimensions/ugch_profile.yaml +309 -0
- fcc/data/personas/dimensions/umc_profile.yaml +309 -0
- fcc/data/personas/governance_compliance.yaml +276 -0
- fcc/data/personas/integration_specialists.yaml +644 -0
- fcc/data/personas/stakeholder_hub.yaml +460 -0
- fcc/data/scenarios/advanced_scenarios.json +380 -0
- fcc/data/scenarios/starter_scenarios.json +171 -0
- fcc/data/schemas/cross_reference.schema.json +41 -0
- fcc/data/schemas/persona.schema.json +160 -0
- fcc/data/schemas/traces.schema.json +37 -0
- fcc/data/schemas/workflow.schema.json +54 -0
- fcc/data/workflows/base_sequence.json +27 -0
- fcc/data/workflows/complete_24.json +93 -0
- fcc/data/workflows/extended_sequence.json +71 -0
- fcc/governance/__init__.py +11 -0
- fcc/governance/compliance.py +53 -0
- fcc/governance/quality_gates.py +98 -0
- fcc/governance/tags.py +83 -0
- fcc/personas/__init__.py +36 -0
- fcc/personas/cross_reference.py +160 -0
- fcc/personas/dimensions.py +171 -0
- fcc/personas/models.py +215 -0
- fcc/personas/registry.py +166 -0
- fcc/py.typed +0 -0
- fcc/scaffold/__init__.py +1 -0
- fcc/scaffold/cli.py +191 -0
- fcc/scaffold/config.py +109 -0
- fcc/scaffold/doc_generator.py +227 -0
- fcc/scaffold/engine.py +47 -0
- fcc/scaffold/project.py +84 -0
- fcc/scenarios/__init__.py +15 -0
- fcc/scenarios/loader.py +95 -0
- fcc/scenarios/models.py +105 -0
- fcc/scenarios/validators.py +307 -0
- fcc/simulation/__init__.py +17 -0
- fcc/simulation/ai_client.py +328 -0
- fcc/simulation/ai_engine.py +198 -0
- fcc/simulation/engine.py +85 -0
- fcc/simulation/messages.py +84 -0
- fcc/simulation/prompts.py +191 -0
- fcc/simulation/traces.py +40 -0
- fcc/templates/docs/cross-reference/constitution-framework.md.j2 +41 -0
- fcc/templates/docs/cross-reference/coordination-methods.md.j2 +43 -0
- fcc/templates/docs/cross-reference/matrix.md.j2 +68 -0
- fcc/templates/docs/persona/constitution.md.j2 +48 -0
- fcc/templates/docs/persona/coordination.md.j2 +46 -0
- fcc/templates/docs/persona/index.md.j2 +39 -0
- fcc/templates/docs/persona/package/index.md.j2 +28 -0
- fcc/templates/docs/persona/prompts/index.md.j2 +26 -0
- fcc/templates/docs/persona/prompts/prompt.md.j2 +38 -0
- fcc/templates/docs/persona/specification.md.j2 +120 -0
- fcc/templates/docs/persona/tutorials/index.md.j2 +26 -0
- fcc/templates/docs/persona/tutorials/tutorial.md.j2 +47 -0
- fcc/templates/docs/persona/workflows/index.md.j2 +12 -0
- fcc/templates/docs/persona/workflows/workflow.md.j2 +38 -0
- fcc/templates/docs/sitemap.md.j2 +34 -0
- fcc/templates/project/CLAUDE.md.j2 +20 -0
- fcc/templates/project/Makefile.j2 +33 -0
- fcc/templates/project/gitignore.j2 +18 -0
- fcc/templates/project/pyproject.toml.j2 +43 -0
- fcc/workflow/__init__.py +11 -0
- fcc/workflow/graph.py +169 -0
- fcc/workflow/models.py +62 -0
- fcc_agent_team_ext-0.2.0.dist-info/METADATA +238 -0
- fcc_agent_team_ext-0.2.0.dist-info/RECORD +104 -0
- fcc_agent_team_ext-0.2.0.dist-info/WHEEL +5 -0
- fcc_agent_team_ext-0.2.0.dist-info/entry_points.txt +2 -0
- fcc_agent_team_ext-0.2.0.dist-info/licenses/LICENSE +21 -0
- fcc_agent_team_ext-0.2.0.dist-info/top_level.txt +1 -0
fcc/__init__.py
ADDED
fcc/_resources.py
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"""Centralized resource path resolution for FCC package data."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import importlib.resources
|
|
6
|
+
from pathlib import Path
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def _package_root() -> Path:
|
|
10
|
+
"""Return the root directory of the fcc package."""
|
|
11
|
+
return Path(str(importlib.resources.files("fcc")))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
def get_data_dir() -> Path:
|
|
15
|
+
"""Return the path to the package data directory."""
|
|
16
|
+
return _package_root() / "data"
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def get_personas_dir() -> Path:
|
|
20
|
+
"""Return the path to the personas data directory."""
|
|
21
|
+
return get_data_dir() / "personas"
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
def get_schemas_dir() -> Path:
|
|
25
|
+
"""Return the path to the JSON schemas directory."""
|
|
26
|
+
return get_data_dir() / "schemas"
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def get_workflows_dir() -> Path:
|
|
30
|
+
"""Return the path to the workflow definitions directory."""
|
|
31
|
+
return get_data_dir() / "workflows"
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
def get_scenarios_dir() -> Path:
|
|
35
|
+
"""Return the path to the scenarios directory."""
|
|
36
|
+
return get_data_dir() / "scenarios"
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def get_governance_dir() -> Path:
|
|
40
|
+
"""Return the path to the governance data directory."""
|
|
41
|
+
return get_data_dir() / "governance"
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
def get_docs_data_dir() -> Path:
|
|
45
|
+
"""Return the path to the docs data directory (topics, templates)."""
|
|
46
|
+
return get_data_dir() / "docs"
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
def get_templates_dir() -> Path:
|
|
50
|
+
"""Return the path to the Jinja2 templates directory."""
|
|
51
|
+
return _package_root() / "templates"
|
fcc/data/__init__.py
ADDED
|
File without changes
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
constitution:
|
|
2
|
+
hard_stop:
|
|
3
|
+
description: "Rules that must never be violated. Violations require immediate halt and review."
|
|
4
|
+
default_rules:
|
|
5
|
+
- "Never fabricate data or sources"
|
|
6
|
+
- "Never bypass quality gates without explicit authorization"
|
|
7
|
+
- "Never modify production artifacts without audit trail"
|
|
8
|
+
|
|
9
|
+
mandatory:
|
|
10
|
+
description: "Rules that must be followed in all circumstances. Exceptions require documented justification."
|
|
11
|
+
default_rules:
|
|
12
|
+
- "All deliverables must pass quality gate checks"
|
|
13
|
+
- "All artifacts must be version-controlled"
|
|
14
|
+
- "Cross-references must be validated before handoff"
|
|
15
|
+
- "Collaboration links must be documented"
|
|
16
|
+
|
|
17
|
+
preferred:
|
|
18
|
+
description: "Best practices that should be followed when possible. Deviations acceptable with rationale."
|
|
19
|
+
default_rules:
|
|
20
|
+
- "Use structured formats over prose where applicable"
|
|
21
|
+
- "Include examples in all documentation"
|
|
22
|
+
- "Tag artifacts with capability identifiers"
|
|
23
|
+
- "Document assumptions and limitations"
|
|
24
|
+
|
|
25
|
+
workflows:
|
|
26
|
+
- name: scaffold
|
|
27
|
+
description: "Generate new artifact from scratch"
|
|
28
|
+
- name: refactor
|
|
29
|
+
description: "Improve existing artifact structure and quality"
|
|
30
|
+
- name: debug
|
|
31
|
+
description: "Fix issues and errors in artifacts"
|
|
32
|
+
- name: test
|
|
33
|
+
description: "Validate artifact against standards"
|
|
34
|
+
- name: compare
|
|
35
|
+
description: "Evaluate multiple approaches or versions"
|
|
36
|
+
- name: document
|
|
37
|
+
description: "Generate documentation summary"
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
levels:
|
|
2
|
+
beginner:
|
|
3
|
+
- id: beginner_01
|
|
4
|
+
title_template: "Basic {primary_action} Prompt"
|
|
5
|
+
description_template: "A starter prompt for {persona_name} to perform basic {primary_action}"
|
|
6
|
+
- id: beginner_02
|
|
7
|
+
title_template: "Output Formatting Prompt"
|
|
8
|
+
description_template: "Prompt {persona_name} to format {primary_output} clearly"
|
|
9
|
+
- id: beginner_03
|
|
10
|
+
title_template: "Quality Check Prompt"
|
|
11
|
+
description_template: "Prompt {persona_name} to perform basic quality verification"
|
|
12
|
+
- id: beginner_04
|
|
13
|
+
title_template: "Collaboration Handoff Prompt"
|
|
14
|
+
description_template: "Prompt {persona_name} to prepare a handoff package"
|
|
15
|
+
- id: beginner_05
|
|
16
|
+
title_template: "Status Summary Prompt"
|
|
17
|
+
description_template: "Prompt {persona_name} to generate a status summary"
|
|
18
|
+
- id: beginner_06
|
|
19
|
+
title_template: "Feedback Request Prompt"
|
|
20
|
+
description_template: "Prompt {persona_name} to request feedback from collaborators"
|
|
21
|
+
- id: beginner_07
|
|
22
|
+
title_template: "Deliverable Review Prompt"
|
|
23
|
+
description_template: "Prompt {persona_name} to review its deliverables"
|
|
24
|
+
|
|
25
|
+
intermediate:
|
|
26
|
+
- id: intermediate_01
|
|
27
|
+
title_template: "Multi-Source {primary_action} Prompt"
|
|
28
|
+
description_template: "Prompt {persona_name} to synthesize from multiple sources"
|
|
29
|
+
- id: intermediate_02
|
|
30
|
+
title_template: "Cross-Reference Validation Prompt"
|
|
31
|
+
description_template: "Prompt {persona_name} to validate cross-references"
|
|
32
|
+
- id: intermediate_03
|
|
33
|
+
title_template: "Custom Template Prompt"
|
|
34
|
+
description_template: "Prompt {persona_name} using a customized template"
|
|
35
|
+
- id: intermediate_04
|
|
36
|
+
title_template: "Feedback Loop Prompt"
|
|
37
|
+
description_template: "Prompt {persona_name} to process feedback and iterate"
|
|
38
|
+
- id: intermediate_05
|
|
39
|
+
title_template: "Quality Gate Assessment Prompt"
|
|
40
|
+
description_template: "Prompt {persona_name} to assess quality gate compliance"
|
|
41
|
+
- id: intermediate_06
|
|
42
|
+
title_template: "Scenario Analysis Prompt"
|
|
43
|
+
description_template: "Prompt {persona_name} to analyze a specific scenario"
|
|
44
|
+
- id: intermediate_07
|
|
45
|
+
title_template: "Comparative Analysis Prompt"
|
|
46
|
+
description_template: "Prompt {persona_name} to compare approaches or outputs"
|
|
47
|
+
|
|
48
|
+
advanced:
|
|
49
|
+
- id: advanced_01
|
|
50
|
+
title_template: "Pipeline-Integrated {primary_action} Prompt"
|
|
51
|
+
description_template: "Prompt {persona_name} for CI/CD pipeline integration"
|
|
52
|
+
- id: advanced_02
|
|
53
|
+
title_template: "Enterprise-Scale Prompt"
|
|
54
|
+
description_template: "Prompt {persona_name} for enterprise deployment context"
|
|
55
|
+
- id: advanced_03
|
|
56
|
+
title_template: "Custom Persona Extension Prompt"
|
|
57
|
+
description_template: "Prompt {persona_name} to define a custom extension"
|
|
58
|
+
- id: advanced_04
|
|
59
|
+
title_template: "AI Simulation Prompt"
|
|
60
|
+
description_template: "Prompt {persona_name} for AI-powered simulation execution"
|
|
61
|
+
- id: advanced_05
|
|
62
|
+
title_template: "Governance Automation Prompt"
|
|
63
|
+
description_template: "Prompt {persona_name} for automated governance checking"
|
|
64
|
+
- id: advanced_06
|
|
65
|
+
title_template: "Cross-Project Orchestration Prompt"
|
|
66
|
+
description_template: "Prompt {persona_name} for multi-project coordination"
|
|
67
|
+
- id: advanced_07
|
|
68
|
+
title_template: "Production Readiness Prompt"
|
|
69
|
+
description_template: "Prompt {persona_name} for production readiness assessment"
|
|
70
|
+
- id: advanced_08
|
|
71
|
+
title_template: "Cross-Reference Query Prompt"
|
|
72
|
+
description_template: "Prompt {persona_name} to query upstream dependencies from the cross-reference matrix"
|
|
73
|
+
- id: advanced_09
|
|
74
|
+
title_template: "Governance Chain Analysis Prompt"
|
|
75
|
+
description_template: "Prompt {persona_name} to trace the governance oversight chain"
|
|
76
|
+
- id: advanced_10
|
|
77
|
+
title_template: "Champion Orchestration Mapping Prompt"
|
|
78
|
+
description_template: "Prompt {persona_name} to map orchestration team relationships"
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
levels:
|
|
2
|
+
beginner:
|
|
3
|
+
- id: beginner_01
|
|
4
|
+
title_template: "Getting Started with {persona_name}"
|
|
5
|
+
outcome_template: "Set up and configure {persona_name} for first use"
|
|
6
|
+
duration: "15 minutes"
|
|
7
|
+
sections: ["Prerequisites", "Installation", "First Configuration", "Verification"]
|
|
8
|
+
|
|
9
|
+
- id: beginner_02
|
|
10
|
+
title_template: "Your First {primary_action} with {persona_name}"
|
|
11
|
+
outcome_template: "Complete your first {primary_action} task"
|
|
12
|
+
duration: "20 minutes"
|
|
13
|
+
sections: ["Understanding the Task", "Step-by-Step Walkthrough", "Expected Output", "Troubleshooting"]
|
|
14
|
+
|
|
15
|
+
- id: beginner_03
|
|
16
|
+
title_template: "Reading {persona_name} Output"
|
|
17
|
+
outcome_template: "Interpret and use {primary_output} effectively"
|
|
18
|
+
duration: "15 minutes"
|
|
19
|
+
sections: ["Output Format", "Key Sections", "Quality Indicators", "Next Steps"]
|
|
20
|
+
|
|
21
|
+
- id: beginner_04
|
|
22
|
+
title_template: "Quality Gates for {persona_name}"
|
|
23
|
+
outcome_template: "Understand and apply quality gates to {persona_name} deliverables"
|
|
24
|
+
duration: "20 minutes"
|
|
25
|
+
sections: ["Gate Definitions", "Threshold Configuration", "Running Gate Checks", "Interpreting Results"]
|
|
26
|
+
|
|
27
|
+
- id: beginner_05
|
|
28
|
+
title_template: "{persona_name} CLI Interaction"
|
|
29
|
+
outcome_template: "Use FCC CLI commands for {persona_name} workflows"
|
|
30
|
+
duration: "15 minutes"
|
|
31
|
+
sections: ["Available Commands", "Basic Usage", "Common Options", "Output Formats"]
|
|
32
|
+
|
|
33
|
+
- id: beginner_06
|
|
34
|
+
title_template: "{persona_name} Collaboration Links"
|
|
35
|
+
outcome_template: "Understand how {persona_name} collaborates with other personas"
|
|
36
|
+
duration: "15 minutes"
|
|
37
|
+
sections: ["Upstream Dependencies", "Downstream Handoffs", "Peer Interactions", "Feedback Loops"]
|
|
38
|
+
|
|
39
|
+
- id: beginner_07
|
|
40
|
+
title_template: "First Simulation with {persona_name}"
|
|
41
|
+
outcome_template: "Run a basic mock simulation including {persona_name}"
|
|
42
|
+
duration: "20 minutes"
|
|
43
|
+
sections: ["Simulation Setup", "Running the Simulation", "Reading Traces", "Validation"]
|
|
44
|
+
|
|
45
|
+
intermediate:
|
|
46
|
+
- id: intermediate_01
|
|
47
|
+
title_template: "Multi-Persona Workflow with {persona_name}"
|
|
48
|
+
outcome_template: "Integrate {persona_name} into a multi-persona FCC workflow"
|
|
49
|
+
duration: "30 minutes"
|
|
50
|
+
sections: ["Workflow Design", "Persona Integration", "Handoff Configuration", "End-to-End Testing"]
|
|
51
|
+
|
|
52
|
+
- id: intermediate_02
|
|
53
|
+
title_template: "Custom Configuration for {persona_name}"
|
|
54
|
+
outcome_template: "Customize {persona_name} behavior through configuration"
|
|
55
|
+
duration: "25 minutes"
|
|
56
|
+
sections: ["Configuration Options", "YAML Customization", "Override Patterns", "Validation"]
|
|
57
|
+
|
|
58
|
+
- id: intermediate_03
|
|
59
|
+
title_template: "Template Customization for {persona_name}"
|
|
60
|
+
outcome_template: "Modify and extend templates used by {persona_name}"
|
|
61
|
+
duration: "30 minutes"
|
|
62
|
+
sections: ["Template Architecture", "Jinja2 Basics", "Custom Variables", "Testing Templates"]
|
|
63
|
+
|
|
64
|
+
- id: intermediate_04
|
|
65
|
+
title_template: "Feedback Loops with {persona_name}"
|
|
66
|
+
outcome_template: "Configure and optimize feedback loops involving {persona_name}"
|
|
67
|
+
duration: "25 minutes"
|
|
68
|
+
sections: ["Feedback Loop Design", "Configuration", "Loop Optimization", "Monitoring"]
|
|
69
|
+
|
|
70
|
+
- id: intermediate_05
|
|
71
|
+
title_template: "Quality Gate Tuning for {persona_name}"
|
|
72
|
+
outcome_template: "Fine-tune quality gate thresholds for {persona_name}"
|
|
73
|
+
duration: "25 minutes"
|
|
74
|
+
sections: ["Threshold Analysis", "Custom Gate Rules", "Performance Impact", "Best Practices"]
|
|
75
|
+
|
|
76
|
+
- id: intermediate_06
|
|
77
|
+
title_template: "Cross-Reference Validation with {persona_name}"
|
|
78
|
+
outcome_template: "Validate cross-references involving {persona_name}"
|
|
79
|
+
duration: "30 minutes"
|
|
80
|
+
sections: ["Cross-Reference Matrix", "Validation Rules", "Automated Checking", "Reporting"]
|
|
81
|
+
|
|
82
|
+
- id: intermediate_07
|
|
83
|
+
title_template: "Scenario Testing with {persona_name}"
|
|
84
|
+
outcome_template: "Design and run test scenarios for {persona_name}"
|
|
85
|
+
duration: "30 minutes"
|
|
86
|
+
sections: ["Scenario Design", "Test Data Preparation", "Execution", "Results Analysis"]
|
|
87
|
+
|
|
88
|
+
advanced:
|
|
89
|
+
- id: advanced_01
|
|
90
|
+
title_template: "Pipeline Integration for {persona_name}"
|
|
91
|
+
outcome_template: "Integrate {persona_name} into CI/CD pipelines"
|
|
92
|
+
duration: "45 minutes"
|
|
93
|
+
sections: ["Pipeline Architecture", "CI/CD Configuration", "Automated Validation", "Deployment"]
|
|
94
|
+
|
|
95
|
+
- id: advanced_02
|
|
96
|
+
title_template: "Enterprise Deployment of {persona_name}"
|
|
97
|
+
outcome_template: "Deploy {persona_name} at enterprise scale"
|
|
98
|
+
duration: "45 minutes"
|
|
99
|
+
sections: ["Architecture Considerations", "Scaling Strategies", "Monitoring", "Maintenance"]
|
|
100
|
+
|
|
101
|
+
- id: advanced_03
|
|
102
|
+
title_template: "Custom Persona Extension from {persona_name}"
|
|
103
|
+
outcome_template: "Create a custom persona extending {persona_name} patterns"
|
|
104
|
+
duration: "40 minutes"
|
|
105
|
+
sections: ["Extension Points", "R.I.S.C.E.A.R. Design", "Registration", "Testing"]
|
|
106
|
+
|
|
107
|
+
- id: advanced_04
|
|
108
|
+
title_template: "AI-Powered Simulation with {persona_name}"
|
|
109
|
+
outcome_template: "Run AI-powered simulations with {persona_name}"
|
|
110
|
+
duration: "45 minutes"
|
|
111
|
+
sections: ["AI Client Setup", "Prompt Engineering", "Simulation Execution", "Output Analysis"]
|
|
112
|
+
|
|
113
|
+
- id: advanced_05
|
|
114
|
+
title_template: "Governance Automation for {persona_name}"
|
|
115
|
+
outcome_template: "Automate governance checks for {persona_name} deliverables"
|
|
116
|
+
duration: "40 minutes"
|
|
117
|
+
sections: ["Governance Rules", "Automation Setup", "Compliance Reporting", "Remediation"]
|
|
118
|
+
|
|
119
|
+
- id: advanced_06
|
|
120
|
+
title_template: "Cross-Project Orchestration with {persona_name}"
|
|
121
|
+
outcome_template: "Orchestrate {persona_name} across multiple projects"
|
|
122
|
+
duration: "45 minutes"
|
|
123
|
+
sections: ["Multi-Project Architecture", "Shared Configuration", "Synchronization", "Conflict Resolution"]
|
|
124
|
+
|
|
125
|
+
- id: advanced_07
|
|
126
|
+
title_template: "Scaling {persona_name} to Production"
|
|
127
|
+
outcome_template: "Production-ready {persona_name} deployment and monitoring"
|
|
128
|
+
duration: "45 minutes"
|
|
129
|
+
sections: ["Production Checklist", "Performance Tuning", "Observability", "Incident Response"]
|
|
@@ -0,0 +1,263 @@
|
|
|
1
|
+
quality_gates:
|
|
2
|
+
# Core personas
|
|
3
|
+
- id: QG-RC-001
|
|
4
|
+
name: Research Inventory Completeness
|
|
5
|
+
persona_id: RC
|
|
6
|
+
threshold: 1.0
|
|
7
|
+
checks:
|
|
8
|
+
- capability_matrix
|
|
9
|
+
- annotated_references
|
|
10
|
+
- traceability_matrix
|
|
11
|
+
- capability_tags
|
|
12
|
+
|
|
13
|
+
- id: QG-BC-001
|
|
14
|
+
name: Blueprint Completeness
|
|
15
|
+
persona_id: BC
|
|
16
|
+
threshold: 0.75
|
|
17
|
+
checks:
|
|
18
|
+
- architecture_diagrams
|
|
19
|
+
- api_specifications
|
|
20
|
+
- data_models
|
|
21
|
+
- workflow_definitions
|
|
22
|
+
|
|
23
|
+
- id: QG-DE-001
|
|
24
|
+
name: Documentation Quality
|
|
25
|
+
persona_id: DE
|
|
26
|
+
threshold: 1.0
|
|
27
|
+
checks:
|
|
28
|
+
- style_guide_compliance
|
|
29
|
+
- version_controlled
|
|
30
|
+
- review_report
|
|
31
|
+
|
|
32
|
+
- id: QG-RB-001
|
|
33
|
+
name: Runbook Readiness
|
|
34
|
+
persona_id: RB
|
|
35
|
+
threshold: 1.0
|
|
36
|
+
checks:
|
|
37
|
+
- step_by_step_procedures
|
|
38
|
+
- automation_scripts
|
|
39
|
+
- troubleshooting_guide
|
|
40
|
+
|
|
41
|
+
- id: QG-UG-001
|
|
42
|
+
name: User Guide Accessibility
|
|
43
|
+
persona_id: UG
|
|
44
|
+
threshold: 1.0
|
|
45
|
+
checks:
|
|
46
|
+
- quick_start_guide
|
|
47
|
+
- detailed_steps
|
|
48
|
+
- troubleshooting_section
|
|
49
|
+
|
|
50
|
+
- id: QG-RISCEAR-001
|
|
51
|
+
name: R.I.S.C.E.A.R. Extended Completeness
|
|
52
|
+
persona_id: ALL
|
|
53
|
+
threshold: 1.0
|
|
54
|
+
checks:
|
|
55
|
+
- role_skills_defined
|
|
56
|
+
- role_collaborators_defined
|
|
57
|
+
- adoption_checklist_defined
|
|
58
|
+
|
|
59
|
+
# Integration personas
|
|
60
|
+
- id: QG-CIA-001
|
|
61
|
+
name: Catalog Index Completeness
|
|
62
|
+
persona_id: CIA
|
|
63
|
+
threshold: 1.0
|
|
64
|
+
checks:
|
|
65
|
+
- index_schema_defined
|
|
66
|
+
- api_connectors_tested
|
|
67
|
+
- coverage_report_generated
|
|
68
|
+
|
|
69
|
+
- id: QG-UMC-001
|
|
70
|
+
name: UI Mockup Quality
|
|
71
|
+
persona_id: UMC
|
|
72
|
+
threshold: 0.75
|
|
73
|
+
checks:
|
|
74
|
+
- mockups_annotated
|
|
75
|
+
- accessibility_verified
|
|
76
|
+
- brand_compliance_checked
|
|
77
|
+
- responsive_layouts
|
|
78
|
+
|
|
79
|
+
- id: QG-STE-001
|
|
80
|
+
name: Taxonomy Consistency
|
|
81
|
+
persona_id: STE
|
|
82
|
+
threshold: 1.0
|
|
83
|
+
checks:
|
|
84
|
+
- taxonomy_schema_complete
|
|
85
|
+
- triplet_logic_validated
|
|
86
|
+
- consistency_report_generated
|
|
87
|
+
|
|
88
|
+
- id: QG-TS-001
|
|
89
|
+
name: Traceability Coverage
|
|
90
|
+
persona_id: TS
|
|
91
|
+
threshold: 1.0
|
|
92
|
+
checks:
|
|
93
|
+
- bidirectional_links_verified
|
|
94
|
+
- impact_analysis_complete
|
|
95
|
+
- coverage_report_generated
|
|
96
|
+
|
|
97
|
+
- id: QG-BV-001
|
|
98
|
+
name: Blueprint Validation Thoroughness
|
|
99
|
+
persona_id: BV
|
|
100
|
+
threshold: 1.0
|
|
101
|
+
checks:
|
|
102
|
+
- validation_report_complete
|
|
103
|
+
- quality_scores_calculated
|
|
104
|
+
- remediation_recommendations
|
|
105
|
+
|
|
106
|
+
- id: QG-RIC-001
|
|
107
|
+
name: Research Inventory Automation
|
|
108
|
+
persona_id: RIC
|
|
109
|
+
threshold: 1.0
|
|
110
|
+
checks:
|
|
111
|
+
- capability_matrices_populated
|
|
112
|
+
- machine_parseable_format
|
|
113
|
+
- source_attribution_verified
|
|
114
|
+
|
|
115
|
+
- id: QG-GCA-001
|
|
116
|
+
name: Governance Compliance Audit
|
|
117
|
+
persona_id: GCA
|
|
118
|
+
threshold: 1.0
|
|
119
|
+
checks:
|
|
120
|
+
- audit_report_complete
|
|
121
|
+
- evidence_logs_maintained
|
|
122
|
+
- remediation_timelines_set
|
|
123
|
+
|
|
124
|
+
# Governance personas
|
|
125
|
+
- id: QG-DGS-001
|
|
126
|
+
name: Data Governance Integration
|
|
127
|
+
persona_id: DGS
|
|
128
|
+
threshold: 1.0
|
|
129
|
+
checks:
|
|
130
|
+
- api_contracts_documented
|
|
131
|
+
- data_flows_compliant
|
|
132
|
+
- service_configs_versioned
|
|
133
|
+
|
|
134
|
+
- id: QG-PTE-001
|
|
135
|
+
name: Privacy Classification Coverage
|
|
136
|
+
persona_id: PTE
|
|
137
|
+
threshold: 1.0
|
|
138
|
+
checks:
|
|
139
|
+
- data_types_classified
|
|
140
|
+
- privacy_regulations_mapped
|
|
141
|
+
- handling_guidelines_documented
|
|
142
|
+
|
|
143
|
+
- id: QG-AMS-001
|
|
144
|
+
name: Anti-fact Mitigation Rigor
|
|
145
|
+
persona_id: AMS
|
|
146
|
+
threshold: 1.0
|
|
147
|
+
checks:
|
|
148
|
+
- confidence_thresholds_applied
|
|
149
|
+
- source_verification_complete
|
|
150
|
+
- audit_trail_maintained
|
|
151
|
+
|
|
152
|
+
# Stakeholder personas
|
|
153
|
+
- id: QG-CO-001
|
|
154
|
+
name: Coordination Completeness
|
|
155
|
+
persona_id: CO
|
|
156
|
+
threshold: 1.0
|
|
157
|
+
checks:
|
|
158
|
+
- handoff_reports_documented
|
|
159
|
+
- dependency_matrix_current
|
|
160
|
+
- blocker_dashboard_operational
|
|
161
|
+
|
|
162
|
+
- id: QG-SMC-001
|
|
163
|
+
name: Metrics Dashboard Accuracy
|
|
164
|
+
persona_id: SMC
|
|
165
|
+
threshold: 0.75
|
|
166
|
+
checks:
|
|
167
|
+
- velocity_metrics_current
|
|
168
|
+
- quality_metrics_tracked
|
|
169
|
+
- flow_metrics_visualized
|
|
170
|
+
|
|
171
|
+
- id: QG-EC-001
|
|
172
|
+
name: Executive Communication Quality
|
|
173
|
+
persona_id: EC
|
|
174
|
+
threshold: 1.0
|
|
175
|
+
checks:
|
|
176
|
+
- executive_summary_complete
|
|
177
|
+
- insights_extracted
|
|
178
|
+
- audience_appropriate_tone
|
|
179
|
+
|
|
180
|
+
- id: QG-RS-001
|
|
181
|
+
name: Roadmap Synchronization
|
|
182
|
+
persona_id: RS
|
|
183
|
+
threshold: 1.0
|
|
184
|
+
checks:
|
|
185
|
+
- sources_synchronized
|
|
186
|
+
- dependencies_mapped
|
|
187
|
+
- conflicts_resolved
|
|
188
|
+
|
|
189
|
+
- id: QG-SCP-001
|
|
190
|
+
name: Content Distribution Coverage
|
|
191
|
+
persona_id: SCP
|
|
192
|
+
threshold: 1.0
|
|
193
|
+
checks:
|
|
194
|
+
- channels_configured
|
|
195
|
+
- access_controls_enforced
|
|
196
|
+
- version_history_maintained
|
|
197
|
+
|
|
198
|
+
# Champion personas
|
|
199
|
+
- id: QG-RCHM-001
|
|
200
|
+
name: Research Orchestration Completeness
|
|
201
|
+
persona_id: RCHM
|
|
202
|
+
threshold: 1.0
|
|
203
|
+
checks:
|
|
204
|
+
- unified_research_package
|
|
205
|
+
- cross_artifact_consistency
|
|
206
|
+
- research_readiness_assessment
|
|
207
|
+
|
|
208
|
+
- id: QG-BCHM-001
|
|
209
|
+
name: Blueprint Orchestration Completeness
|
|
210
|
+
persona_id: BCHM
|
|
211
|
+
threshold: 1.0
|
|
212
|
+
checks:
|
|
213
|
+
- orchestrated_blueprint_package
|
|
214
|
+
- cross_reference_index
|
|
215
|
+
- quality_validation_summary
|
|
216
|
+
|
|
217
|
+
- id: QG-UGCH-001
|
|
218
|
+
name: User Experience Orchestration Completeness
|
|
219
|
+
persona_id: UGCH
|
|
220
|
+
threshold: 1.0
|
|
221
|
+
checks:
|
|
222
|
+
- multi_channel_package
|
|
223
|
+
- content_strategy_report
|
|
224
|
+
- channel_coordination_report
|
|
225
|
+
|
|
226
|
+
- id: QG-RBCH-001
|
|
227
|
+
name: Operations Orchestration Completeness
|
|
228
|
+
persona_id: RBCH
|
|
229
|
+
threshold: 1.0
|
|
230
|
+
checks:
|
|
231
|
+
- validated_operational_package
|
|
232
|
+
- governance_clearance_report
|
|
233
|
+
- operational_readiness_assessment
|
|
234
|
+
|
|
235
|
+
# Cross-reference integrity gates
|
|
236
|
+
- id: QG-XREF-001
|
|
237
|
+
name: Cross-Reference Coverage
|
|
238
|
+
persona_id: ALL
|
|
239
|
+
threshold: 1.0
|
|
240
|
+
checks:
|
|
241
|
+
- all_24_personas_represented
|
|
242
|
+
- every_persona_has_downstream_or_is_terminal
|
|
243
|
+
- every_persona_has_upstream_or_is_champion
|
|
244
|
+
|
|
245
|
+
- id: QG-XREF-002
|
|
246
|
+
name: Cross-Reference Type Completeness
|
|
247
|
+
persona_id: ALL
|
|
248
|
+
threshold: 1.0
|
|
249
|
+
checks:
|
|
250
|
+
- handoff_type_used
|
|
251
|
+
- feedback_type_used
|
|
252
|
+
- coordination_type_used
|
|
253
|
+
- governance_type_used
|
|
254
|
+
- champion_of_type_used
|
|
255
|
+
|
|
256
|
+
- id: QG-XREF-003
|
|
257
|
+
name: Workflow-CrossReference Alignment
|
|
258
|
+
persona_id: ALL
|
|
259
|
+
threshold: 1.0
|
|
260
|
+
checks:
|
|
261
|
+
- all_58_workflow_edges_have_entries
|
|
262
|
+
- edge_types_consistent_with_workflow
|
|
263
|
+
- no_orphan_persona_ids
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
tags:
|
|
2
|
+
# Core personas
|
|
3
|
+
- capability: persona-research-crafter
|
|
4
|
+
category: knowledge-sharing
|
|
5
|
+
supercategory: strategy-alignment
|
|
6
|
+
|
|
7
|
+
- capability: persona-blueprint-crafter
|
|
8
|
+
category: knowledge-sharing
|
|
9
|
+
supercategory: strategy-alignment
|
|
10
|
+
|
|
11
|
+
- capability: persona-documentation-evangelist
|
|
12
|
+
category: knowledge-sharing
|
|
13
|
+
supercategory: strategy-alignment
|
|
14
|
+
|
|
15
|
+
- capability: persona-runbook-crafter
|
|
16
|
+
category: knowledge-sharing
|
|
17
|
+
supercategory: strategy-alignment
|
|
18
|
+
|
|
19
|
+
- capability: persona-user-guide-crafter
|
|
20
|
+
category: knowledge-sharing
|
|
21
|
+
supercategory: strategy-alignment
|
|
22
|
+
|
|
23
|
+
# Integration personas
|
|
24
|
+
- capability: persona-catalog-indexer-architect
|
|
25
|
+
category: integration-automation
|
|
26
|
+
supercategory: operational-excellence
|
|
27
|
+
|
|
28
|
+
- capability: persona-ui-mockup-crafter
|
|
29
|
+
category: integration-automation
|
|
30
|
+
supercategory: operational-excellence
|
|
31
|
+
|
|
32
|
+
- capability: persona-semantic-taxonomy-engineer
|
|
33
|
+
category: integration-automation
|
|
34
|
+
supercategory: strategy-alignment
|
|
35
|
+
|
|
36
|
+
- capability: persona-traceability-specialist
|
|
37
|
+
category: integration-automation
|
|
38
|
+
supercategory: operational-excellence
|
|
39
|
+
|
|
40
|
+
- capability: persona-blueprint-validator
|
|
41
|
+
category: integration-automation
|
|
42
|
+
supercategory: operational-excellence
|
|
43
|
+
|
|
44
|
+
- capability: persona-research-inventory-crafter
|
|
45
|
+
category: integration-automation
|
|
46
|
+
supercategory: strategy-alignment
|
|
47
|
+
|
|
48
|
+
- capability: persona-governance-compliance-auditor
|
|
49
|
+
category: governance-compliance
|
|
50
|
+
supercategory: strategy-alignment
|
|
51
|
+
|
|
52
|
+
# Governance personas
|
|
53
|
+
- capability: persona-data-governance-specialist
|
|
54
|
+
category: governance-compliance
|
|
55
|
+
supercategory: strategy-alignment
|
|
56
|
+
|
|
57
|
+
- capability: persona-privacy-taxonomy-engineer
|
|
58
|
+
category: governance-compliance
|
|
59
|
+
supercategory: strategy-alignment
|
|
60
|
+
|
|
61
|
+
- capability: persona-anti-fact-mitigation-specialist
|
|
62
|
+
category: governance-compliance
|
|
63
|
+
supercategory: strategy-alignment
|
|
64
|
+
|
|
65
|
+
# Stakeholder personas
|
|
66
|
+
- capability: persona-collaboration-orchestrator
|
|
67
|
+
category: stakeholder-engagement
|
|
68
|
+
supercategory: strategy-alignment
|
|
69
|
+
|
|
70
|
+
- capability: persona-safe-metrics-crafter
|
|
71
|
+
category: stakeholder-engagement
|
|
72
|
+
supercategory: operational-excellence
|
|
73
|
+
|
|
74
|
+
- capability: persona-executive-communicator
|
|
75
|
+
category: stakeholder-engagement
|
|
76
|
+
supercategory: strategy-alignment
|
|
77
|
+
|
|
78
|
+
- capability: persona-roadmap-synchronizer
|
|
79
|
+
category: stakeholder-engagement
|
|
80
|
+
supercategory: strategy-alignment
|
|
81
|
+
|
|
82
|
+
- capability: persona-stakeholder-content-publisher
|
|
83
|
+
category: stakeholder-engagement
|
|
84
|
+
supercategory: operational-excellence
|
|
85
|
+
|
|
86
|
+
# Champion personas
|
|
87
|
+
- capability: persona-research-crafter-champion
|
|
88
|
+
category: champion-orchestration
|
|
89
|
+
supercategory: strategy-alignment
|
|
90
|
+
|
|
91
|
+
- capability: persona-blueprint-crafter-champion
|
|
92
|
+
category: champion-orchestration
|
|
93
|
+
supercategory: strategy-alignment
|
|
94
|
+
|
|
95
|
+
- capability: persona-user-guide-crafter-champion
|
|
96
|
+
category: champion-orchestration
|
|
97
|
+
supercategory: strategy-alignment
|
|
98
|
+
|
|
99
|
+
- capability: persona-runbook-crafter-champion
|
|
100
|
+
category: champion-orchestration
|
|
101
|
+
supercategory: strategy-alignment
|
|
102
|
+
|
|
103
|
+
# Workflow and simulation tags
|
|
104
|
+
- capability: workflow-fcc-base-sequence
|
|
105
|
+
category: workflow-automation
|
|
106
|
+
supercategory: operational-excellence
|
|
107
|
+
|
|
108
|
+
- capability: workflow-fcc-extended-sequence
|
|
109
|
+
category: workflow-automation
|
|
110
|
+
supercategory: operational-excellence
|
|
111
|
+
|
|
112
|
+
- capability: simulation-deterministic
|
|
113
|
+
category: testing-validation
|
|
114
|
+
supercategory: operational-excellence
|
|
115
|
+
|
|
116
|
+
- capability: simulation-ai-powered
|
|
117
|
+
category: testing-validation
|
|
118
|
+
supercategory: operational-excellence
|
|
119
|
+
|
|
120
|
+
- capability: governance-quality-gates
|
|
121
|
+
category: governance-compliance
|
|
122
|
+
supercategory: strategy-alignment
|
|
123
|
+
|
|
124
|
+
- capability: governance-capability-tags
|
|
125
|
+
category: governance-compliance
|
|
126
|
+
supercategory: strategy-alignment
|