@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 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
+ [![npm version](https://badge.fury.io/js/@jaguilar87%2Fgaia-ops.svg)](https://www.npmjs.com/package/@jaguilar87/gaia-ops)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+ [![Node.js Version](https://img.shields.io/node/v/@jaguilar87/gaia-ops.svg)](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/@aaxis/claude-agents/
131
- β”‚ β”œβ”€β”€ agents/ β†’ node_modules/@aaxis/claude-agents/agents/
132
- β”‚ β”œβ”€β”€ tools/ β†’ node_modules/@aaxis/claude-agents/tools/
133
- β”‚ β”œβ”€β”€ hooks/ β†’ node_modules/@aaxis/claude-agents/hooks/
134
- β”‚ β”œβ”€β”€ commands/ β†’ node_modules/@aaxis/claude-agents/commands/
135
- β”‚ β”œβ”€β”€ docs/ β†’ node_modules/@aaxis/claude-agents/docs/
136
- β”‚ β”œβ”€β”€ templates/ β†’ node_modules/@aaxis/claude-agents/templates/
137
- β”‚ β”œβ”€β”€ config/ β†’ node_modules/@aaxis/claude-agents/config/
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
- β”‚ └── @aaxis/
149
- β”‚ └── claude-agents/ # This package
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
+ [![npm version](https://badge.fury.io/js/@jaguilar87%2Fgaia-ops.svg)](https://www.npmjs.com/package/@jaguilar87/gaia-ops)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+ [![Node.js Version](https://img.shields.io/node/v/@jaguilar87/gaia-ops.svg)](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
- const spinner = ora('Creating AGENTS.md symlink...').start();
503
-
504
- try {
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.2",
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",