@cassiomc1/forgeloop 1.6.1 → 1.6.2

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 CHANGED
@@ -74,11 +74,34 @@ frontmatter. Repository validators keep the catalog and metadata synchronized.
74
74
 
75
75
  ## Quickstart
76
76
 
77
- ### Demonstração em 60 segundos
77
+ ### Installation
78
78
 
79
- Em um diretório descartável, inicialize o kit e crie uma tarefa isolada. O
80
- resultado é determinístico e pode ser inspecionado por qualquer harness
81
- compatível:
79
+ Install the ForgeLoop CLI globally to make the `forgeloop` command available
80
+ in your terminal:
81
+
82
+ ```bash
83
+ npm install --global @cassiomc1/forgeloop
84
+ forgeloop --version
85
+ ```
86
+
87
+ Then, inside your project repository:
88
+
89
+ ```bash
90
+ forgeloop init
91
+ forgeloop doctor
92
+ ```
93
+
94
+ If you prefer not to install globally, use `npx`:
95
+
96
+ ```bash
97
+ npx @cassiomc1/forgeloop init
98
+ npx @cassiomc1/forgeloop doctor
99
+ ```
100
+
101
+ ### 60-second demonstration
102
+
103
+ In a disposable directory, initialize the kit and create an isolated task. The
104
+ result is deterministic and can be inspected by any compatible harness:
82
105
 
83
106
  ```bash
84
107
  npx @cassiomc1/forgeloop init
@@ -88,20 +111,20 @@ forgeloop preflight --task demo --json
88
111
  forgeloop next --task demo --json
89
112
  ```
90
113
 
91
- O último comando informa a ação segura seguinte; ele não executa código nem
92
- agenda agentes.
114
+ The last command reports the next safe action; it does not execute code or
115
+ schedule agents.
93
116
 
94
- ### Ações externas duráveis
117
+ ### Durable external actions
95
118
 
96
- Para efeitos externos, registre a intenção com `action-propose`, aplique a
97
- política de capacidade e a aprovação vinculada ao fingerprint, e execute apenas
98
- com `run-action` usando argv exato. Um resultado `COMMIT_UNKNOWN` nunca é
99
- repetido automaticamente: observe o sistema externo e use `action-reconcile`.
100
- As métricas mantêm tokens/custos como desconhecidos quando o host não os
101
- fornece, e eficiência existe quando um cenário de referência foi declarado.
119
+ For external effects, record intent with `action-propose`, apply the capability
120
+ policy and fingerprint-bound approval, and execute only with `run-action` using
121
+ the exact argv. A `COMMIT_UNKNOWN` result is never repeated automatically:
122
+ observe the external system and use `action-reconcile`. Metrics keep
123
+ tokens/costs unknown when the host does not provide them, and efficiency exists
124
+ only when a reference scenario has been declared.
102
125
 
103
- Antes de um harness criar ou retomar uma tarefa, ele pode confirmar a
104
- compatibilidade pública sem depender de detalhes internos:
126
+ Before a harness creates or resumes a task, it can confirm public compatibility
127
+ without depending on internal details:
105
128
 
106
129
  <!-- FORGELOOP EXAMPLE: readme:compatibility | exit=0 | json.protocolVersion=1 -->
107
130
  ```bash
@@ -109,18 +132,18 @@ forgeloop protocol-info --json
109
132
  ```
110
133
  <!-- END FORGELOOP EXAMPLE -->
111
134
 
112
- ### Responsabilidades
135
+ ### Responsibilities
113
136
 
114
- | Responsabilidade | ForgeLoop | Harness ou desenvolvedor |
137
+ | Responsibility | ForgeLoop | Harness or developer |
115
138
  | --- | --- | --- |
116
- | Validar contrato e rotas | Sim | Fornece intenção e sinais |
117
- | Implementar código | Não | Sim |
118
- | Registrar proveniência de comando | Sim, com `run-check` | Fornece comando e ambiente |
119
- | Validar conclusão | Sim | Fornece trabalho e evidência reais |
120
- | Agendar agentes ou inferência LLM | Não | Externo ao protocolo |
121
-
122
- Para uma troca concreta entre ferramentas, veja a
123
- [continuidade entre harnesses](./docs/CROSS_HARNESS_CONTINUITY.md).
139
+ | Validate contract and routes | Yes | Provides intent and signals |
140
+ | Implement code | No | Yes |
141
+ | Record command provenance | Yes, with `run-check` | Provides command and environment |
142
+ | Validate completion | Yes | Provides real work and evidence |
143
+ | Schedule agents or LLM inference | No | External to the protocol |
144
+
145
+ For a concrete exchange between tools, see
146
+ [cross-harness continuity](./docs/CROSS_HARNESS_CONTINUITY.md).
124
147
 
125
148
  From a published package, initialize a target project with:
126
149
 
@@ -37,6 +37,16 @@ Core mental model:
37
37
 
38
38
  ## 3. Installation & Initialization
39
39
 
40
+ ### Global installation
41
+
42
+ Install the ForgeLoop CLI globally to make the `forgeloop` command available
43
+ in your terminal:
44
+
45
+ ```bash
46
+ npm install --global @cassiomc1/forgeloop
47
+ forgeloop --version
48
+ ```
49
+
40
50
  In your project repository:
41
51
 
42
52
  Confirm the installed CLI exposes the compatible protocol before creating
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cassiomc1/forgeloop",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "Portable, verifiable engineering protocol for AI coding environments and developer workflows",
5
5
  "repository": {
6
6
  "type": "git",