@zaip-ai/cli 0.1.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.
Files changed (86) hide show
  1. package/LICENSE +5 -0
  2. package/README.md +74 -0
  3. package/dist/cli.d.ts +3 -0
  4. package/dist/cli.d.ts.map +1 -0
  5. package/dist/cli.js +4 -0
  6. package/dist/cli.js.map +1 -0
  7. package/dist/commands/init.d.ts +9 -0
  8. package/dist/commands/init.d.ts.map +1 -0
  9. package/dist/commands/init.js +41 -0
  10. package/dist/commands/init.js.map +1 -0
  11. package/dist/index.d.ts +10 -0
  12. package/dist/index.d.ts.map +1 -0
  13. package/dist/index.js +61 -0
  14. package/dist/index.js.map +1 -0
  15. package/dist/services/find-project-root.d.ts +6 -0
  16. package/dist/services/find-project-root.d.ts.map +1 -0
  17. package/dist/services/find-project-root.js +29 -0
  18. package/dist/services/find-project-root.js.map +1 -0
  19. package/dist/services/install-agents-template.d.ts +3 -0
  20. package/dist/services/install-agents-template.d.ts.map +1 -0
  21. package/dist/services/install-agents-template.js +188 -0
  22. package/dist/services/install-agents-template.js.map +1 -0
  23. package/dist/services/logger.d.ts +4 -0
  24. package/dist/services/logger.d.ts.map +1 -0
  25. package/dist/services/logger.js +40 -0
  26. package/dist/services/logger.js.map +1 -0
  27. package/dist/services/template-manifest.d.ts +23 -0
  28. package/dist/services/template-manifest.d.ts.map +1 -0
  29. package/dist/services/template-manifest.js +77 -0
  30. package/dist/services/template-manifest.js.map +1 -0
  31. package/dist/types.d.ts +32 -0
  32. package/dist/types.d.ts.map +1 -0
  33. package/dist/types.js +2 -0
  34. package/dist/types.js.map +1 -0
  35. package/package.json +43 -0
  36. package/templates/.agents/config/framework.lock.yaml +1 -0
  37. package/templates/.agents/config/project.yaml +15 -0
  38. package/templates/.agents/data/changes/.gitkeep +0 -0
  39. package/templates/.agents/data/executions/.gitkeep +0 -0
  40. package/templates/.agents/data/prds/.gitkeep +0 -0
  41. package/templates/.agents/data/runs/.gitkeep +0 -0
  42. package/templates/.agents/data/specs/.gitkeep +0 -0
  43. package/templates/.agents/data/tasks/.gitkeep +0 -0
  44. package/templates/.agents/requirements/context-engine.md +20 -0
  45. package/templates/.agents/requirements/cost-observability.md +20 -0
  46. package/templates/.agents/requirements/execution-engine.md +35 -0
  47. package/templates/.agents/requirements/kanban-dashboard.md +21 -0
  48. package/templates/.agents/requirements/work-lifecycle.md +27 -0
  49. package/templates/.agents/rules/architecture.md +21 -0
  50. package/templates/.agents/rules/context.md +18 -0
  51. package/templates/.agents/rules/core.md +16 -0
  52. package/templates/.agents/rules/security.md +20 -0
  53. package/templates/.agents/rules/workflow.md +21 -0
  54. package/templates/.agents/skills/zaip-skill-adapt-stack/SKILL.md +11 -0
  55. package/templates/.agents/skills/zaip-skill-adapt-stack/agents/openai.yaml +4 -0
  56. package/templates/.agents/skills/zaip-skill-adapters/SKILL.md +12 -0
  57. package/templates/.agents/skills/zaip-skill-adapters/agents/openai.yaml +4 -0
  58. package/templates/.agents/skills/zaip-skill-context/SKILL.md +12 -0
  59. package/templates/.agents/skills/zaip-skill-context/agents/openai.yaml +4 -0
  60. package/templates/.agents/skills/zaip-skill-cqrs/SKILL.md +11 -0
  61. package/templates/.agents/skills/zaip-skill-cqrs/agents/openai.yaml +4 -0
  62. package/templates/.agents/skills/zaip-skill-decisions/SKILL.md +12 -0
  63. package/templates/.agents/skills/zaip-skill-decisions/agents/openai.yaml +4 -0
  64. package/templates/.agents/skills/zaip-skill-enforce-architecture/SKILL.md +11 -0
  65. package/templates/.agents/skills/zaip-skill-enforce-architecture/agents/openai.yaml +4 -0
  66. package/templates/.agents/skills/zaip-skill-eval/SKILL.md +12 -0
  67. package/templates/.agents/skills/zaip-skill-eval/agents/openai.yaml +4 -0
  68. package/templates/.agents/skills/zaip-skill-github-deploy/SKILL.md +84 -0
  69. package/templates/.agents/skills/zaip-skill-github-deploy/agents/openai.yaml +6 -0
  70. package/templates/.agents/skills/zaip-skill-github-setup/SKILL.md +80 -0
  71. package/templates/.agents/skills/zaip-skill-github-setup/agents/openai.yaml +4 -0
  72. package/templates/.agents/skills/zaip-skill-navigate-work/SKILL.md +13 -0
  73. package/templates/.agents/skills/zaip-skill-navigate-work/agents/openai.yaml +4 -0
  74. package/templates/.agents/skills/zaip-skill-prd/SKILL.md +13 -0
  75. package/templates/.agents/skills/zaip-skill-prd/agents/openai.yaml +4 -0
  76. package/templates/.agents/skills/zaip-skill-requirements/SKILL.md +12 -0
  77. package/templates/.agents/skills/zaip-skill-requirements/agents/openai.yaml +4 -0
  78. package/templates/.agents/skills/zaip-skill-setup/SKILL.md +12 -0
  79. package/templates/.agents/skills/zaip-skill-setup/agents/openai.yaml +4 -0
  80. package/templates/.agents/skills/zaip-skill-spec/SKILL.md +12 -0
  81. package/templates/.agents/skills/zaip-skill-spec/agents/openai.yaml +4 -0
  82. package/templates/.agents/skills/zaip-skill-task/SKILL.md +13 -0
  83. package/templates/.agents/skills/zaip-skill-task/agents/openai.yaml +4 -0
  84. package/templates/.agents/skills/zaip-skill-text-encoding/SKILL.md +27 -0
  85. package/templates/.agents/skills/zaip-skill-text-encoding/agents/openai.yaml +6 -0
  86. package/templates/template-manifest.json +208 -0
@@ -0,0 +1,84 @@
1
+ ---
2
+ name: zaip-skill-github-deploy
3
+ description: Commit and push a local Git repository safely to GitHub. Use only when the user explicitly asks in the current conversation to deploy, push, publish, publicar, subir, or send changes to GitHub; never trigger from an implied desire to prepare or review a repository.
4
+ ---
5
+
6
+ # Deploy to GitHub
7
+
8
+ Treat deploy as Git-only publication: stage the complete intended repository state, create a correctly attributed commit when needed, and push it to GitHub. Provider workflows may deploy applications afterward, but do not invoke Supabase, Vercel, cloud, package-registry, or database deployment commands without a separate explicit request.
9
+
10
+ ## Authorization boundary
11
+
12
+ - Require an explicit deploy/push/publication request in the current conversation.
13
+ - That request authorizes `git add -A`, including new files, a commit, and a normal push without another confirmation.
14
+ - It does not authorize force push, history rewriting, remote replacement, credential changes, or deployment to another service.
15
+ - If no changes exist, push already-committed local work when the explicit request still applies.
16
+
17
+ ## Preflight
18
+
19
+ Run in the target repository:
20
+
21
+ ```powershell
22
+ git status --short --branch
23
+ git config --show-origin --get user.name
24
+ git config --show-origin --get user.email
25
+ git config --show-origin --get core.sshCommand
26
+ git remote -v
27
+ git branch --show-current
28
+ ```
29
+
30
+ Preserve the identity resolved by the current folder. Enforce repository-specific identity expectations from `AGENTS.md`, `.agents`, or scoped Git configuration when present.
31
+
32
+ - Do not change account, key, remote, `core.sshCommand`, global Git config, or SSH config during deploy.
33
+ - Never use `GIT_SSH_COMMAND` or an inline `ssh -i` override.
34
+ - Accept an existing SSH host alias or scoped `core.sshCommand` when it resolves the intended account.
35
+ - If the push URL is HTTPS, state that Git Credential Manager/token authentication will be used. Do not convert it silently.
36
+ - Stop if the remote owner/repository conflicts with the user's explicit destination.
37
+
38
+ Read remote state without publishing. If the target branch already exists, fetch normally and stop on a behind/diverged or non-fast-forward state; never repair it with force.
39
+
40
+ ## Safety gates
41
+
42
+ Before committing:
43
+
44
+ 1. Review `git status`, staged file names, and the diff summary.
45
+ 2. Run the repository's secret/security checks and inspect suspicious environment, key, certificate, state, or credential files without printing secret values.
46
+ 3. Block files at or above GitHub's 100 MB hard limit; use Git LFS only when the repository policy explicitly adopts it.
47
+ 4. Run `git diff --cached --check` and the repository's required ZAIP/test gates.
48
+ 5. Ensure ignored files are not accidentally force-added.
49
+
50
+ Do not commit when a gate fails.
51
+
52
+ ## Commit identity
53
+
54
+ Prefix the commit message for the executing agent:
55
+
56
+ | Agent | Prefix |
57
+ | --- | --- |
58
+ | Codex | `[AUTO][CODEX]` |
59
+ | Claude | `[AUTO][CLAUDE]` |
60
+ | Gemini | `[AUTO][GEMINI]` |
61
+ | Roo | `[AUTO][ROO][15 AGENTS]` |
62
+
63
+ Append workspace tags only when the repository defines them and only for workspaces actually changed. Keep the remaining message short and imperative.
64
+
65
+ ## Publish
66
+
67
+ 1. Run `git add -A`.
68
+ 2. Commit when the index is non-empty using the required prefix.
69
+ 3. Push the current branch without SSH overrides:
70
+ - use `git push` when an upstream exists;
71
+ - use `git push -u <remote> <branch>` for the first publication.
72
+ 4. Never use `--force`, `--force-with-lease`, destructive cleanup, or history rewriting.
73
+
74
+ ## Verify and report
75
+
76
+ Run:
77
+
78
+ ```powershell
79
+ git status --short --branch
80
+ git log -1 --oneline
81
+ git remote -v
82
+ ```
83
+
84
+ Confirm the remote branch contains the local commit when practical. Report repository path, branch, remote, effective identity, commit hash/title, and whether the worktree is clean. On failure, report the exact blocker without weakening authentication or safety controls.
@@ -0,0 +1,6 @@
1
+ interface:
2
+ display_name: "ZAIP GitHub Deploy"
3
+ short_description: "Commit and push safely to GitHub"
4
+ default_prompt: "Use $zaip-skill-github-deploy to publish the current repository to GitHub safely."
5
+ policy:
6
+ allow_implicit_invocation: false
@@ -0,0 +1,80 @@
1
+ ---
2
+ name: zaip-skill-github-setup
3
+ description: Set up Git and GitHub for a local project, including repository initialization, GitHub repository creation, attaching an existing remote, folder-scoped Git identity/SSH configuration, and a first local commit. Use when the user explicitly asks to create or configure a GitHub repository or SSH identity; setup alone never authorizes a push.
4
+ ---
5
+
6
+ # Set up GitHub
7
+
8
+ Configure the requested Git/GitHub state idempotently while preserving unrelated repositories and identities. Separate setup, first commit, and publication so that creating or configuring a repository cannot push by accident.
9
+
10
+ ## Select the requested mode
11
+
12
+ Support these independent modes:
13
+
14
+ 1. Initialize Git in an existing folder.
15
+ 2. Create a GitHub repository.
16
+ 3. Attach a local repository to an existing GitHub repository.
17
+ 4. Configure folder-scoped Git identity and SSH.
18
+ 5. Create the first local commit.
19
+ 6. Publish only when the user also explicitly requests deploy/push.
20
+
21
+ Before creating remote state, require the repository owner/name and visibility. Before generating a key, require the intended identity, key path, and passphrase policy. These choices materially affect security and cannot be guessed.
22
+
23
+ ## Inspect before mutation
24
+
25
+ Run applicable checks:
26
+
27
+ ```powershell
28
+ git status --short --branch
29
+ git rev-parse --show-toplevel
30
+ git config --show-origin --get user.name
31
+ git config --show-origin --get user.email
32
+ git config --show-origin --get core.sshCommand
33
+ git remote -v
34
+ gh auth status
35
+ ```
36
+
37
+ Also inspect existing conditional includes and SSH host aliases without printing private-key contents. Preserve all unrelated entries.
38
+
39
+ ## Initialize a local repository
40
+
41
+ - Use `git init -b main` when no repository exists.
42
+ - Review or create an appropriate `.gitignore` before staging.
43
+ - Add `.gitattributes` when byte-stable cross-platform files or checksums require it.
44
+ - Scan for secrets and files above GitHub limits.
45
+ - Do not nest a repository accidentally inside another repository.
46
+
47
+ ## Configure identity and SSH by folder
48
+
49
+ Prefer conditional Git configuration scoped to an absolute folder root rather than changing the active identity globally.
50
+
51
+ 1. Reuse an existing dedicated SSH key when the user selected it.
52
+ 2. Generate a new key only when explicitly requested; never overwrite an existing key or assume an empty passphrase.
53
+ 3. Register only the public key with GitHub, for example through `gh ssh-key add` after confirming the authenticated account.
54
+ 4. Create or update a dedicated identity config containing `user.name`, `user.email`, and—when this is the chosen pattern—`core.sshCommand` with `IdentitiesOnly=yes`.
55
+ 5. Add one idempotent `includeIf "gitdir/i:<absolute-root>/"` entry to the main Git config.
56
+ 6. Alternatively, reuse a pre-existing SSH host alias such as `github-<identity>` and set the remote to that alias. Do not mix patterns unnecessarily.
57
+ 7. Test the configured host/account without inline key overrides.
58
+
59
+ Back up a configuration file before changing it, bound edits to the selected identity/root, and never display private key material.
60
+
61
+ ## Create or attach the GitHub repository
62
+
63
+ - Confirm `gh auth status` matches the selected owner/account.
64
+ - Check whether `<owner>/<repository>` already exists before creation.
65
+ - Create with explicit visibility and without `--push`, using a non-interactive `gh repo create` form supported by the installed CLI.
66
+ - Add `origin` only when absent.
67
+ - If `origin` exists, validate it and stop on a mismatch unless the user explicitly asked to replace it.
68
+ - Prefer SSH when the selected setup is SSH; retain HTTPS when the user selected HTTPS.
69
+
70
+ ## Create the first commit
71
+
72
+ An explicit request for initialization or first commit authorizes `git add -A` and one local commit, including new files, after ignore/secret/size/diff gates pass. Use the agent prefix table from the repository's deploy policy, defaulting to `[AUTO][<AGENT>]`. Do not push merely because a commit was created.
73
+
74
+ ## Publish only when explicit
75
+
76
+ When the same user request explicitly includes deploy/push, read and follow `../zaip-skill-github-deploy/SKILL.md` after setup succeeds. Otherwise finish with the exact push command the user may authorize later.
77
+
78
+ ## Verify and report
79
+
80
+ Verify effective identity origins, current branch, remote URLs, SSH/GitHub account, last commit, and clean/expected worktree state. Report every created or modified local/global config path and remote resource. Never claim publication unless the remote branch was actually updated.
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "ZAIP GitHub Setup"
3
+ short_description: "Configure GitHub repositories and SSH"
4
+ default_prompt: "Use $zaip-skill-github-setup to configure this repository for GitHub safely."
@@ -0,0 +1,13 @@
1
+ ---
2
+ name: zaip-skill-navigate-work
3
+ description: Locate, filter, compare, inspect, and refine pending ZAIP PRDs, SPECs, Changes, Tasks, Executions, and Runs without accidentally starting execution.
4
+ ---
5
+
6
+ # Navegar pelo trabalho
7
+
8
+ 1. Liste artefatos por tipo, estado, data, relação, risco e custo sem carregar o conteúdo completo.
9
+ 2. Mostre a cadeia de relações e um resumo macro antes de abrir detalhes.
10
+ 3. Diferencie claramente `draft`, `prepared`, `executing`, `blocked`, `verifying`, `completed` e `cancelled`.
11
+ 4. Permita refinar ou comparar PRDs/SPECs pendentes sem criar Tasks, Changes, Executions ou Runs.
12
+ 5. Ao selecionar trabalho, carregue apenas artefato ativo, Requirements/AC, Rules, código e testes diretamente relacionados.
13
+
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "ZAIP Work Navigator"
3
+ short_description: "Navigate and select pending work"
4
+ default_prompt: "Use $zaip-skill-navigate-work to locate and refine pending work without starting execution."
@@ -0,0 +1,13 @@
1
+ ---
2
+ name: zaip-skill-prd
3
+ description: Create, compare, refine, prepare, execute, and analyze optional ZAIP PRDs that translate business outcomes into one or more delivery SPECs and task DAGs.
4
+ ---
5
+
6
+ # Trabalhar com PRDs
7
+
8
+ 1. Explore objetivos, usuários, valor, métricas, restrições, hipóteses e riscos sem executar nada.
9
+ 2. Permita múltiplos PRDs pendentes; refine somente os escolhidos e marque descarte/adiamento sem materializar Tasks.
10
+ 3. Decomponha o PRD selecionado em uma ou mais SPECs técnicas, Requirements/AC e uma DAG global.
11
+ 4. Use `prepare` para validar e persistir o plano; só use `execute` após autorização explícita.
12
+ 5. Mostre visão macro por PRD: SPECs, Tasks, Executions, Runs, assertividade, retrabalho, tokens, custo e cobertura por fase.
13
+
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "ZAIP PRD"
3
+ short_description: "Plan and refine optional ZAIP PRDs"
4
+ default_prompt: "Use $zaip-skill-prd to create, refine, or prepare an optional PRD without starting execution."
@@ -0,0 +1,12 @@
1
+ ---
2
+ name: zaip-skill-requirements
3
+ description: Create, inspect, validate, version, and apply ZAIP Requirements and deterministic Acceptance Criteria grouped by system area.
4
+ ---
5
+
6
+ # Manter Requirements
7
+
8
+ 1. Mantenha Requirements pequenos e identificados no arquivo estável da área em `.agents/requirements/<area>.md`.
9
+ 2. Escreva Acceptance Criteria observáveis, determinísticos e identificados; evite termos vagos como “adequado”.
10
+ 3. Faça PRD, SPEC, Change, Task, teste e evidência referenciar IDs, sem duplicar a fonte de verdade.
11
+ 4. Durante implementação, registre o delta proposto na Change; não altere a verdade ativa antes das evidências passarem.
12
+ 5. Ao concluir, aplique o delta de forma versionada e verifique Requirements órfãos, AC sem evidência e referências quebradas.
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "ZAIP Requirements"
3
+ short_description: "Maintain verifiable requirements and ACs"
4
+ default_prompt: "Use $zaip-skill-requirements to create or validate traceable Requirements and Acceptance Criteria."
@@ -0,0 +1,12 @@
1
+ ---
2
+ name: zaip-skill-setup
3
+ description: Install, diagnose, migrate, upgrade, or roll back ZAIP-AIOS V2 configuration, Rules, Requirements, skills, data layout, and legacy compatibility.
4
+ ---
5
+
6
+ # Configurar ZAIP-AIOS
7
+
8
+ 1. Faça dry-run e rejeite conflitos de checksum ou arquivos do usuário.
9
+ 2. Crie ou valide as cinco Rules (`core`, `workflow`, `architecture`, `security`, `context`) e os cinco Requirements de área (`work-lifecycle`, `execution-engine`, `cost-observability`, `kanban-dashboard`, `context-engine`), além de config, skills e data.
10
+ 3. Preserve raízes V1 como legado somente leitura até migração explícita e idempotente.
11
+ 4. Rode doctor, validações de skills, encoding, adapters e evals aplicáveis.
12
+ 5. Repita o dry-run e exija ausência de drift; em upgrade, valide rollback antes de aplicar.
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "ZAIP Setup"
3
+ short_description: "Install or migrate ZAIP-AIOS V2"
4
+ default_prompt: "Use $zaip-skill-setup to install, validate, or migrate a ZAIP-AIOS V2 workspace."
@@ -0,0 +1,12 @@
1
+ ---
2
+ name: zaip-skill-spec
3
+ description: Create, refine, prepare, execute, validate, and complete optional ZAIP delivery SPECs and their task DAGs. Use when technical intent needs a durable plan broader than one task.
4
+ ---
5
+
6
+ # Trabalhar com SPECs
7
+
8
+ 1. Confirme que uma SPEC agrega valor; Task-first continua válida para trabalho pontual.
9
+ 2. Registre escopo, fora de escopo, Requirements/AC, riscos, DAG, critérios de paralelismo e orçamento.
10
+ 3. Use `prepare` para validar e persistir o plano com IDs pré-alocados; não crie trabalho executável.
11
+ 4. Só após pedido explícito, use `execute` para materializar Changes, Tasks e Execution de forma idempotente.
12
+ 5. Acompanhe o resultado macro da SPEC agregando todas as Tasks, Executions, Runs, evidências, tokens e custos.
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "ZAIP SPEC"
3
+ short_description: "Plan and execute optional delivery SPECs"
4
+ default_prompt: "Use $zaip-skill-spec to create, refine, prepare, or execute an optional technical SPEC."
@@ -0,0 +1,13 @@
1
+ ---
2
+ name: zaip-skill-task
3
+ description: Plan, prepare, execute, verify, and complete ZAIP task-first work or tasks inside a dependency DAG, including Changes, Executions, Runs, evidence, and costs.
4
+ ---
5
+
6
+ # Executar Tasks
7
+
8
+ 1. Diferencie conversa, planejamento e execução; não transforme pergunta sem mutação em Task automaticamente.
9
+ 2. Para Task-first, prepare um plano direto sem criar PRD ou SPEC sintéticas.
10
+ 3. Em `execute`, materialize Change, Task e Execution antes da primeira mutação; selecione apenas Task pronta na DAG.
11
+ 4. Implemente com contexto focado e registre decisões humanas e da IA junto da Change/Execution.
12
+ 5. Valide cada Acceptance Criterion com teste/eval/evidência determinística e derive o ledger do Git diff.
13
+ 6. Conclua somente após preencher resultado, cobertura de custo e evidências; bloqueios devem informar causa e próximo passo.
@@ -0,0 +1,4 @@
1
+ interface:
2
+ display_name: "ZAIP Task"
3
+ short_description: "Execute traceable Tasks and DAGs"
4
+ default_prompt: "Use $zaip-skill-task to plan, execute, and verify task-first work or a Task in a DAG."
@@ -0,0 +1,27 @@
1
+ ---
2
+ name: zaip-skill-text-encoding
3
+ description: Detect, prevent, and fix UTF-8 and mojibake issues in ZAIP repositories. Use when UI copy, docs, rules, skills, Markdown, JSON, HTML, CSS, or TypeScript text shows broken accents, malformed Portuguese diacritics, replacement-character corruption, or other encoding regressions, or when text files need guardrails against encoding corruption.
4
+ ---
5
+
6
+ # Protect text encoding
7
+
8
+ 1. Search changed text files for mojibake patterns and replacement-character corruption.
9
+ 2. Correct stored strings to the intended UTF-8 text; do not patch symptoms in the UI only.
10
+ 3. Save text source files as UTF-8.
11
+ 4. Run `node scripts/validate-text-encoding.mjs`.
12
+ 5. If the validator fails, fix every reported line before completion.
13
+
14
+ ## Targets
15
+
16
+ - `apps/kanban/src`
17
+ - `apps/kanban/index.html`
18
+ - `.agents/rules`
19
+ - `.agents/requirements`
20
+ - `.agents/skills`
21
+ - `docs`
22
+ - `plan-create-zaip-aios`
23
+
24
+ ## Notes
25
+
26
+ - Prefer exact intended Portuguese text with preserved diacritics.
27
+ - If a script or shell command rewrites a text file, re-open the file and verify the stored characters, not only the rendered browser result.
@@ -0,0 +1,6 @@
1
+ interface:
2
+ display_name: "ZAIP Text Encoding"
3
+ short_description: "Fix and prevent mojibake and UTF-8 regressions"
4
+ default_prompt: "Use $zaip-skill-text-encoding to detect, fix, and prevent broken accents or UTF-8 issues in this repository."
5
+ policy:
6
+ allow_implicit_invocation: true
@@ -0,0 +1,208 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "templateVersion": "0.2.0",
4
+ "minimumCliVersion": "0.1.0",
5
+ "source": ".agents allowlist: rules, requirements, skills; generated V2 config and empty data roots",
6
+ "files": [
7
+ {
8
+ "path": ".agents/config/framework.lock.yaml",
9
+ "sha256": "3e065d344e1e3179235a70d9477ed8102b62521ad656fd02ab6a48272c004d56"
10
+ },
11
+ {
12
+ "path": ".agents/config/project.yaml",
13
+ "sha256": "32e34628157267467a2d16656843e8af45f963f411a057880654521f5562558a"
14
+ },
15
+ {
16
+ "path": ".agents/data/changes/.gitkeep",
17
+ "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
18
+ },
19
+ {
20
+ "path": ".agents/data/executions/.gitkeep",
21
+ "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
22
+ },
23
+ {
24
+ "path": ".agents/data/prds/.gitkeep",
25
+ "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
26
+ },
27
+ {
28
+ "path": ".agents/data/runs/.gitkeep",
29
+ "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
30
+ },
31
+ {
32
+ "path": ".agents/data/specs/.gitkeep",
33
+ "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
34
+ },
35
+ {
36
+ "path": ".agents/data/tasks/.gitkeep",
37
+ "sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
38
+ },
39
+ {
40
+ "path": ".agents/requirements/context-engine.md",
41
+ "sha256": "8c923ceafc846939f0862717f650483f1d9791cf374445beceb455cca969768d"
42
+ },
43
+ {
44
+ "path": ".agents/requirements/cost-observability.md",
45
+ "sha256": "25f4809464357ac17c092dd72733573942df47297f54ca68163314c74a80d3da"
46
+ },
47
+ {
48
+ "path": ".agents/requirements/execution-engine.md",
49
+ "sha256": "59450ecd92e77822d920854faf73a01325bf77d117733d2d6b69b561343110f9"
50
+ },
51
+ {
52
+ "path": ".agents/requirements/kanban-dashboard.md",
53
+ "sha256": "67b507a01c60c175374796e4ca98887057086204a93609a31387e6b960d772f1"
54
+ },
55
+ {
56
+ "path": ".agents/requirements/work-lifecycle.md",
57
+ "sha256": "c7b836c5235d9760676b3fd55774ab0c50338181f40277842e072a2263f65de2"
58
+ },
59
+ {
60
+ "path": ".agents/rules/architecture.md",
61
+ "sha256": "04d0f3220e7d2e0b54e804b2d0ae2b18a799530e28b2a8887b3180dd44c7b42b"
62
+ },
63
+ {
64
+ "path": ".agents/rules/context.md",
65
+ "sha256": "0733590ee15bc1ea6705083d0983f7fe58244f46c35bbdd5f8a9d2d01251c64b"
66
+ },
67
+ {
68
+ "path": ".agents/rules/core.md",
69
+ "sha256": "70902cc056630e9b6ef8e73e0d87da3b7e70e833c6756ddf9a4241933b2890c7"
70
+ },
71
+ {
72
+ "path": ".agents/rules/security.md",
73
+ "sha256": "49738d131fc3d6770638b5d5837e314f3ea4fce4c6369aea4ed3f12de50f8a92"
74
+ },
75
+ {
76
+ "path": ".agents/rules/workflow.md",
77
+ "sha256": "23d651240ea3aeada632f1ce715c25ef09f37f235d71b1ba56edd80bfaf8de56"
78
+ },
79
+ {
80
+ "path": ".agents/skills/zaip-skill-adapt-stack/agents/openai.yaml",
81
+ "sha256": "b11b1fa7290d1c88b4cf8374ee12d6f4120848379017c6d64a05c4c7c2b0455c"
82
+ },
83
+ {
84
+ "path": ".agents/skills/zaip-skill-adapt-stack/SKILL.md",
85
+ "sha256": "ff9883cba1bc20f5caf000f032ed257a93beafd023bbafcec723529071fd1929"
86
+ },
87
+ {
88
+ "path": ".agents/skills/zaip-skill-adapters/agents/openai.yaml",
89
+ "sha256": "2a24476ea206cda49cf3adb291058cbf77f07714b35cc6391e6e5c03603ff9b3"
90
+ },
91
+ {
92
+ "path": ".agents/skills/zaip-skill-adapters/SKILL.md",
93
+ "sha256": "c4e8ad8763cca69c155a65a5daac50a41626244f7fe471585eb2fe6e921afb31"
94
+ },
95
+ {
96
+ "path": ".agents/skills/zaip-skill-context/agents/openai.yaml",
97
+ "sha256": "89759a18f1c823ab4e9c1710df4173a6122f7a40dc09bd27bb08c003642a0313"
98
+ },
99
+ {
100
+ "path": ".agents/skills/zaip-skill-context/SKILL.md",
101
+ "sha256": "9b99977c44f5f28904b5b910e1823adf1654ab86837329d80f2dc494ea3b1171"
102
+ },
103
+ {
104
+ "path": ".agents/skills/zaip-skill-cqrs/agents/openai.yaml",
105
+ "sha256": "7234ed1f401236d77e16470648ce5aba263a1bd6eeeb462de984e3e9087e5754"
106
+ },
107
+ {
108
+ "path": ".agents/skills/zaip-skill-cqrs/SKILL.md",
109
+ "sha256": "4706cd5aee9631d1fa1696eb5b82aea083516c4f9c3a9b59aa54dd85678ca779"
110
+ },
111
+ {
112
+ "path": ".agents/skills/zaip-skill-decisions/agents/openai.yaml",
113
+ "sha256": "042618d1afbc493b5f675d399729080a0958fa3651528c5d75d48ee29f6b79bd"
114
+ },
115
+ {
116
+ "path": ".agents/skills/zaip-skill-decisions/SKILL.md",
117
+ "sha256": "4406ddc7852f25e1d95f5eaf40b423a4ae1fec337caf2638d960a5729b48dc6d"
118
+ },
119
+ {
120
+ "path": ".agents/skills/zaip-skill-enforce-architecture/agents/openai.yaml",
121
+ "sha256": "91c1a5041576ac7286c97715e94489632dabf796ae8958d2a3e2499a45d46d8c"
122
+ },
123
+ {
124
+ "path": ".agents/skills/zaip-skill-enforce-architecture/SKILL.md",
125
+ "sha256": "d39f250f7c46b70fb894550e0dbdf83cc9a370fe1f62e16359c730733a225619"
126
+ },
127
+ {
128
+ "path": ".agents/skills/zaip-skill-eval/agents/openai.yaml",
129
+ "sha256": "7e213597f235823ea7469687602b49331d71b470abf9d325cc8acb6db2561e39"
130
+ },
131
+ {
132
+ "path": ".agents/skills/zaip-skill-eval/SKILL.md",
133
+ "sha256": "14a60b5372aca8e162b541c52a1d9ab5e01228395fdfe7cda0a3f0b3af2489a7"
134
+ },
135
+ {
136
+ "path": ".agents/skills/zaip-skill-github-deploy/agents/openai.yaml",
137
+ "sha256": "f66eaf4f7e8a24cf901b98549fa5895a78b62118c9dfdd9e9d39b90179c2df1c"
138
+ },
139
+ {
140
+ "path": ".agents/skills/zaip-skill-github-deploy/SKILL.md",
141
+ "sha256": "af4678d80db1f28937cebcb1c331429580996572f25840aebafcdeb7bd5497d5"
142
+ },
143
+ {
144
+ "path": ".agents/skills/zaip-skill-github-setup/agents/openai.yaml",
145
+ "sha256": "fd7f39a454503017663adbe929e20a0e82309da1bdd31dc3581599e9277d3afb"
146
+ },
147
+ {
148
+ "path": ".agents/skills/zaip-skill-github-setup/SKILL.md",
149
+ "sha256": "8fcdb77604b530d777ba1030779a64ee86547637f182dd0ef82e81fdce4c8033"
150
+ },
151
+ {
152
+ "path": ".agents/skills/zaip-skill-navigate-work/agents/openai.yaml",
153
+ "sha256": "1b6fe67d433d2e758176b89004604df49c40c7797411116073094038f974d19a"
154
+ },
155
+ {
156
+ "path": ".agents/skills/zaip-skill-navigate-work/SKILL.md",
157
+ "sha256": "e61b8307b333f8080d89e299542cf66ba6370f222dbb603ce8f46760209b0939"
158
+ },
159
+ {
160
+ "path": ".agents/skills/zaip-skill-prd/agents/openai.yaml",
161
+ "sha256": "c258e28313693ac961805246c8050a13e44cd2a4645643db2dd141fe8d7060c0"
162
+ },
163
+ {
164
+ "path": ".agents/skills/zaip-skill-prd/SKILL.md",
165
+ "sha256": "392756480d8e045610466bc2e7a93dc05535f415db146f5ac83218eedd97f2e7"
166
+ },
167
+ {
168
+ "path": ".agents/skills/zaip-skill-requirements/agents/openai.yaml",
169
+ "sha256": "a7c2ca45f78e4997836eeeb79dd8fa42dd64aada556610f88e9d28fba4fac94e"
170
+ },
171
+ {
172
+ "path": ".agents/skills/zaip-skill-requirements/SKILL.md",
173
+ "sha256": "7068f451734254ad75aa92316a90a9e57d6c15ce88ab59a46fea19df2e1604e5"
174
+ },
175
+ {
176
+ "path": ".agents/skills/zaip-skill-setup/agents/openai.yaml",
177
+ "sha256": "5ee911739b52d13eb75ef992c6804597742ee46677716d1366973d27bcfc40ce"
178
+ },
179
+ {
180
+ "path": ".agents/skills/zaip-skill-setup/SKILL.md",
181
+ "sha256": "1807531a8e8d61af58ccfe77131105ac1616bad1cd313578f1f249cedce729d4"
182
+ },
183
+ {
184
+ "path": ".agents/skills/zaip-skill-spec/agents/openai.yaml",
185
+ "sha256": "2a4d290d950156eda74c4769792466a5cd222cb9b92ca3e6662080a2de79fef9"
186
+ },
187
+ {
188
+ "path": ".agents/skills/zaip-skill-spec/SKILL.md",
189
+ "sha256": "4630573f50e832e7cf82a18f1aef0079b9b41c4950d77e8eb30f4e92becc88c2"
190
+ },
191
+ {
192
+ "path": ".agents/skills/zaip-skill-task/agents/openai.yaml",
193
+ "sha256": "256ff696e487ed16b6a4a0fee439a0a5180e10ce7fa7e2442cfe2b130fbf728f"
194
+ },
195
+ {
196
+ "path": ".agents/skills/zaip-skill-task/SKILL.md",
197
+ "sha256": "e8fb450d36e529f5469efaf8a70633593e044033b1047f3c785cecb879b3c42f"
198
+ },
199
+ {
200
+ "path": ".agents/skills/zaip-skill-text-encoding/agents/openai.yaml",
201
+ "sha256": "af46ead1387f1659a1522a96a0cca5822b689ee3aa74314a1c4c264683e13fff"
202
+ },
203
+ {
204
+ "path": ".agents/skills/zaip-skill-text-encoding/SKILL.md",
205
+ "sha256": "171d20e803fa688bb5e3a77ff62d22c3c75d8fb3d5cd9d31f170e7389b15d2b3"
206
+ }
207
+ ]
208
+ }