aios-core 4.0.2 → 4.0.4
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/.aios-core/.session/current-session.json +14 -0
- package/.aios-core/core/registry/registry-schema.json +166 -166
- package/.aios-core/core/registry/service-registry.json +6585 -6585
- package/.aios-core/data/registry-update-log.jsonl +113 -0
- package/.aios-core/development/scripts/approval-workflow.js +642 -642
- package/.aios-core/development/scripts/backup-manager.js +606 -606
- package/.aios-core/development/scripts/branch-manager.js +389 -389
- package/.aios-core/development/scripts/code-quality-improver.js +1311 -1311
- package/.aios-core/development/scripts/commit-message-generator.js +849 -849
- package/.aios-core/development/scripts/conflict-resolver.js +674 -674
- package/.aios-core/development/scripts/dependency-analyzer.js +637 -637
- package/.aios-core/development/scripts/diff-generator.js +351 -351
- package/.aios-core/development/scripts/elicitation-engine.js +384 -384
- package/.aios-core/development/scripts/elicitation-session-manager.js +299 -299
- package/.aios-core/development/scripts/git-wrapper.js +461 -461
- package/.aios-core/development/scripts/manifest-preview.js +244 -244
- package/.aios-core/development/scripts/metrics-tracker.js +775 -775
- package/.aios-core/development/scripts/modification-validator.js +554 -554
- package/.aios-core/development/scripts/pattern-learner.js +1224 -1224
- package/.aios-core/development/scripts/performance-analyzer.js +757 -757
- package/.aios-core/development/scripts/refactoring-suggester.js +1138 -1138
- package/.aios-core/development/scripts/rollback-handler.js +530 -530
- package/.aios-core/development/scripts/security-checker.js +358 -358
- package/.aios-core/development/scripts/template-engine.js +239 -239
- package/.aios-core/development/scripts/template-validator.js +278 -278
- package/.aios-core/development/scripts/test-generator.js +843 -843
- package/.aios-core/development/scripts/transaction-manager.js +589 -589
- package/.aios-core/development/scripts/usage-tracker.js +673 -673
- package/.aios-core/development/scripts/validate-filenames.js +226 -226
- package/.aios-core/development/scripts/version-tracker.js +526 -526
- package/.aios-core/development/scripts/yaml-validator.js +396 -396
- package/.aios-core/development/templates/service-template/README.md.hbs +158 -158
- package/.aios-core/development/templates/service-template/__tests__/index.test.ts.hbs +237 -237
- package/.aios-core/development/templates/service-template/client.ts.hbs +403 -403
- package/.aios-core/development/templates/service-template/errors.ts.hbs +182 -182
- package/.aios-core/development/templates/service-template/index.ts.hbs +120 -120
- package/.aios-core/development/templates/service-template/package.json.hbs +87 -87
- package/.aios-core/development/templates/service-template/types.ts.hbs +145 -145
- package/.aios-core/development/templates/squad-template/LICENSE +21 -21
- package/.aios-core/docs/SHARD-TRANSLATION-GUIDE.md +335 -0
- package/.aios-core/docs/component-creation-guide.md +458 -0
- package/.aios-core/docs/session-update-pattern.md +307 -0
- package/.aios-core/docs/standards/AIOS-FRAMEWORK-MASTER.md +1963 -0
- package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO-V2.1-SUMMARY.md +1190 -0
- package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO-V2.1.md +439 -0
- package/.aios-core/docs/standards/AIOS-LIVRO-DE-OURO.md +5398 -0
- package/.aios-core/docs/standards/V3-ARCHITECTURAL-DECISIONS.md +523 -0
- package/.aios-core/docs/template-syntax.md +267 -0
- package/.aios-core/docs/troubleshooting-guide.md +625 -0
- package/.aios-core/infrastructure/templates/aios-sync.yaml.template +193 -193
- package/.aios-core/infrastructure/templates/coderabbit.yaml.template +279 -279
- package/.aios-core/infrastructure/templates/github-workflows/ci.yml.template +169 -169
- package/.aios-core/infrastructure/templates/github-workflows/pr-automation.yml.template +330 -330
- package/.aios-core/infrastructure/templates/github-workflows/release.yml.template +196 -196
- package/.aios-core/infrastructure/templates/gitignore/gitignore-aios-base.tmpl +63 -63
- package/.aios-core/infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl +18 -18
- package/.aios-core/infrastructure/templates/gitignore/gitignore-node.tmpl +85 -85
- package/.aios-core/infrastructure/templates/gitignore/gitignore-python.tmpl +145 -145
- package/.aios-core/infrastructure/tests/utilities-audit-results.json +501 -0
- package/.aios-core/install-manifest.yaml +97 -97
- package/.aios-core/local-config.yaml.template +68 -68
- package/.aios-core/manifests/agents.csv +1 -0
- package/.aios-core/manifests/schema/manifest-schema.json +190 -190
- package/.aios-core/manifests/tasks.csv +121 -0
- package/.aios-core/manifests/workers.csv +204 -0
- package/.aios-core/monitor/hooks/lib/__init__.py +1 -1
- package/.aios-core/monitor/hooks/lib/enrich.py +58 -58
- package/.aios-core/monitor/hooks/lib/send_event.py +47 -47
- package/.aios-core/monitor/hooks/notification.py +29 -29
- package/.aios-core/monitor/hooks/post_tool_use.py +45 -45
- package/.aios-core/monitor/hooks/pre_compact.py +29 -29
- package/.aios-core/monitor/hooks/pre_tool_use.py +40 -40
- package/.aios-core/monitor/hooks/stop.py +29 -29
- package/.aios-core/monitor/hooks/subagent_stop.py +29 -29
- package/.aios-core/monitor/hooks/user_prompt_submit.py +38 -38
- package/.aios-core/product/templates/adr.hbs +125 -125
- package/.aios-core/product/templates/component-react-tmpl.tsx +98 -98
- package/.aios-core/product/templates/dbdr.hbs +241 -241
- package/.aios-core/product/templates/engine/schemas/adr.schema.json +102 -102
- package/.aios-core/product/templates/engine/schemas/dbdr.schema.json +205 -205
- package/.aios-core/product/templates/engine/schemas/epic.schema.json +175 -175
- package/.aios-core/product/templates/engine/schemas/pmdr.schema.json +175 -175
- package/.aios-core/product/templates/engine/schemas/prd-v2.schema.json +300 -300
- package/.aios-core/product/templates/engine/schemas/prd.schema.json +152 -152
- package/.aios-core/product/templates/engine/schemas/story.schema.json +222 -222
- package/.aios-core/product/templates/engine/schemas/task.schema.json +154 -154
- package/.aios-core/product/templates/epic.hbs +212 -212
- package/.aios-core/product/templates/eslintrc-security.json +32 -32
- package/.aios-core/product/templates/github-actions-cd.yml +212 -212
- package/.aios-core/product/templates/github-actions-ci.yml +172 -172
- package/.aios-core/product/templates/pmdr.hbs +186 -186
- package/.aios-core/product/templates/prd-v2.0.hbs +216 -216
- package/.aios-core/product/templates/prd.hbs +201 -201
- package/.aios-core/product/templates/shock-report-tmpl.html +502 -502
- package/.aios-core/product/templates/story.hbs +263 -263
- package/.aios-core/product/templates/task.hbs +170 -170
- package/.aios-core/product/templates/tmpl-comment-on-examples.sql +158 -158
- package/.aios-core/product/templates/tmpl-migration-script.sql +91 -91
- package/.aios-core/product/templates/tmpl-rls-granular-policies.sql +104 -104
- package/.aios-core/product/templates/tmpl-rls-kiss-policy.sql +10 -10
- package/.aios-core/product/templates/tmpl-rls-roles.sql +135 -135
- package/.aios-core/product/templates/tmpl-rls-simple.sql +77 -77
- package/.aios-core/product/templates/tmpl-rls-tenant.sql +152 -152
- package/.aios-core/product/templates/tmpl-rollback-script.sql +77 -77
- package/.aios-core/product/templates/tmpl-seed-data.sql +140 -140
- package/.aios-core/product/templates/tmpl-smoke-test.sql +16 -16
- package/.aios-core/product/templates/tmpl-staging-copy-merge.sql +139 -139
- package/.aios-core/product/templates/tmpl-stored-proc.sql +140 -140
- package/.aios-core/product/templates/tmpl-trigger.sql +152 -152
- package/.aios-core/product/templates/tmpl-view-materialized.sql +133 -133
- package/.aios-core/product/templates/tmpl-view.sql +177 -177
- package/.aios-core/product/templates/token-exports-css-tmpl.css +240 -240
- package/.aios-core/quality/schemas/quality-metrics.schema.json +233 -233
- package/.aios-core/scripts/migrate-framework-docs.sh +300 -300
- package/.aios-core/scripts/pm.sh +0 -0
- package/.claude/hooks/enforce-architecture-first.py +196 -0
- package/.claude/hooks/install-hooks.sh +41 -0
- package/.claude/hooks/mind-clone-governance.py +192 -0
- package/.claude/hooks/pre-commit-mmos-guard.sh +99 -0
- package/.claude/hooks/pre-commit-version-check.sh +156 -0
- package/.claude/hooks/read-protection.py +151 -0
- package/.claude/hooks/slug-validation.py +176 -0
- package/.claude/hooks/sql-governance.py +182 -0
- package/.claude/hooks/write-path-validation.py +194 -0
- package/.claude/rules/agent-authority.md +105 -0
- package/.claude/rules/coderabbit-integration.md +93 -0
- package/.claude/rules/ids-principles.md +112 -0
- package/.claude/rules/story-lifecycle.md +139 -0
- package/.claude/rules/workflow-execution.md +150 -0
- package/LICENSE +48 -48
- package/README.md +30 -7
- package/bin/aios-minimal.js +0 -0
- package/bin/aios.js +15 -15
- package/package.json +2 -4
- package/packages/aios-install/bin/aios-install.js +0 -0
- package/packages/aios-install/bin/edmcp.js +0 -0
- package/packages/aios-pro-cli/bin/aios-pro.js +0 -0
- package/scripts/check-markdown-links.py +352 -352
- package/scripts/dashboard-parallel-dev.sh +0 -0
- package/scripts/dashboard-parallel-phase3.sh +0 -0
- package/scripts/dashboard-parallel-phase4.sh +0 -0
- package/scripts/glue/README.md +355 -0
- package/scripts/glue/compose-agent-prompt.cjs +362 -0
- package/scripts/install-monitor-hooks.sh +0 -0
- package/.aios-core/lib/build.json +0 -1
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
# ============================================
|
|
2
|
-
# AIOS Local Configuration (Level 4) — TEMPLATE
|
|
3
|
-
# ============================================
|
|
4
|
-
# Machine-specific overrides and secrets.
|
|
5
|
-
# Copy this file to local-config.yaml and customize:
|
|
6
|
-
# cp .aios-core/local-config.yaml.template .aios-core/local-config.yaml
|
|
7
|
-
#
|
|
8
|
-
# Or run: aios config init-local
|
|
9
|
-
#
|
|
10
|
-
# WARNING: This file contains machine-specific secrets.
|
|
11
|
-
# DO NOT commit local-config.yaml to git.
|
|
12
|
-
# (It is already in .gitignore)
|
|
13
|
-
#
|
|
14
|
-
# Level: L4 (Local)
|
|
15
|
-
# Mutability: Editable
|
|
16
|
-
# Git status: Gitignored
|
|
17
|
-
# ADR: ADR-PRO-002 — Configuration Hierarchy
|
|
18
|
-
# ============================================
|
|
19
|
-
|
|
20
|
-
# --- IDE Configuration (Section 4) ---
|
|
21
|
-
ide:
|
|
22
|
-
selected:
|
|
23
|
-
- vscode
|
|
24
|
-
- claude-code
|
|
25
|
-
configs:
|
|
26
|
-
vscode: true
|
|
27
|
-
cursor: false
|
|
28
|
-
windsurf: false
|
|
29
|
-
zed: false
|
|
30
|
-
claude-desktop: false
|
|
31
|
-
claude-code: true
|
|
32
|
-
|
|
33
|
-
# --- MCP Configuration (Section 5) ---
|
|
34
|
-
mcp:
|
|
35
|
-
enabled: true
|
|
36
|
-
config_location: ".claude/mcp.json"
|
|
37
|
-
docker_mcp:
|
|
38
|
-
enabled: true
|
|
39
|
-
gateway:
|
|
40
|
-
transport: "http"
|
|
41
|
-
url: "http://localhost:8080/mcp"
|
|
42
|
-
port: 8080
|
|
43
|
-
watch: true
|
|
44
|
-
default_preset: "minimal"
|
|
45
|
-
|
|
46
|
-
# --- CodeRabbit Secrets (Section 9 - secret portion) ---
|
|
47
|
-
coderabbit_integration:
|
|
48
|
-
installation_mode: "wsl"
|
|
49
|
-
wsl_config:
|
|
50
|
-
distribution: "Ubuntu"
|
|
51
|
-
installation_path: "~/.local/bin/coderabbit"
|
|
52
|
-
# Replace ${PROJECT_ROOT} with your actual project root (e.g., /home/user/myproject)
|
|
53
|
-
working_directory: "${PROJECT_ROOT}"
|
|
54
|
-
commands:
|
|
55
|
-
qa_pre_review_uncommitted: |
|
|
56
|
-
wsl bash -c 'cd ${PROJECT_ROOT} && ~/.local/bin/coderabbit --prompt-only -t uncommitted'
|
|
57
|
-
qa_story_review_committed: |
|
|
58
|
-
wsl bash -c 'cd ${PROJECT_ROOT} && ~/.local/bin/coderabbit --prompt-only -t committed --base main'
|
|
59
|
-
|
|
60
|
-
# --- Performance Overrides (Section 6 - local overrides) ---
|
|
61
|
-
# Uncomment to override framework defaults:
|
|
62
|
-
# performance:
|
|
63
|
-
# max_concurrent_operations: 8
|
|
64
|
-
|
|
65
|
-
# --- pvMindContext (optional per-machine override) ---
|
|
66
|
-
# Uncomment to override project-level pv_mind_context:
|
|
67
|
-
# pv_mind_context:
|
|
68
|
-
# enabled: false
|
|
1
|
+
# ============================================
|
|
2
|
+
# AIOS Local Configuration (Level 4) — TEMPLATE
|
|
3
|
+
# ============================================
|
|
4
|
+
# Machine-specific overrides and secrets.
|
|
5
|
+
# Copy this file to local-config.yaml and customize:
|
|
6
|
+
# cp .aios-core/local-config.yaml.template .aios-core/local-config.yaml
|
|
7
|
+
#
|
|
8
|
+
# Or run: aios config init-local
|
|
9
|
+
#
|
|
10
|
+
# WARNING: This file contains machine-specific secrets.
|
|
11
|
+
# DO NOT commit local-config.yaml to git.
|
|
12
|
+
# (It is already in .gitignore)
|
|
13
|
+
#
|
|
14
|
+
# Level: L4 (Local)
|
|
15
|
+
# Mutability: Editable
|
|
16
|
+
# Git status: Gitignored
|
|
17
|
+
# ADR: ADR-PRO-002 — Configuration Hierarchy
|
|
18
|
+
# ============================================
|
|
19
|
+
|
|
20
|
+
# --- IDE Configuration (Section 4) ---
|
|
21
|
+
ide:
|
|
22
|
+
selected:
|
|
23
|
+
- vscode
|
|
24
|
+
- claude-code
|
|
25
|
+
configs:
|
|
26
|
+
vscode: true
|
|
27
|
+
cursor: false
|
|
28
|
+
windsurf: false
|
|
29
|
+
zed: false
|
|
30
|
+
claude-desktop: false
|
|
31
|
+
claude-code: true
|
|
32
|
+
|
|
33
|
+
# --- MCP Configuration (Section 5) ---
|
|
34
|
+
mcp:
|
|
35
|
+
enabled: true
|
|
36
|
+
config_location: ".claude/mcp.json"
|
|
37
|
+
docker_mcp:
|
|
38
|
+
enabled: true
|
|
39
|
+
gateway:
|
|
40
|
+
transport: "http"
|
|
41
|
+
url: "http://localhost:8080/mcp"
|
|
42
|
+
port: 8080
|
|
43
|
+
watch: true
|
|
44
|
+
default_preset: "minimal"
|
|
45
|
+
|
|
46
|
+
# --- CodeRabbit Secrets (Section 9 - secret portion) ---
|
|
47
|
+
coderabbit_integration:
|
|
48
|
+
installation_mode: "wsl"
|
|
49
|
+
wsl_config:
|
|
50
|
+
distribution: "Ubuntu"
|
|
51
|
+
installation_path: "~/.local/bin/coderabbit"
|
|
52
|
+
# Replace ${PROJECT_ROOT} with your actual project root (e.g., /home/user/myproject)
|
|
53
|
+
working_directory: "${PROJECT_ROOT}"
|
|
54
|
+
commands:
|
|
55
|
+
qa_pre_review_uncommitted: |
|
|
56
|
+
wsl bash -c 'cd ${PROJECT_ROOT} && ~/.local/bin/coderabbit --prompt-only -t uncommitted'
|
|
57
|
+
qa_story_review_committed: |
|
|
58
|
+
wsl bash -c 'cd ${PROJECT_ROOT} && ~/.local/bin/coderabbit --prompt-only -t committed --base main'
|
|
59
|
+
|
|
60
|
+
# --- Performance Overrides (Section 6 - local overrides) ---
|
|
61
|
+
# Uncomment to override framework defaults:
|
|
62
|
+
# performance:
|
|
63
|
+
# max_concurrent_operations: 8
|
|
64
|
+
|
|
65
|
+
# --- pvMindContext (optional per-machine override) ---
|
|
66
|
+
# Uncomment to override project-level pv_mind_context:
|
|
67
|
+
# pv_mind_context:
|
|
68
|
+
# enabled: false
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
id,name,archetype,icon,version,status,file_path,when_to_use
|
|
@@ -1,190 +1,190 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"title": "AIOS Manifest Schema",
|
|
4
|
-
"description": "Schema definitions for AIOS manifest CSV files",
|
|
5
|
-
"version": "1.0.0",
|
|
6
|
-
"definitions": {
|
|
7
|
-
"agents": {
|
|
8
|
-
"description": "Schema for agents.csv",
|
|
9
|
-
"type": "object",
|
|
10
|
-
"columns": [
|
|
11
|
-
{
|
|
12
|
-
"name": "id",
|
|
13
|
-
"type": "string",
|
|
14
|
-
"required": true,
|
|
15
|
-
"description": "Unique agent identifier (e.g., dev, qa, architect)"
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"name": "name",
|
|
19
|
-
"type": "string",
|
|
20
|
-
"required": true,
|
|
21
|
-
"description": "Display name of the agent (e.g., Dex, Quinn)"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"name": "archetype",
|
|
25
|
-
"type": "string",
|
|
26
|
-
"required": true,
|
|
27
|
-
"description": "Agent archetype (e.g., Builder, Tester, Architect)"
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"name": "icon",
|
|
31
|
-
"type": "string",
|
|
32
|
-
"required": true,
|
|
33
|
-
"description": "Emoji icon for the agent"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"name": "version",
|
|
37
|
-
"type": "string",
|
|
38
|
-
"required": true,
|
|
39
|
-
"description": "Agent version (semver format)"
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"name": "status",
|
|
43
|
-
"type": "string",
|
|
44
|
-
"required": true,
|
|
45
|
-
"enum": ["active", "deprecated", "experimental"],
|
|
46
|
-
"description": "Agent status"
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"name": "file_path",
|
|
50
|
-
"type": "string",
|
|
51
|
-
"required": true,
|
|
52
|
-
"description": "Relative path to agent definition file"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"name": "when_to_use",
|
|
56
|
-
"type": "string",
|
|
57
|
-
"required": false,
|
|
58
|
-
"description": "Description of when to use this agent"
|
|
59
|
-
}
|
|
60
|
-
],
|
|
61
|
-
"header": "id,name,archetype,icon,version,status,file_path,when_to_use"
|
|
62
|
-
},
|
|
63
|
-
"workers": {
|
|
64
|
-
"description": "Schema for workers.csv",
|
|
65
|
-
"type": "object",
|
|
66
|
-
"columns": [
|
|
67
|
-
{
|
|
68
|
-
"name": "id",
|
|
69
|
-
"type": "string",
|
|
70
|
-
"required": true,
|
|
71
|
-
"description": "Unique worker identifier"
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"name": "name",
|
|
75
|
-
"type": "string",
|
|
76
|
-
"required": true,
|
|
77
|
-
"description": "Display name of the worker"
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
"name": "category",
|
|
81
|
-
"type": "string",
|
|
82
|
-
"required": true,
|
|
83
|
-
"description": "Worker category (task, script, template, etc.)"
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"name": "subcategory",
|
|
87
|
-
"type": "string",
|
|
88
|
-
"required": false,
|
|
89
|
-
"description": "Worker subcategory"
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
"name": "executor_types",
|
|
93
|
-
"type": "string",
|
|
94
|
-
"required": true,
|
|
95
|
-
"description": "Comma-separated executor types (Worker, Agent)"
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"name": "tags",
|
|
99
|
-
"type": "string",
|
|
100
|
-
"required": false,
|
|
101
|
-
"description": "Comma-separated tags"
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
"name": "file_path",
|
|
105
|
-
"type": "string",
|
|
106
|
-
"required": true,
|
|
107
|
-
"description": "Relative path to worker file"
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
"name": "status",
|
|
111
|
-
"type": "string",
|
|
112
|
-
"required": true,
|
|
113
|
-
"enum": ["active", "deprecated", "experimental"],
|
|
114
|
-
"description": "Worker status"
|
|
115
|
-
}
|
|
116
|
-
],
|
|
117
|
-
"header": "id,name,category,subcategory,executor_types,tags,file_path,status"
|
|
118
|
-
},
|
|
119
|
-
"tasks": {
|
|
120
|
-
"description": "Schema for tasks.csv",
|
|
121
|
-
"type": "object",
|
|
122
|
-
"columns": [
|
|
123
|
-
{
|
|
124
|
-
"name": "id",
|
|
125
|
-
"type": "string",
|
|
126
|
-
"required": true,
|
|
127
|
-
"description": "Unique task identifier"
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"name": "name",
|
|
131
|
-
"type": "string",
|
|
132
|
-
"required": true,
|
|
133
|
-
"description": "Display name of the task"
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
"name": "category",
|
|
137
|
-
"type": "string",
|
|
138
|
-
"required": true,
|
|
139
|
-
"description": "Task category"
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
"name": "format",
|
|
143
|
-
"type": "string",
|
|
144
|
-
"required": true,
|
|
145
|
-
"description": "Task format (TASK-FORMAT-V1, CHECKLIST, etc.)"
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
"name": "has_elicitation",
|
|
149
|
-
"type": "boolean",
|
|
150
|
-
"required": true,
|
|
151
|
-
"description": "Whether task requires user interaction"
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
"name": "file_path",
|
|
155
|
-
"type": "string",
|
|
156
|
-
"required": true,
|
|
157
|
-
"description": "Relative path to task file"
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
"name": "status",
|
|
161
|
-
"type": "string",
|
|
162
|
-
"required": true,
|
|
163
|
-
"enum": ["active", "deprecated", "experimental"],
|
|
164
|
-
"description": "Task status"
|
|
165
|
-
}
|
|
166
|
-
],
|
|
167
|
-
"header": "id,name,category,format,has_elicitation,file_path,status"
|
|
168
|
-
}
|
|
169
|
-
},
|
|
170
|
-
"validation": {
|
|
171
|
-
"rules": [
|
|
172
|
-
{
|
|
173
|
-
"name": "unique_ids",
|
|
174
|
-
"description": "All IDs must be unique within their manifest"
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
"name": "file_exists",
|
|
178
|
-
"description": "All file_path values must point to existing files"
|
|
179
|
-
},
|
|
180
|
-
{
|
|
181
|
-
"name": "valid_status",
|
|
182
|
-
"description": "Status must be one of: active, deprecated, experimental"
|
|
183
|
-
},
|
|
184
|
-
{
|
|
185
|
-
"name": "required_columns",
|
|
186
|
-
"description": "All required columns must have non-empty values"
|
|
187
|
-
}
|
|
188
|
-
]
|
|
189
|
-
}
|
|
190
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"title": "AIOS Manifest Schema",
|
|
4
|
+
"description": "Schema definitions for AIOS manifest CSV files",
|
|
5
|
+
"version": "1.0.0",
|
|
6
|
+
"definitions": {
|
|
7
|
+
"agents": {
|
|
8
|
+
"description": "Schema for agents.csv",
|
|
9
|
+
"type": "object",
|
|
10
|
+
"columns": [
|
|
11
|
+
{
|
|
12
|
+
"name": "id",
|
|
13
|
+
"type": "string",
|
|
14
|
+
"required": true,
|
|
15
|
+
"description": "Unique agent identifier (e.g., dev, qa, architect)"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"name": "name",
|
|
19
|
+
"type": "string",
|
|
20
|
+
"required": true,
|
|
21
|
+
"description": "Display name of the agent (e.g., Dex, Quinn)"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "archetype",
|
|
25
|
+
"type": "string",
|
|
26
|
+
"required": true,
|
|
27
|
+
"description": "Agent archetype (e.g., Builder, Tester, Architect)"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "icon",
|
|
31
|
+
"type": "string",
|
|
32
|
+
"required": true,
|
|
33
|
+
"description": "Emoji icon for the agent"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "version",
|
|
37
|
+
"type": "string",
|
|
38
|
+
"required": true,
|
|
39
|
+
"description": "Agent version (semver format)"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "status",
|
|
43
|
+
"type": "string",
|
|
44
|
+
"required": true,
|
|
45
|
+
"enum": ["active", "deprecated", "experimental"],
|
|
46
|
+
"description": "Agent status"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "file_path",
|
|
50
|
+
"type": "string",
|
|
51
|
+
"required": true,
|
|
52
|
+
"description": "Relative path to agent definition file"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "when_to_use",
|
|
56
|
+
"type": "string",
|
|
57
|
+
"required": false,
|
|
58
|
+
"description": "Description of when to use this agent"
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"header": "id,name,archetype,icon,version,status,file_path,when_to_use"
|
|
62
|
+
},
|
|
63
|
+
"workers": {
|
|
64
|
+
"description": "Schema for workers.csv",
|
|
65
|
+
"type": "object",
|
|
66
|
+
"columns": [
|
|
67
|
+
{
|
|
68
|
+
"name": "id",
|
|
69
|
+
"type": "string",
|
|
70
|
+
"required": true,
|
|
71
|
+
"description": "Unique worker identifier"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "name",
|
|
75
|
+
"type": "string",
|
|
76
|
+
"required": true,
|
|
77
|
+
"description": "Display name of the worker"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "category",
|
|
81
|
+
"type": "string",
|
|
82
|
+
"required": true,
|
|
83
|
+
"description": "Worker category (task, script, template, etc.)"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "subcategory",
|
|
87
|
+
"type": "string",
|
|
88
|
+
"required": false,
|
|
89
|
+
"description": "Worker subcategory"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "executor_types",
|
|
93
|
+
"type": "string",
|
|
94
|
+
"required": true,
|
|
95
|
+
"description": "Comma-separated executor types (Worker, Agent)"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"name": "tags",
|
|
99
|
+
"type": "string",
|
|
100
|
+
"required": false,
|
|
101
|
+
"description": "Comma-separated tags"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "file_path",
|
|
105
|
+
"type": "string",
|
|
106
|
+
"required": true,
|
|
107
|
+
"description": "Relative path to worker file"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "status",
|
|
111
|
+
"type": "string",
|
|
112
|
+
"required": true,
|
|
113
|
+
"enum": ["active", "deprecated", "experimental"],
|
|
114
|
+
"description": "Worker status"
|
|
115
|
+
}
|
|
116
|
+
],
|
|
117
|
+
"header": "id,name,category,subcategory,executor_types,tags,file_path,status"
|
|
118
|
+
},
|
|
119
|
+
"tasks": {
|
|
120
|
+
"description": "Schema for tasks.csv",
|
|
121
|
+
"type": "object",
|
|
122
|
+
"columns": [
|
|
123
|
+
{
|
|
124
|
+
"name": "id",
|
|
125
|
+
"type": "string",
|
|
126
|
+
"required": true,
|
|
127
|
+
"description": "Unique task identifier"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "name",
|
|
131
|
+
"type": "string",
|
|
132
|
+
"required": true,
|
|
133
|
+
"description": "Display name of the task"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "category",
|
|
137
|
+
"type": "string",
|
|
138
|
+
"required": true,
|
|
139
|
+
"description": "Task category"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "format",
|
|
143
|
+
"type": "string",
|
|
144
|
+
"required": true,
|
|
145
|
+
"description": "Task format (TASK-FORMAT-V1, CHECKLIST, etc.)"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"name": "has_elicitation",
|
|
149
|
+
"type": "boolean",
|
|
150
|
+
"required": true,
|
|
151
|
+
"description": "Whether task requires user interaction"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"name": "file_path",
|
|
155
|
+
"type": "string",
|
|
156
|
+
"required": true,
|
|
157
|
+
"description": "Relative path to task file"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "status",
|
|
161
|
+
"type": "string",
|
|
162
|
+
"required": true,
|
|
163
|
+
"enum": ["active", "deprecated", "experimental"],
|
|
164
|
+
"description": "Task status"
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
"header": "id,name,category,format,has_elicitation,file_path,status"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"validation": {
|
|
171
|
+
"rules": [
|
|
172
|
+
{
|
|
173
|
+
"name": "unique_ids",
|
|
174
|
+
"description": "All IDs must be unique within their manifest"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"name": "file_exists",
|
|
178
|
+
"description": "All file_path values must point to existing files"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"name": "valid_status",
|
|
182
|
+
"description": "Status must be one of: active, deprecated, experimental"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"name": "required_columns",
|
|
186
|
+
"description": "All required columns must have non-empty values"
|
|
187
|
+
}
|
|
188
|
+
]
|
|
189
|
+
}
|
|
190
|
+
}
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
id,name,category,format,has_elicitation,file_path,status
|
|
2
|
+
add-mcp,Add Mcp,general,TASK-FORMAT-V1,true,.aios-core/development/tasks/add-mcp.md,active
|
|
3
|
+
advanced-elicitation,Advanced Elicitation,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/advanced-elicitation.md,active
|
|
4
|
+
analyst-facilitate-brainstorming,Analyst Facilitate Brainstorming,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/analyst-facilitate-brainstorming.md,active
|
|
5
|
+
analyze-framework,Analyze Framework,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/analyze-framework.md,active
|
|
6
|
+
analyze-performance,Analyze Performance,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/analyze-performance.md,active
|
|
7
|
+
apply-qa-fixes,Apply Qa Fixes,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/apply-qa-fixes.md,active
|
|
8
|
+
architect-analyze-impact,Architect Analyze Impact,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/architect-analyze-impact.md,active
|
|
9
|
+
audit-codebase,Audit Codebase,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/audit-codebase.md,active
|
|
10
|
+
audit-tailwind-config,Audit Tailwind Config,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/audit-tailwind-config.md,active
|
|
11
|
+
audit-utilities,Audit Utilities,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/audit-utilities.md,active
|
|
12
|
+
bootstrap-shadcn-library,Bootstrap Shadcn Library,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/bootstrap-shadcn-library.md,active
|
|
13
|
+
brownfield-create-epic,Brownfield Create Epic,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/brownfield-create-epic.md,active
|
|
14
|
+
brownfield-create-story,Brownfield Create Story,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/brownfield-create-story.md,active
|
|
15
|
+
build-component,Build Component,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/build-component.md,active
|
|
16
|
+
calculate-roi,Calculate Roi,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/calculate-roi.md,active
|
|
17
|
+
ci-cd-configuration,Ci Cd Configuration,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/ci-cd-configuration.md,active
|
|
18
|
+
cleanup-utilities,Cleanup Utilities,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/cleanup-utilities.md,active
|
|
19
|
+
collaborative-edit,Collaborative Edit,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/collaborative-edit.md,active
|
|
20
|
+
compose-molecule,Compose Molecule,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/compose-molecule.md,active
|
|
21
|
+
consolidate-patterns,Consolidate Patterns,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/consolidate-patterns.md,active
|
|
22
|
+
correct-course,Correct Course,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/correct-course.md,active
|
|
23
|
+
create-agent,Create Agent,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/create-agent.md,active
|
|
24
|
+
create-brownfield-story,Create Brownfield Story,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/create-brownfield-story.md,active
|
|
25
|
+
create-deep-research-prompt,Create Deep Research Prompt,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/create-deep-research-prompt.md,active
|
|
26
|
+
create-doc,Create Doc,general,TASK-FORMAT-V1,true,.aios-core/development/tasks/create-doc.md,active
|
|
27
|
+
create-next-story,Create Next Story,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/create-next-story.md,active
|
|
28
|
+
create-suite,Create Suite,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/create-suite.md,active
|
|
29
|
+
create-task,Create Task,general,TASK-FORMAT-V1,true,.aios-core/development/tasks/create-task.md,active
|
|
30
|
+
create-workflow,Create Workflow,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/create-workflow.md,active
|
|
31
|
+
db-analyze-hotpaths,Db Analyze Hotpaths,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-analyze-hotpaths.md,active
|
|
32
|
+
db-apply-migration,Db Apply Migration,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-apply-migration.md,active
|
|
33
|
+
db-bootstrap,Db Bootstrap,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-bootstrap.md,active
|
|
34
|
+
db-domain-modeling,Db Domain Modeling,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-domain-modeling.md,active
|
|
35
|
+
db-dry-run,Db Dry Run,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-dry-run.md,active
|
|
36
|
+
db-env-check,Db Env Check,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-env-check.md,active
|
|
37
|
+
db-expansion-pack-integration,Db Expansion Pack Integration,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-expansion-pack-integration.md,active
|
|
38
|
+
db-explain,Db Explain,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-explain.md,active
|
|
39
|
+
db-impersonate,Db Impersonate,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-impersonate.md,active
|
|
40
|
+
db-load-csv,Db Load Csv,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-load-csv.md,active
|
|
41
|
+
db-policy-apply,Db Policy Apply,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-policy-apply.md,active
|
|
42
|
+
db-rls-audit,Db Rls Audit,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-rls-audit.md,active
|
|
43
|
+
db-rollback,Db Rollback,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-rollback.md,active
|
|
44
|
+
db-run-sql,Db Run Sql,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-run-sql.md,active
|
|
45
|
+
db-schema-audit,Db Schema Audit,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-schema-audit.md,active
|
|
46
|
+
db-seed,Db Seed,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-seed.md,active
|
|
47
|
+
db-smoke-test,Db Smoke Test,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-smoke-test.md,active
|
|
48
|
+
db-snapshot,Db Snapshot,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-snapshot.md,active
|
|
49
|
+
db-supabase-setup,Db Supabase Setup,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-supabase-setup.md,active
|
|
50
|
+
db-verify-order,Db Verify Order,database,TASK-FORMAT-V1,false,.aios-core/development/tasks/db-verify-order.md,active
|
|
51
|
+
deprecate-component,Deprecate Component,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/deprecate-component.md,active
|
|
52
|
+
dev-apply-qa-fixes,Dev Apply Qa Fixes,development,TASK-FORMAT-V1,false,.aios-core/development/tasks/dev-apply-qa-fixes.md,active
|
|
53
|
+
dev-backlog-debt,Dev Backlog Debt,development,TASK-FORMAT-V1,true,.aios-core/development/tasks/dev-backlog-debt.md,active
|
|
54
|
+
dev-develop-story,Dev Develop Story,development,TASK-FORMAT-V1,false,.aios-core/development/tasks/dev-develop-story.md,active
|
|
55
|
+
dev-improve-code-quality,Dev Improve Code Quality,development,TASK-FORMAT-V1,false,.aios-core/development/tasks/dev-improve-code-quality.md,active
|
|
56
|
+
dev-optimize-performance,Dev Optimize Performance,development,TASK-FORMAT-V1,false,.aios-core/development/tasks/dev-optimize-performance.md,active
|
|
57
|
+
dev-suggest-refactoring,Dev Suggest Refactoring,development,TASK-FORMAT-V1,false,.aios-core/development/tasks/dev-suggest-refactoring.md,active
|
|
58
|
+
dev-validate-next-story,Dev Validate Next Story,development,TASK-FORMAT-V1,false,.aios-core/development/tasks/dev-validate-next-story.md,active
|
|
59
|
+
document-project,Document Project,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/document-project.md,active
|
|
60
|
+
environment-bootstrap,Environment Bootstrap,general,TASK-FORMAT-V1,true,.aios-core/development/tasks/environment-bootstrap.md,active
|
|
61
|
+
execute-checklist,Execute Checklist,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/execute-checklist.md,active
|
|
62
|
+
export-design-tokens-dtcg,Export Design Tokens Dtcg,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/export-design-tokens-dtcg.md,active
|
|
63
|
+
extend-pattern,Extend Pattern,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/extend-pattern.md,active
|
|
64
|
+
extract-tokens,Extract Tokens,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/extract-tokens.md,active
|
|
65
|
+
facilitate-brainstorming-session,Facilitate Brainstorming Session,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/facilitate-brainstorming-session.md,active
|
|
66
|
+
generate-ai-frontend-prompt,Generate Ai Frontend Prompt,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/generate-ai-frontend-prompt.md,active
|
|
67
|
+
generate-documentation,Generate Documentation,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/generate-documentation.md,active
|
|
68
|
+
generate-migration-strategy,Generate Migration Strategy,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/generate-migration-strategy.md,active
|
|
69
|
+
generate-shock-report,Generate Shock Report,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/generate-shock-report.md,active
|
|
70
|
+
github-devops-github-pr-automation,Github Devops Github Pr Automation,devops,TASK-FORMAT-V1,false,.aios-core/development/tasks/github-devops-github-pr-automation.md,active
|
|
71
|
+
github-devops-pre-push-quality-gate,Github Devops Pre Push Quality Gate,devops,TASK-FORMAT-V1,false,.aios-core/development/tasks/github-devops-pre-push-quality-gate.md,active
|
|
72
|
+
github-devops-repository-cleanup,Github Devops Repository Cleanup,devops,TASK-FORMAT-V1,false,.aios-core/development/tasks/github-devops-repository-cleanup.md,active
|
|
73
|
+
github-devops-version-management,Github Devops Version Management,devops,TASK-FORMAT-V1,false,.aios-core/development/tasks/github-devops-version-management.md,active
|
|
74
|
+
improve-self,Improve Self,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/improve-self.md,active
|
|
75
|
+
index-docs,Index Docs,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/index-docs.md,active
|
|
76
|
+
init-project-status,Init Project Status,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/init-project-status.md,active
|
|
77
|
+
integrate-expansion-pack,Integrate Expansion Pack,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/integrate-expansion-pack.md,active
|
|
78
|
+
kb-mode-interaction,Kb Mode Interaction,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/kb-mode-interaction.md,active
|
|
79
|
+
learn-patterns,Learn Patterns,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/learn-patterns.md,active
|
|
80
|
+
mcp-workflow,Mcp Workflow,general,TASK-FORMAT-V1,true,.aios-core/development/tasks/mcp-workflow.md,active
|
|
81
|
+
modify-agent,Modify Agent,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/modify-agent.md,active
|
|
82
|
+
modify-task,Modify Task,general,TASK-FORMAT-V1,true,.aios-core/development/tasks/modify-task.md,active
|
|
83
|
+
modify-workflow,Modify Workflow,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/modify-workflow.md,active
|
|
84
|
+
po-backlog-add,Po Backlog Add,product,TASK-FORMAT-V1,true,.aios-core/development/tasks/po-backlog-add.md,active
|
|
85
|
+
po-manage-story-backlog,Po Manage Story Backlog,product,TASK-FORMAT-V1,false,.aios-core/development/tasks/po-manage-story-backlog.md,active
|
|
86
|
+
po-pull-story-from-clickup,Po Pull Story From Clickup,product,TASK-FORMAT-V1,false,.aios-core/development/tasks/po-pull-story-from-clickup.md,active
|
|
87
|
+
po-pull-story,Po Pull Story,product,TASK-FORMAT-V1,false,.aios-core/development/tasks/po-pull-story.md,active
|
|
88
|
+
po-stories-index,Po Stories Index,product,TASK-FORMAT-V1,true,.aios-core/development/tasks/po-stories-index.md,active
|
|
89
|
+
po-sync-story-to-clickup,Po Sync Story To Clickup,product,TASK-FORMAT-V1,false,.aios-core/development/tasks/po-sync-story-to-clickup.md,active
|
|
90
|
+
po-sync-story,Po Sync Story,product,TASK-FORMAT-V1,false,.aios-core/development/tasks/po-sync-story.md,active
|
|
91
|
+
pr-automation,Pr Automation,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/pr-automation.md,active
|
|
92
|
+
propose-modification,Propose Modification,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/propose-modification.md,active
|
|
93
|
+
qa-backlog-add-followup,Qa Backlog Add Followup,quality,TASK-FORMAT-V1,true,.aios-core/development/tasks/qa-backlog-add-followup.md,active
|
|
94
|
+
qa-gate,Qa Gate,quality,TASK-FORMAT-V1,false,.aios-core/development/tasks/qa-gate.md,active
|
|
95
|
+
qa-generate-tests,Qa Generate Tests,quality,TASK-FORMAT-V1,false,.aios-core/development/tasks/qa-generate-tests.md,active
|
|
96
|
+
qa-nfr-assess,Qa Nfr Assess,quality,TASK-FORMAT-V1,false,.aios-core/development/tasks/qa-nfr-assess.md,active
|
|
97
|
+
qa-review-proposal,Qa Review Proposal,quality,TASK-FORMAT-V1,false,.aios-core/development/tasks/qa-review-proposal.md,active
|
|
98
|
+
qa-review-story,Qa Review Story,quality,TASK-FORMAT-V1,false,.aios-core/development/tasks/qa-review-story.md,active
|
|
99
|
+
qa-risk-profile,Qa Risk Profile,quality,TASK-FORMAT-V1,false,.aios-core/development/tasks/qa-risk-profile.md,active
|
|
100
|
+
qa-run-tests,Qa Run Tests,quality,TASK-FORMAT-V1,false,.aios-core/development/tasks/qa-run-tests.md,active
|
|
101
|
+
qa-test-design,Qa Test Design,quality,TASK-FORMAT-V1,false,.aios-core/development/tasks/qa-test-design.md,active
|
|
102
|
+
qa-trace-requirements,Qa Trace Requirements,quality,TASK-FORMAT-V1,false,.aios-core/development/tasks/qa-trace-requirements.md,active
|
|
103
|
+
release-management,Release Management,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/release-management.md,active
|
|
104
|
+
security-audit,Security Audit,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/security-audit.md,active
|
|
105
|
+
security-scan,Security Scan,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/security-scan.md,active
|
|
106
|
+
setup-database,Setup Database,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/setup-database.md,active
|
|
107
|
+
setup-design-system,Setup Design System,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/setup-design-system.md,active
|
|
108
|
+
setup-github,Setup Github,general,TASK-FORMAT-V1,true,.aios-core/development/tasks/setup-github.md,active
|
|
109
|
+
setup-mcp-docker,Setup Mcp Docker,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/setup-mcp-docker.md,active
|
|
110
|
+
shard-doc,Shard Doc,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/shard-doc.md,active
|
|
111
|
+
sm-create-next-story,Sm Create Next Story,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/sm-create-next-story.md,active
|
|
112
|
+
sync-documentation,Sync Documentation,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/sync-documentation.md,active
|
|
113
|
+
tailwind-upgrade,Tailwind Upgrade,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/tailwind-upgrade.md,active
|
|
114
|
+
test-as-user,Test As User,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/test-as-user.md,active
|
|
115
|
+
test-validation-task,Test Validation Task,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/test-validation-task.md,active
|
|
116
|
+
undo-last,Undo Last,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/undo-last.md,active
|
|
117
|
+
update-manifest,Update Manifest,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/update-manifest.md,active
|
|
118
|
+
ux-create-wireframe,Ux Create Wireframe,general,TASK-FORMAT-V1,true,.aios-core/development/tasks/ux-create-wireframe.md,active
|
|
119
|
+
ux-ds-scan-artifact,Ux Ds Scan Artifact,general,TASK-FORMAT-V1,true,.aios-core/development/tasks/ux-ds-scan-artifact.md,active
|
|
120
|
+
ux-user-research,Ux User Research,general,TASK-FORMAT-V1,true,.aios-core/development/tasks/ux-user-research.md,active
|
|
121
|
+
validate-next-story,Validate Next Story,general,TASK-FORMAT-V1,false,.aios-core/development/tasks/validate-next-story.md,active
|