@jaguilar87/gaia-ops 1.0.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/CHANGELOG.md +315 -0
- package/CLAUDE.md +154 -0
- package/LICENSE +21 -0
- package/README.md +221 -0
- package/agents/aws-troubleshooter.md +50 -0
- package/agents/claude-architect.md +821 -0
- package/agents/devops-developer.md +92 -0
- package/agents/gcp-troubleshooter.md +50 -0
- package/agents/gitops-operator.md +360 -0
- package/agents/terraform-architect.md +289 -0
- package/bin/gaia-init.js +620 -0
- package/commands/architect.md +97 -0
- package/commands/restore-session.md +87 -0
- package/commands/save-session.md +88 -0
- package/commands/session-status.md +61 -0
- package/commands/speckit.add-task.md +144 -0
- package/commands/speckit.analyze-task.md +65 -0
- package/commands/speckit.implement.md +96 -0
- package/commands/speckit.init.md +237 -0
- package/commands/speckit.plan.md +88 -0
- package/commands/speckit.specify.md +161 -0
- package/commands/speckit.tasks.md +188 -0
- package/config/AGENTS.md +162 -0
- package/config/agent-catalog.md +604 -0
- package/config/context-contracts.md +682 -0
- package/config/git-standards.md +674 -0
- package/config/git_standards.json +69 -0
- package/config/orchestration-workflow.md +735 -0
- package/hooks/__pycache__/post_tool_use.cpython-312.pyc +0 -0
- package/hooks/__pycache__/pre_kubectl_security.cpython-312.pyc +0 -0
- package/hooks/__pycache__/pre_tool_use.cpython-312.pyc +0 -0
- package/hooks/__pycache__/session_start.cpython-312.pyc +0 -0
- package/hooks/__pycache__/subagent_stop.cpython-312.pyc +0 -0
- package/hooks/post_tool_use.py +463 -0
- package/hooks/pre_kubectl_security.py +205 -0
- package/hooks/pre_tool_use.py +530 -0
- package/hooks/session_start.py +315 -0
- package/hooks/subagent_stop.py +549 -0
- package/index.js +92 -0
- package/package.json +59 -0
- package/speckit/README.en.md +648 -0
- package/speckit/README.md +353 -0
- package/speckit/governance.md +169 -0
- package/speckit/scripts/check-prerequisites.sh +194 -0
- package/speckit/scripts/common.sh +126 -0
- package/speckit/scripts/create-new-feature.sh +131 -0
- package/speckit/scripts/init.sh +42 -0
- package/speckit/scripts/setup-plan.sh +95 -0
- package/speckit/scripts/update-agent-context.sh +718 -0
- package/speckit/templates/adr-template.md +118 -0
- package/speckit/templates/agent-file-template.md +23 -0
- package/speckit/templates/plan-template.md +233 -0
- package/speckit/templates/spec-template.md +116 -0
- package/speckit/templates/tasks-template-bkp.md +136 -0
- package/speckit/templates/tasks-template.md +345 -0
- package/templates/CLAUDE.template.md +170 -0
- package/templates/code-examples/approval_gate_workflow.py +141 -0
- package/templates/code-examples/clarification_workflow.py +94 -0
- package/templates/code-examples/commit_validation.py +86 -0
- package/templates/project-context.template.json +126 -0
- package/templates/settings.template.json +307 -0
- package/tools/__pycache__/agent_router.cpython-312.pyc +0 -0
- package/tools/__pycache__/approval_gate.cpython-312.pyc +0 -0
- package/tools/__pycache__/clarify_engine.cpython-312.pyc +0 -0
- package/tools/__pycache__/clarify_patterns.cpython-312.pyc +0 -0
- package/tools/__pycache__/commit_validator.cpython-312.pyc +0 -0
- package/tools/__pycache__/context_section_reader.cpython-312.pyc +0 -0
- package/tools/__pycache__/routing_dashboard.cpython-312.pyc +0 -0
- package/tools/__pycache__/routing_feedback.cpython-312.pyc +0 -0
- package/tools/__pycache__/semantic_matcher.cpython-312.pyc +0 -0
- package/tools/__pycache__/task_manager.cpython-312.pyc +0 -0
- package/tools/agent_capabilities.json +231 -0
- package/tools/agent_invoker_helper.py +239 -0
- package/tools/agent_router.py +730 -0
- package/tools/approval_gate.py +318 -0
- package/tools/clarify_engine.py +511 -0
- package/tools/clarify_patterns.py +356 -0
- package/tools/commit_validator.py +338 -0
- package/tools/context_provider.py +181 -0
- package/tools/context_section_reader.py +301 -0
- package/tools/demo_clarify.py +104 -0
- package/tools/generate_embeddings.py +168 -0
- package/tools/quicktriage_aws_troubleshooter.sh +45 -0
- package/tools/quicktriage_devops_developer.sh +38 -0
- package/tools/quicktriage_gcp_troubleshooter.sh +51 -0
- package/tools/quicktriage_gitops_operator.sh +47 -0
- package/tools/quicktriage_terraform_architect.sh +40 -0
- package/tools/semantic_matcher.py +222 -0
- package/tools/task_manager.py +547 -0
- package/tools/task_manager_README.md +395 -0
- package/tools/task_manager_example.py +215 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"commit_message": {
|
|
3
|
+
"format": "conventional_commits",
|
|
4
|
+
"description": "Commit messages must follow Conventional Commits specification",
|
|
5
|
+
|
|
6
|
+
"type_allowed": [
|
|
7
|
+
"feat",
|
|
8
|
+
"fix",
|
|
9
|
+
"refactor",
|
|
10
|
+
"docs",
|
|
11
|
+
"test",
|
|
12
|
+
"chore",
|
|
13
|
+
"ci",
|
|
14
|
+
"perf",
|
|
15
|
+
"style",
|
|
16
|
+
"build"
|
|
17
|
+
],
|
|
18
|
+
|
|
19
|
+
"scope_required": false,
|
|
20
|
+
"scope_examples": ["helmrelease", "terraform", "pg-non-prod", "infrastructure"],
|
|
21
|
+
|
|
22
|
+
"subject_max_length": 72,
|
|
23
|
+
"subject_rules": {
|
|
24
|
+
"capitalize_first_letter": false,
|
|
25
|
+
"no_period_at_end": true,
|
|
26
|
+
"imperative_mood": true
|
|
27
|
+
},
|
|
28
|
+
|
|
29
|
+
"body_max_line_length": 72,
|
|
30
|
+
"body_required": false,
|
|
31
|
+
|
|
32
|
+
"footer_forbidden": [
|
|
33
|
+
"Generated with Claude Code",
|
|
34
|
+
"Co-Authored-By: Claude",
|
|
35
|
+
"🤖 Generated with"
|
|
36
|
+
],
|
|
37
|
+
|
|
38
|
+
"footer_allowed": [
|
|
39
|
+
"BREAKING CHANGE:",
|
|
40
|
+
"Refs:",
|
|
41
|
+
"Closes:",
|
|
42
|
+
"Fixes:",
|
|
43
|
+
"Implements:",
|
|
44
|
+
"See:"
|
|
45
|
+
],
|
|
46
|
+
|
|
47
|
+
"examples_valid": [
|
|
48
|
+
"feat(helmrelease): add Phase 3.3 services",
|
|
49
|
+
"fix(pg-non-prod): correct API key environment variable mappings",
|
|
50
|
+
"refactor: simplify context provider logic",
|
|
51
|
+
"docs: update README with new workflow",
|
|
52
|
+
"chore(deps): update terraform to v1.6.0"
|
|
53
|
+
],
|
|
54
|
+
|
|
55
|
+
"examples_invalid": [
|
|
56
|
+
"Added new feature",
|
|
57
|
+
"Fixed bugs",
|
|
58
|
+
"Updates",
|
|
59
|
+
"feat: add feature\n\n🤖 Generated with Claude Code"
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
|
|
63
|
+
"enforcement": {
|
|
64
|
+
"enabled": true,
|
|
65
|
+
"block_on_failure": true,
|
|
66
|
+
"log_violations": true,
|
|
67
|
+
"log_path": ".claude/logs/commit-violations.jsonl"
|
|
68
|
+
}
|
|
69
|
+
}
|