update-agentic-workspace 0.1.5 → 0.1.6

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 (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -51,7 +51,9 @@ and want it to stay that way, disable it again after the update, or migrate that
51
51
  previewed.
52
52
  4. **Reinitialization** — the same never-clobber managed-file reconcile and additive permission-floor
53
53
  reconcile `create-agentic-workspace --existing` already implements: an operator-edited file is
54
- reported drifted and left byte-identical, never overwritten.
54
+ reported drifted and left byte-identical, never overwritten. `.gitignore`'s own managed-block
55
+ reconcile runs here too, so a workspace that predates a later block content change catches up on
56
+ the next update run rather than staying stuck on whatever it was scaffolded with.
55
57
 
56
58
  Every run previews every `claude` invocation and every path it will touch **before** the first one
57
59
  happens, and ends with a per-phase summary (`changed` / `already current` / `skipped: <reason>`).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "update-agentic-workspace",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "One command to bring an installed Agentic Foundry workspace current: refresh the plugin marketplace (migrating a pre-v1.7.0 tag-pinned registration if found), update the plugin in every scope that enables it, and re-run the workspace + permission-floor reconcile. A thin wrapper: every shared module is resolved from create-agentic-workspace at an exact version — no vendored second copy.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -25,7 +25,7 @@
25
25
  "README.md"
26
26
  ],
27
27
  "dependencies": {
28
- "create-agentic-workspace": "0.12.1"
28
+ "create-agentic-workspace": "0.13.0"
29
29
  },
30
30
  "scripts": {
31
31
  "test": "echo 'no local tests: every shared module is unit-tested in ../cli/test against create-agentic-workspace'\"'\"'s own src/'"