create-agentic-workspace 0.15.1 → 0.16.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 +11 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-agentic-workspace",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.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.16.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.16.0",
|
|
5
5
|
"entries": [
|
|
6
6
|
{
|
|
7
7
|
"rule": "Bash(~/.claude/plugins/cache/*/foundry/*/scripts/foundry-acceptance-contract-validate.py:*)",
|
|
@@ -298,6 +298,16 @@
|
|
|
298
298
|
"tier": "ask",
|
|
299
299
|
"rationale": "ceremony: --create arrives after other args, not prefix-keyable, so the whole script is ask"
|
|
300
300
|
},
|
|
301
|
+
{
|
|
302
|
+
"rule": "Bash(~/.claude/plugins/cache/*/foundry/*/scripts/foundry-worktree-gc.py --dry-run:*)",
|
|
303
|
+
"tier": "allow",
|
|
304
|
+
"rationale": "read-only classification of every worktree/branch matching the discipline's naming glob; --apply below is the deletion tier (branch-and-worktree-discipline, AC-BWD-2)"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"rule": "Bash(~/.claude/plugins/cache/*/foundry/*/scripts/foundry-worktree-gc.py --apply:*)",
|
|
308
|
+
"tier": "ask",
|
|
309
|
+
"rationale": "deletes the merged class's worktrees + local (git branch -d, falling back to -D only on that refusal, narrated) AND remote branches (git worktree remove, git push origin --delete) -- a repo-state mutation, ask like foundry-merge-when-green.py's own merge call, never a self-grant"
|
|
310
|
+
},
|
|
301
311
|
{
|
|
302
312
|
"rule": "Bash(~/.claude/plugins/cache/*/foundry/*/scripts/foundry_command_deck.py:*)",
|
|
303
313
|
"tier": "allow",
|