prjct-cli 1.54.0 → 1.56.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/CHANGELOG.md CHANGED
@@ -1,16 +1,41 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.56.0] - 2026-04-06
4
+
5
+ ### Features
6
+
7
+ - web dashboard — Linear-style UI, full API, workflows, task detail
8
+ - CRUD API endpoints + static file serving for web dashboard
9
+
10
+ ### Bug Fixes
11
+
12
+ - biome lint + typecheck errors for clean push
13
+ - revert accent to neutral, sidebar/tabs cleanup
14
+
15
+
16
+ ## [1.54.2] - 2026-04-06
17
+
18
+ ### Added
19
+ - current work
20
+
21
+ ## [1.54.1] - 2026-04-06
22
+
23
+ ### Added
24
+ - current work
25
+
3
26
  ## [1.54.0] - 2026-04-05
4
27
 
5
28
  ### Features
6
29
 
7
30
  - multi-agent parallel sessions with auto-worktree isolation (#237)
31
+ - Obsidian vault integration — CLI commands, 8 MCP tools, Kanban board, Canvas roadmap, Dataview dashboards, path security
32
+ - Sync skill generates `_insights.md` via LLM when Obsidian is configured
33
+ - Linear CSV import script with per-project Kanban boards and tags
8
34
 
9
35
  ### Bug Fixes
10
36
 
11
37
  - guard feedback array spreads preventing s.push crash (#236)
12
38
 
13
-
14
39
  ## [1.53.1] - 2026-04-04
15
40
 
16
41
  ### Docs
package/README.md CHANGED
@@ -138,6 +138,7 @@ All agents share the same SQLite-backed project storage, so you can switch betwe
138
138
  | `p. recover` | Recover abandoned session with context |
139
139
  | `p. linear` | Linear integration via MCP |
140
140
  | `p. jira` | Jira integration via MCP |
141
+ | `p. obsidian` | Obsidian vault integration (setup, export, status) |
141
142
 
142
143
  ### Parallel Agent Sessions
143
144
 
@@ -169,6 +170,9 @@ prjct context # Smart context filtering tools
169
170
  prjct enrich # Prepare issue enrichment context
170
171
  prjct linear # Linear MCP gateway
171
172
  prjct jira # Jira MCP gateway
173
+ prjct obsidian setup # Link project to Obsidian vault
174
+ prjct obsidian export # Export board, queue, shipped, roadmap to vault
175
+ prjct obsidian status # Check Obsidian integration status
172
176
  prjct login # Authenticate with prjct cloud (opens browser)
173
177
  prjct logout # Sign out from prjct cloud
174
178
  prjct update # Update CLI system-wide
@@ -205,6 +209,7 @@ prjct exposes an MCP server with tools that AI agents can call directly:
205
209
  | **Pattern** | 3 | Pattern extraction and matching |
206
210
  | **Review** | 3 | Code review context |
207
211
  | **Project** | 4 | Project-level operations |
212
+ | **Obsidian** | 8 | Read, write, search, list, export, import, stats, status |
208
213
 
209
214
  The memory system uses FTS5 full-text search, tracks decision outcomes ("did this work before?"), and auto-captures patterns during normal workflow.
210
215
 
@@ -235,6 +240,26 @@ Cloud sync enables:
235
240
  - Event-sourced bidirectional push/pull
236
241
  - Automatic sync on task completion
237
242
 
243
+ ## Obsidian Integration
244
+
245
+ Use Obsidian as your project management tool with Kanban boards, dashboards, and knowledge base.
246
+
247
+ ```bash
248
+ prjct obsidian setup --vault-path ~/Obsidian/my-vault # Link project to vault
249
+ prjct obsidian export # Export data to vault
250
+ prjct obsidian status # Check config
251
+ ```
252
+
253
+ Features:
254
+ - **Kanban board** with Obsidian Kanban plugin (per-project filtered views)
255
+ - **Dataview dashboards** (active sprint, backlog, stats, by project/priority)
256
+ - **Canvas roadmap** with dependency arrows between features
257
+ - **Daily standup notes** with task progress and queue
258
+ - **8 MCP tools** for AI agents to read, write, search, and import vault notes
259
+ - **`_insights.md`** generated by LLM on each `p. sync` (architecture, risks, progress)
260
+ - **Tags** for Graph View coloring (status, priority, labels, project)
261
+ - **Security**: path traversal prevention, extension whitelist, blocked directories
262
+
238
263
  ## Issue Tracker Integration
239
264
 
240
265
  Issue trackers are configured via MCP (OAuth in your AI client), not API tokens.
@@ -277,7 +302,7 @@ prjct-cli/
277
302
  commands/ # CLI command handlers
278
303
  domain/ # BM25, import graph, co-change, velocity
279
304
  infrastructure/ # Config, path manager, AI provider detection
280
- mcp/ # MCP server (48 tools)
305
+ mcp/ # MCP server (56 tools)
281
306
  schemas/ # Zod schemas (PRD, model, etc.)
282
307
  server/ # Hono HTTP server + SSE
283
308
  services/ # Memory, sync, code intel, skills, doctor