project-iris 0.0.6 → 0.0.8
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 +41 -31
- package/dist/bridge/filesystem-connector.js +9 -4
- package/dist/bridge/helper.js +203 -0
- package/dist/bridge/types.js +1 -1
- package/dist/cli.js +1 -1
- package/dist/commands/ask.js +35 -135
- package/dist/commands/bridge.js +13 -192
- package/dist/commands/develop.js +82 -49
- package/dist/commands/doctor.js +13 -13
- package/dist/commands/install.js +4 -4
- package/dist/commands/pack.js +1 -1
- package/dist/commands/phase.js +1 -1
- package/dist/commands/status.js +1 -1
- package/dist/iris/guard.js +3 -3
- package/dist/iris/packer.js +1 -1
- package/dist/workflows/reporting.js +74 -0
- package/package.json +3 -2
- package/src/iris_bundle/.iris/tools/antigravity/.antigravity/knowledge/IRIS.md +0 -6
- package/src/iris_bundle/.iris/tools/antigravity/.antigravity/workflows/iris-construction-agent.md +0 -25
- package/src/iris_bundle/.iris/tools/antigravity/.antigravity/workflows/iris-inception-agent.md +0 -25
- package/src/iris_bundle/.iris/tools/antigravity/.antigravity/workflows/iris-master-agent.md +0 -25
- package/src/iris_bundle/.iris/tools/antigravity/.antigravity/workflows/iris-operations-agent.md +0 -25
package/src/iris_bundle/.iris/tools/antigravity/.antigravity/workflows/iris-construction-agent.md
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# Iris Construction Agent
|
|
2
|
-
|
|
3
|
-
## What this does
|
|
4
|
-
Runs the IRIS **Construction** agent using the canonical IRIS doctrine in `.iris/aidlc/`.
|
|
5
|
-
|
|
6
|
-
## REQUIRED context (load in this order)
|
|
7
|
-
1. `.iris/aidlc/context/load-order.md`
|
|
8
|
-
2. `.iris/aidlc/standards/phases-and-gates.md`
|
|
9
|
-
3. `.iris/aidlc/standards/artifacts-registry.md`
|
|
10
|
-
4. `.iris/aidlc/validation/phase-preconditions.md`
|
|
11
|
-
5. `.iris/aidlc/commands/iris-construction-agent.md`
|
|
12
|
-
6. Repo project signals (if present): `specs.md`, `README.md`, `package.json`, `tsconfig.json`, relevant `src/**`
|
|
13
|
-
7. Phase memory-bank artifacts:
|
|
14
|
-
- Inception: `memory-bank/intents/**`
|
|
15
|
-
- Construction: `memory-bank/units/**`, `memory-bank/bolts/**`
|
|
16
|
-
- Operations: `memory-bank/logs/**`, `memory-bank/standards/**`
|
|
17
|
-
|
|
18
|
-
## Hard rules
|
|
19
|
-
- MUST create/update artifacts in `memory-bank/` using templates in `.iris/aidlc/templates/`.
|
|
20
|
-
- MUST stop if required artifacts for the phase are missing and ask to create them.
|
|
21
|
-
- MUST keep outputs deterministic: numbered steps, explicit file paths, and acceptance criteria.
|
|
22
|
-
- MUST NOT delete files unless the user explicitly requests it.
|
|
23
|
-
|
|
24
|
-
## Start
|
|
25
|
-
Execute `.iris/aidlc/commands/iris-construction-agent.md`.
|
package/src/iris_bundle/.iris/tools/antigravity/.antigravity/workflows/iris-inception-agent.md
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# Iris Inception Agent
|
|
2
|
-
|
|
3
|
-
## What this does
|
|
4
|
-
Runs the IRIS **Inception** agent using the canonical IRIS doctrine in `.iris/aidlc/`.
|
|
5
|
-
|
|
6
|
-
## REQUIRED context (load in this order)
|
|
7
|
-
1. `.iris/aidlc/context/load-order.md`
|
|
8
|
-
2. `.iris/aidlc/standards/phases-and-gates.md`
|
|
9
|
-
3. `.iris/aidlc/standards/artifacts-registry.md`
|
|
10
|
-
4. `.iris/aidlc/validation/phase-preconditions.md`
|
|
11
|
-
5. `.iris/aidlc/commands/iris-inception-agent.md`
|
|
12
|
-
6. Repo project signals (if present): `specs.md`, `README.md`, `package.json`, `tsconfig.json`, relevant `src/**`
|
|
13
|
-
7. Phase memory-bank artifacts:
|
|
14
|
-
- Inception: `memory-bank/intents/**`
|
|
15
|
-
- Construction: `memory-bank/units/**`, `memory-bank/bolts/**`
|
|
16
|
-
- Operations: `memory-bank/logs/**`, `memory-bank/standards/**`
|
|
17
|
-
|
|
18
|
-
## Hard rules
|
|
19
|
-
- MUST create/update artifacts in `memory-bank/` using templates in `.iris/aidlc/templates/`.
|
|
20
|
-
- MUST stop if required artifacts for the phase are missing and ask to create them.
|
|
21
|
-
- MUST keep outputs deterministic: numbered steps, explicit file paths, and acceptance criteria.
|
|
22
|
-
- MUST NOT delete files unless the user explicitly requests it.
|
|
23
|
-
|
|
24
|
-
## Start
|
|
25
|
-
Execute `.iris/aidlc/commands/iris-inception-agent.md`.
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# Iris Master Agent
|
|
2
|
-
|
|
3
|
-
## What this does
|
|
4
|
-
Runs the IRIS **Master** agent using the canonical IRIS doctrine in `.iris/aidlc/`.
|
|
5
|
-
|
|
6
|
-
## REQUIRED context (load in this order)
|
|
7
|
-
1. `.iris/aidlc/context/load-order.md`
|
|
8
|
-
2. `.iris/aidlc/standards/phases-and-gates.md`
|
|
9
|
-
3. `.iris/aidlc/standards/artifacts-registry.md`
|
|
10
|
-
4. `.iris/aidlc/validation/phase-preconditions.md`
|
|
11
|
-
5. `.iris/aidlc/commands/iris-master-agent.md`
|
|
12
|
-
6. Repo project signals (if present): `specs.md`, `README.md`, `package.json`, `tsconfig.json`, relevant `src/**`
|
|
13
|
-
7. Phase memory-bank artifacts:
|
|
14
|
-
- Inception: `memory-bank/intents/**`
|
|
15
|
-
- Construction: `memory-bank/units/**`, `memory-bank/bolts/**`
|
|
16
|
-
- Operations: `memory-bank/logs/**`, `memory-bank/standards/**`
|
|
17
|
-
|
|
18
|
-
## Hard rules
|
|
19
|
-
- MUST create/update artifacts in `memory-bank/` using templates in `.iris/aidlc/templates/`.
|
|
20
|
-
- MUST stop if required artifacts for the phase are missing and ask to create them.
|
|
21
|
-
- MUST keep outputs deterministic: numbered steps, explicit file paths, and acceptance criteria.
|
|
22
|
-
- MUST NOT delete files unless the user explicitly requests it.
|
|
23
|
-
|
|
24
|
-
## Start
|
|
25
|
-
Execute `.iris/aidlc/commands/iris-master-agent.md`.
|
package/src/iris_bundle/.iris/tools/antigravity/.antigravity/workflows/iris-operations-agent.md
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# Iris Operations Agent
|
|
2
|
-
|
|
3
|
-
## What this does
|
|
4
|
-
Runs the IRIS **Operations** agent using the canonical IRIS doctrine in `.iris/aidlc/`.
|
|
5
|
-
|
|
6
|
-
## REQUIRED context (load in this order)
|
|
7
|
-
1. `.iris/aidlc/context/load-order.md`
|
|
8
|
-
2. `.iris/aidlc/standards/phases-and-gates.md`
|
|
9
|
-
3. `.iris/aidlc/standards/artifacts-registry.md`
|
|
10
|
-
4. `.iris/aidlc/validation/phase-preconditions.md`
|
|
11
|
-
5. `.iris/aidlc/commands/iris-operations-agent.md`
|
|
12
|
-
6. Repo project signals (if present): `specs.md`, `README.md`, `package.json`, `tsconfig.json`, relevant `src/**`
|
|
13
|
-
7. Phase memory-bank artifacts:
|
|
14
|
-
- Inception: `memory-bank/intents/**`
|
|
15
|
-
- Construction: `memory-bank/units/**`, `memory-bank/bolts/**`
|
|
16
|
-
- Operations: `memory-bank/logs/**`, `memory-bank/standards/**`
|
|
17
|
-
|
|
18
|
-
## Hard rules
|
|
19
|
-
- MUST create/update artifacts in `memory-bank/` using templates in `.iris/aidlc/templates/`.
|
|
20
|
-
- MUST stop if required artifacts for the phase are missing and ask to create them.
|
|
21
|
-
- MUST keep outputs deterministic: numbered steps, explicit file paths, and acceptance criteria.
|
|
22
|
-
- MUST NOT delete files unless the user explicitly requests it.
|
|
23
|
-
|
|
24
|
-
## Start
|
|
25
|
-
Execute `.iris/aidlc/commands/iris-operations-agent.md`.
|