create-agentic-workspace 0.13.0 → 0.14.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.
- package/package.json +2 -2
- package/permission-floor.json +20 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-agentic-workspace",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"description": "The pre-session bootstrap wizard for an Agentic Foundry workspace: declares (never grants) the permission floor, absorbs foundry-bootstrap.sh's out-of-session identity wiring, and scaffolds a seven-file schema-valid workspace. Zero dependencies, no lifecycle scripts, no telemetry.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"marketplace_name": "agentic-foundry",
|
|
35
35
|
"marketplace_repo": "lukasrepublic/agentic-foundry",
|
|
36
36
|
"plugin_name": "foundry",
|
|
37
|
-
"plugin_version": "1.
|
|
37
|
+
"plugin_version": "1.14.0",
|
|
38
38
|
"pins_researched": "2026-08-02"
|
|
39
39
|
}
|
|
40
40
|
}
|
package/permission-floor.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": 1,
|
|
3
3
|
"plugin_root_glob": "~/.claude/plugins/cache/*/foundry/*",
|
|
4
|
-
"generated_for_plugin_version": "1.
|
|
4
|
+
"generated_for_plugin_version": "1.14.0",
|
|
5
5
|
"entries": [
|
|
6
6
|
{
|
|
7
7
|
"rule": "Bash(~/.claude/plugins/cache/*/foundry/*/scripts/foundry-acceptance-contract-validate.py:*)",
|
|
@@ -98,6 +98,11 @@
|
|
|
98
98
|
"tier": "allow",
|
|
99
99
|
"rationale": "read-only machinery index derived on demand from skills/agents frontmatter"
|
|
100
100
|
},
|
|
101
|
+
{
|
|
102
|
+
"rule": "Bash(~/.claude/plugins/cache/*/foundry/*/scripts/foundry-manifest-to-tasklist.py:*)",
|
|
103
|
+
"tier": "allow",
|
|
104
|
+
"rationale": "read-only projection of a release manifest into a TaskCreate plan; prints JSON, executes nothing"
|
|
105
|
+
},
|
|
101
106
|
{
|
|
102
107
|
"rule": "Bash(~/.claude/plugins/cache/*/foundry/*/scripts/foundry-native-todo-discipline.py:*)",
|
|
103
108
|
"tier": "allow",
|
|
@@ -208,6 +213,11 @@
|
|
|
208
213
|
"tier": "allow",
|
|
209
214
|
"rationale": "read-only intake schema-defect / grounding checker over a project dir"
|
|
210
215
|
},
|
|
216
|
+
{
|
|
217
|
+
"rule": "Bash(~/.claude/plugins/cache/*/foundry/*/scripts/foundry_message_kind.py:*)",
|
|
218
|
+
"tier": "allow",
|
|
219
|
+
"rationale": "deterministic outgoing cross-session message lint (fleet-is-listagents, AC-FIL-3): reads its --in argument, checks the first line against the closed FINDING|NEEDS-INTERFACE|CHALLENGE|HANDOFF vocabulary and HANDOFF's json shape against schema/blocker.schema.json, prints a JSON verdict; writes nothing"
|
|
220
|
+
},
|
|
211
221
|
{
|
|
212
222
|
"rule": "Bash(~/.claude/plugins/cache/*/foundry/*/scripts/foundry_repo_fleet.py status:*)",
|
|
213
223
|
"tier": "allow",
|
|
@@ -228,6 +238,11 @@
|
|
|
228
238
|
"tier": "allow",
|
|
229
239
|
"rationale": "session-scoped mode/fork-policy set-and-resolve state-writer; not a release/repo ceremony"
|
|
230
240
|
},
|
|
241
|
+
{
|
|
242
|
+
"rule": "Bash(~/.claude/plugins/cache/*/foundry/*/scripts/foundry-routine-wake-prompt.py:*)",
|
|
243
|
+
"tier": "allow",
|
|
244
|
+
"rationale": "routine-wake (autonomy-continuation R3, AC-RWK-1): validates <programme>/--deck-name as [a-z0-9-]+ slugs and prints the self-contained Routine prompt plus the /schedule recipe and prerequisites; reads no corpus state and writes nothing"
|
|
245
|
+
},
|
|
231
246
|
{
|
|
232
247
|
"rule": "Bash(claude plugin tag:*)",
|
|
233
248
|
"tier": "ask",
|
|
@@ -382,6 +397,10 @@
|
|
|
382
397
|
"script": "foundry_contract.py",
|
|
383
398
|
"rationale": "library: no argparse/__main__; acceptance-contract schema/hash helpers imported by other scripts"
|
|
384
399
|
},
|
|
400
|
+
{
|
|
401
|
+
"script": "foundry_floor_hooks.py",
|
|
402
|
+
"rationale": "library: no argparse/__main__; shared subject-parsing/authorization/evidence helpers imported by hooks/foundry-task-created.py and hooks/foundry-task-completed.py"
|
|
403
|
+
},
|
|
385
404
|
{
|
|
386
405
|
"script": "foundry_graph.py",
|
|
387
406
|
"rationale": "library: no argparse/__main__; citation-graph primitives imported by the graph CLIs"
|