@critical-path/svelte 0.13.0 → 0.13.1

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/CHANGELOG.md CHANGED
@@ -1,10 +1,17 @@
1
1
  # @critical-path/svelte
2
2
 
3
+ ## 0.13.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b4b2c98]
8
+ - @critical-path/mcp@0.3.1
9
+
3
10
  ## 0.13.0
4
11
 
5
12
  ### Minor Changes
6
13
 
7
- - e2a7eef: Introduce Bret Victor's Ladder of Abstraction and Critical Path Method (CPM) timeline synthesis to the framework data model:
14
+ - e2a7eef: Introduce Ladder of Abstraction and Critical Path Method (CPM) timeline synthesis to the framework data model:
8
15
  - **Core Domain**: Multi-scale timeline synthesis model across Macro phase rollups, Standard CPM Gantt schedule (early/late bounds, float/slack calculation, bottleneck identification), and Concrete grounding (deliverables, file attachments, daily effort distribution, and reality deltas). Added `calculateCriticalPath`, `getTimelineLadder`, and `getTaskLadder` to `CriticalPathEngine`.
9
16
  - **Server Router**: HTTP endpoints `GET /projects/:id/critical-path`, `GET /projects/:id/ladder`, and `GET /tasks/:id/ladder`.
10
17
  - **Client SDK**: `CriticalPathClient` methods `calculateCriticalPath`, `getTimelineLadder`, and `getTaskLadder`.
package/README.md CHANGED
@@ -138,7 +138,7 @@ Combines threaded comments with inline attachments (`attachment.commentId === co
138
138
  {/each}
139
139
  ```
140
140
 
141
- ### 4. Bret Victor's Ladder of Abstraction (`TimelineLadderState`)
141
+ ### 4. Ladder of Abstraction (`TimelineLadderState`)
142
142
 
143
143
  Fluidly traverse between Macro phase health, Standard Gantt tasks with CPM critical paths, and Concrete deliverables/effort using Svelte 5 Runes:
144
144
 
package/dist/index.js CHANGED
@@ -4004,7 +4004,7 @@ var $ = [
4004
4004
  {
4005
4005
  name: "get_timeline_ladder",
4006
4006
  title: "Get Timeline Ladder of Abstraction",
4007
- description: "Retrieve Bret Victor Ladder of Abstraction for a project timeline across macro phase envelopes, standard Gantt tasks & CPM, and concrete deliverables/time/attachments.",
4007
+ description: "Retrieve Ladder of Abstraction for a project timeline across macro phase envelopes, standard Gantt tasks & CPM, and concrete deliverables/time/attachments.",
4008
4008
  zodSchema: Z({
4009
4009
  projectId: X().optional().describe("Project ID (falls back to ambient context if omitted)"),
4010
4010
  level: Q([
@@ -4058,7 +4058,7 @@ var $ = [
4058
4058
  {
4059
4059
  name: "get_task_ladder",
4060
4060
  title: "Get Task Ladder View",
4061
- description: "Retrieve multi-scale Bret Victor ladder view for a single task, connecting its macro phase, standard CPM timeline position, and concrete work evidence.",
4061
+ description: "Retrieve multi-scale ladder view for a single task, connecting its macro phase, standard CPM timeline position, and concrete work evidence.",
4062
4062
  zodSchema: Z({ taskId: X().describe("The task ID") }),
4063
4063
  inputSchema: {
4064
4064
  type: "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@critical-path/svelte",
3
- "version": "0.13.0",
3
+ "version": "0.13.1",
4
4
  "description": "Svelte 5 Runes state and reactive integrations for Critical Path headless project management framework",
5
5
  "author": "Jack James",
6
6
  "license": "MIT",
@@ -18,9 +18,9 @@
18
18
  }
19
19
  },
20
20
  "dependencies": {
21
- "@critical-path/mcp": "0.3.0",
22
- "@critical-path/client": "0.10.0",
23
- "@critical-path/core": "0.16.0"
21
+ "@critical-path/core": "0.16.0",
22
+ "@critical-path/mcp": "0.3.1",
23
+ "@critical-path/client": "0.10.0"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "svelte": "^5.0.0"