atlas-workflow 0.9.0 → 0.9.1
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/README.md +2 -2
- package/VERSION +1 -1
- package/build/cli/atlas-init.mjs +12 -14
- package/hosts/opencode/.opencode/atlas/VERSION +1 -1
- package/hosts/opencode/.opencode/atlas/orchestrator/README.md +1 -1
- package/hosts/opencode/.opencode/atlas/packages/mcp-server/README.md +1 -1
- package/hosts/opencode/.opencode/atlas/packages/mcp-server/package.json +1 -1
- package/hosts/pi/atlas/VERSION +1 -1
- package/hosts/pi/atlas/orchestrator/README.md +1 -1
- package/hosts/pi/atlas/packages/mcp-server/README.md +1 -1
- package/hosts/pi/atlas/packages/mcp-server/package.json +1 -1
- package/package.json +1 -1
- package/plugins/atlas-workflow-orchestrator/.codex-plugin/plugin.json +1 -1
- package/plugins/atlas-workflow-orchestrator/VERSION +1 -1
- package/plugins/atlas-workflow-orchestrator/orchestrator/README.md +1 -1
- package/plugins/atlas-workflow-orchestrator/packages/mcp-server/README.md +1 -1
- package/plugins/atlas-workflow-orchestrator/packages/mcp-server/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Atlas Workflow
|
|
2
2
|
|
|
3
|
-
Plugin **Atlas Workflow Orchestrator** v0.9.
|
|
3
|
+
Plugin **Atlas Workflow Orchestrator** v0.9.1 — pipeline determinístico (PRD → plano → execução → validação) com skills `atlas-*`, templates e MCP. Um pacote, seis hosts: **Claude Code**, **Cursor**, **Codex App**, **Antigravity (Gemini)**, **OpenCode** e **Pi CLI**.
|
|
4
4
|
|
|
5
|
-
**Versão:** [`VERSION`](VERSION) (`0.9.
|
|
5
|
+
**Versão:** [`VERSION`](VERSION) (`0.9.1`) · **Repo:** https://github.com/pauloborini/atlas-workflow
|
|
6
6
|
|
|
7
7
|
## Hosts
|
|
8
8
|
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.9.
|
|
1
|
+
0.9.1
|
package/build/cli/atlas-init.mjs
CHANGED
|
@@ -435,29 +435,27 @@ function installAntigravity(opts) {
|
|
|
435
435
|
log(` [dry-run] mesclaria mcpServers.atlas-workflow em ${mcpFile} (args absoluto)`);
|
|
436
436
|
} else {
|
|
437
437
|
fs.mkdirSync(pluginDir, { recursive: true });
|
|
438
|
-
|
|
438
|
+
|
|
439
|
+
// Fonte: bundle shipado `plugins/atlas-workflow-orchestrator/`. A cópia raiz
|
|
440
|
+
// `/packages/` NÃO entra no tarball npm (ver .npmignore) — usá-la quebra o
|
|
441
|
+
// install via npx-from-GitHub (ENOENT). O bundle já traz skills/ completo
|
|
442
|
+
// (inclui a skill atlas-workflow-orchestrator) + packages/mcp-server.
|
|
443
|
+
const SRC = path.join(ROOT, 'plugins/atlas-workflow-orchestrator');
|
|
444
|
+
|
|
439
445
|
// Limpeza de instalações anteriores controladas por nós
|
|
440
446
|
const skillsDir = path.join(pluginDir, 'skills');
|
|
441
447
|
const packagesDir = path.join(pluginDir, 'packages');
|
|
442
448
|
rmPath(skillsDir, opts);
|
|
443
449
|
rmPath(packagesDir, opts);
|
|
444
450
|
|
|
445
|
-
// Copia as skills
|
|
446
|
-
fs.
|
|
447
|
-
fs.cpSync(path.join(ROOT, 'packages/skills'), skillsDir, { recursive: true });
|
|
448
|
-
|
|
449
|
-
// Copia a orquestradora
|
|
450
|
-
fs.cpSync(
|
|
451
|
-
path.join(ROOT, 'packages/orchestrator/skills/atlas-workflow-orchestrator'),
|
|
452
|
-
path.join(skillsDir, 'atlas-workflow-orchestrator'),
|
|
453
|
-
{ recursive: true }
|
|
454
|
-
);
|
|
451
|
+
// Copia as skills (inclui a orquestradora atlas-workflow-orchestrator)
|
|
452
|
+
fs.cpSync(path.join(SRC, 'skills'), skillsDir, { recursive: true });
|
|
455
453
|
|
|
456
454
|
// Copia o mcp-server
|
|
457
455
|
fs.mkdirSync(path.join(packagesDir, 'mcp-server'), { recursive: true });
|
|
458
|
-
fs.cpSync(path.join(
|
|
459
|
-
|
|
460
|
-
// Remove testes do mcp-server no bundle
|
|
456
|
+
fs.cpSync(path.join(SRC, 'packages/mcp-server'), path.join(packagesDir, 'mcp-server'), { recursive: true });
|
|
457
|
+
|
|
458
|
+
// Remove testes do mcp-server no bundle (defensivo; bundle shipado já não os traz)
|
|
461
459
|
fs.rmSync(path.join(packagesDir, 'mcp-server', 'server.test.js'), { force: true });
|
|
462
460
|
|
|
463
461
|
// Cria o plugin.json
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.9.
|
|
1
|
+
0.9.1
|
package/hosts/pi/atlas/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.9.
|
|
1
|
+
0.9.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "atlas-workflow-orchestrator",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"description": "Orquestra pipelines via sub-agents (PRD, entrevista, plan handoff, execução, validator, repair, review) e oferece geração explícita de backlog mestre. Bundle único: 9 skills atlas-* + orquestrador + 5 templates canônicos.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Paulo Borini"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.9.
|
|
1
|
+
0.9.1
|