guild-agents 0.2.1 → 0.2.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "guild-agents",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "A multi-agent framework for Claude Code — specialized AI teams for every project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"test": "vitest run",
|
|
18
18
|
"test:watch": "vitest",
|
|
19
19
|
"test:coverage": "vitest run --coverage",
|
|
20
|
-
"lint": "eslint src/",
|
|
20
|
+
"lint": "eslint src/ && markdownlint-cli2 'src/templates/**/*.md'",
|
|
21
|
+
"lint:js": "eslint src/",
|
|
22
|
+
"lint:md": "markdownlint-cli2 'src/templates/**/*.md'",
|
|
21
23
|
"dev": "node bin/guild.js",
|
|
22
24
|
"prepublishOnly": "npm test && npm run lint"
|
|
23
25
|
},
|
|
@@ -59,6 +61,7 @@
|
|
|
59
61
|
"devDependencies": {
|
|
60
62
|
"@eslint/js": "^10.0.1",
|
|
61
63
|
"eslint": "^10.0.1",
|
|
64
|
+
"markdownlint-cli2": "^0.21.0",
|
|
62
65
|
"vitest": "^4.0.18"
|
|
63
66
|
}
|
|
64
67
|
}
|
|
@@ -30,9 +30,9 @@ Obtiene los cambios actuales:
|
|
|
30
30
|
|
|
31
31
|
Ejecuta verificacion automatizada para dar contexto al reviewer:
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
1. Ejecuta tests del proyecto (ej: `npm test`) — captura resultado
|
|
34
|
+
2. Ejecuta lint del proyecto (ej: `npm run lint`) — captura resultado
|
|
35
|
+
3. Incluye ambos resultados como contexto para el Code Reviewer
|
|
36
36
|
|
|
37
37
|
Nota: El Code Reviewer no tiene acceso a Bash (solo Read, Glob, Grep), por eso los tests y lint se ejecutan aqui antes de invocar al reviewer.
|
|
38
38
|
|