@jaguilar87/gaia-ops 1.3.2 β 1.3.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/CHANGELOG.md +29 -0
- package/README.en.md +14 -12
- package/README.md +4 -1
- package/bin/gaia-init.js +5 -20
- package/package.json +9 -2
- 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/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_provider.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/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [1.3.4] - 2025-11-10
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- **Installer:** Removed incorrect AGENTS.md symlink creation in project root during installation
|
|
14
|
+
- **Documentation:** AGENTS.md now only accessible via `.claude/config/AGENTS.md` as intended
|
|
15
|
+
- **Package Quality:** Excluded Python cache files (`__pycache__/`) from published package
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- **README.md:** Updated project structure documentation to reflect correct AGENTS.md location
|
|
19
|
+
- **README.en.md:** Updated project structure and corrected package references
|
|
20
|
+
- **Package Size:** Reduced from 911.7 kB (93 files) to 660.7 kB (77 files) - 27% reduction
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- **Package Metadata:** Added `homepage` and `bugs` fields to package.json for better npm discovery
|
|
24
|
+
- **Badges:** Added npm version, license, and Node.js version badges to README files
|
|
25
|
+
- **CI/CD:** Created GitHub Actions workflow for automated npm publishing
|
|
26
|
+
- **.npmignore:** Added file to exclude development artifacts from package
|
|
27
|
+
- **Cleanup Script:** Added `npm run clean` to remove Python cache files automatically
|
|
28
|
+
- **Pre-publish Hook:** Added `prepublishOnly` script for automatic cleanup before publishing
|
|
29
|
+
|
|
30
|
+
### Package Quality Improvements
|
|
31
|
+
- Better npm package metadata for discoverability
|
|
32
|
+
- Professional badges in documentation
|
|
33
|
+
- Automated publishing workflow
|
|
34
|
+
- Cleaner package distribution (no cache files)
|
|
35
|
+
- Improved documentation consistency
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
10
39
|
## [2.1.0] - 2025-11-07
|
|
11
40
|
|
|
12
41
|
### Changed
|
package/README.en.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @jaguilar87/gaia-ops
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@jaguilar87/gaia-ops)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
[](https://nodejs.org)
|
|
6
|
+
|
|
3
7
|
**[πͺπΈ VersiΓ³n en espaΓ±ol](README.md)**
|
|
4
8
|
|
|
5
9
|
Multi-agent orchestration system for Claude Code - DevOps automation toolkit.
|
|
@@ -127,26 +131,24 @@ After installation:
|
|
|
127
131
|
|
|
128
132
|
```
|
|
129
133
|
your-project/
|
|
130
|
-
βββ .claude/ # Symlinked to node_modules/@
|
|
131
|
-
β βββ agents/ β node_modules/@
|
|
132
|
-
β βββ tools/ β node_modules/@
|
|
133
|
-
β βββ hooks/ β node_modules/@
|
|
134
|
-
β βββ commands/ β node_modules/@
|
|
135
|
-
β βββ
|
|
136
|
-
β βββ templates/ β node_modules/@
|
|
137
|
-
β βββ
|
|
138
|
-
β βββ CHANGELOG.md β node_modules/@aaxis/claude-agents/CHANGELOG.md
|
|
134
|
+
βββ .claude/ # Symlinked to node_modules/@jaguilar87/gaia-ops/
|
|
135
|
+
β βββ agents/ β node_modules/@jaguilar87/gaia-ops/agents/
|
|
136
|
+
β βββ tools/ β node_modules/@jaguilar87/gaia-ops/tools/
|
|
137
|
+
β βββ hooks/ β node_modules/@jaguilar87/gaia-ops/hooks/
|
|
138
|
+
β βββ commands/ β node_modules/@jaguilar87/gaia-ops/commands/
|
|
139
|
+
β βββ config/ β node_modules/@jaguilar87/gaia-ops/config/
|
|
140
|
+
β βββ templates/ β node_modules/@jaguilar87/gaia-ops/templates/
|
|
141
|
+
β βββ CHANGELOG.md β node_modules/@jaguilar87/gaia-ops/CHANGELOG.md
|
|
139
142
|
β βββ logs/ # Project-specific (NOT symlinked)
|
|
140
143
|
β βββ tests/ # Project-specific (NOT symlinked)
|
|
141
144
|
β βββ project-context.json # Project-specific (NOT symlinked)
|
|
142
145
|
βββ CLAUDE.md # Generated from template
|
|
143
|
-
βββ AGENTS.md β node_modules/@aaxis/claude-agents/AGENTS.md
|
|
144
146
|
βββ gitops/ # Your GitOps manifests
|
|
145
147
|
βββ terraform/ # Your Terraform code
|
|
146
148
|
βββ app-services/ # Your application code
|
|
147
149
|
βββ node_modules/
|
|
148
|
-
β βββ @
|
|
149
|
-
β βββ
|
|
150
|
+
β βββ @jaguilar87/
|
|
151
|
+
β βββ gaia-ops/ # This package
|
|
150
152
|
βββ package.json
|
|
151
153
|
```
|
|
152
154
|
|
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @jaguilar87/gaia-ops
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@jaguilar87/gaia-ops)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
[](https://nodejs.org)
|
|
6
|
+
|
|
3
7
|
**[πΊπΈ English version](README.en.md)**
|
|
4
8
|
|
|
5
9
|
Sistema de orquestaciΓ³n multi-agente para Claude Code - Toolkit de automatizaciΓ³n DevOps.
|
|
@@ -139,7 +143,6 @@ tu-proyecto/
|
|
|
139
143
|
β βββ tests/ # EspecΓfico del proyecto (NO symlink)
|
|
140
144
|
β βββ project-context.json # EspecΓfico del proyecto (NO symlink)
|
|
141
145
|
βββ CLAUDE.md # Generado desde template
|
|
142
|
-
βββ AGENTS.md β node_modules/@jaguilar87/gaia-ops/AGENTS.md
|
|
143
146
|
βββ gitops/ # Tus manifiestos GitOps
|
|
144
147
|
βββ terraform/ # Tu cΓ³digo Terraform
|
|
145
148
|
βββ app-services/ # Tu cΓ³digo de aplicaciΓ³n
|
package/bin/gaia-init.js
CHANGED
|
@@ -270,7 +270,6 @@ async function runInteractiveWizard(detected) {
|
|
|
270
270
|
β βββββββ βββ βββββββββ βββ βββββββ βββ ββββββββ β
|
|
271
271
|
β β
|
|
272
272
|
β Multi-Agent DevOps Orchestration System β
|
|
273
|
-
β Powered by Claude Code β
|
|
274
273
|
β β
|
|
275
274
|
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
276
275
|
`));
|
|
@@ -497,27 +496,13 @@ async function generateClaudeMd(config) {
|
|
|
497
496
|
|
|
498
497
|
/**
|
|
499
498
|
* Generate AGENTS.md symlink
|
|
499
|
+
* NOTE: AGENTS.md is already available at .claude/config/AGENTS.md via the config/ symlink
|
|
500
|
+
* No need to create a separate symlink in the project root
|
|
500
501
|
*/
|
|
501
502
|
async function generateAgentsMd() {
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
const agentsMdLink = join(CWD, 'AGENTS.md');
|
|
506
|
-
const packagePath = join(CWD, 'node_modules', '@jaguilar87', 'gaia-ops', 'config', 'AGENTS.md');
|
|
507
|
-
const relativePath = relative(CWD, packagePath);
|
|
508
|
-
|
|
509
|
-
// Remove existing if present
|
|
510
|
-
if (existsSync(agentsMdLink)) {
|
|
511
|
-
await fs.unlink(agentsMdLink);
|
|
512
|
-
}
|
|
513
|
-
|
|
514
|
-
await fs.symlink(relativePath, agentsMdLink);
|
|
515
|
-
|
|
516
|
-
spinner.succeed('AGENTS.md symlink created');
|
|
517
|
-
} catch (error) {
|
|
518
|
-
spinner.fail('Failed to create AGENTS.md symlink');
|
|
519
|
-
throw error;
|
|
520
|
-
}
|
|
503
|
+
// AGENTS.md is accessible via .claude/config/AGENTS.md (symlinked directory)
|
|
504
|
+
// No action needed - keeping function for backward compatibility
|
|
505
|
+
return Promise.resolve();
|
|
521
506
|
}
|
|
522
507
|
|
|
523
508
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jaguilar87/gaia-ops",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.4",
|
|
4
4
|
"description": "Multi-agent orchestration system for Claude Code - DevOps automation toolkit",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -25,6 +25,11 @@
|
|
|
25
25
|
"type": "git",
|
|
26
26
|
"url": "git+https://github.com/metraton/gaia-ops.git"
|
|
27
27
|
},
|
|
28
|
+
"homepage": "https://github.com/metraton/gaia-ops#readme",
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/metraton/gaia-ops/issues",
|
|
31
|
+
"email": "jaguilar1897@gmail.com"
|
|
32
|
+
},
|
|
28
33
|
"files": [
|
|
29
34
|
"bin/",
|
|
30
35
|
"agents/",
|
|
@@ -42,7 +47,9 @@
|
|
|
42
47
|
"scripts": {
|
|
43
48
|
"test": "pytest tests/ -v",
|
|
44
49
|
"validate": "python3 tools/commit_validator.py",
|
|
45
|
-
"lint": "eslint ."
|
|
50
|
+
"lint": "eslint .",
|
|
51
|
+
"clean": "find . -type d -name '__pycache__' -exec rm -rf {} + 2>/dev/null || true",
|
|
52
|
+
"prepublishOnly": "npm run clean"
|
|
46
53
|
},
|
|
47
54
|
"dependencies": {
|
|
48
55
|
"prompts": "^2.4.2",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|