prjct-cli 1.54.0 → 1.55.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 +10 -1
- package/README.md +26 -1
- package/dist/bin/prjct-core.mjs +457 -375
- package/dist/cli/jira.mjs +5 -5
- package/dist/cli/linear.mjs +6 -6
- package/dist/daemon/entry.mjs +392 -310
- package/dist/mcp/server.mjs +276 -173
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.55.0] - 2026-04-05
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- Obsidian vault integration (#240)
|
|
8
|
+
|
|
9
|
+
|
|
3
10
|
## [1.54.0] - 2026-04-05
|
|
4
11
|
|
|
5
12
|
### Features
|
|
6
13
|
|
|
7
14
|
- multi-agent parallel sessions with auto-worktree isolation (#237)
|
|
15
|
+
- Obsidian vault integration — CLI commands, 8 MCP tools, Kanban board, Canvas roadmap, Dataview dashboards, path security
|
|
16
|
+
- Sync skill generates `_insights.md` via LLM when Obsidian is configured
|
|
17
|
+
- Linear CSV import script with per-project Kanban boards and tags
|
|
8
18
|
|
|
9
19
|
### Bug Fixes
|
|
10
20
|
|
|
11
21
|
- guard feedback array spreads preventing s.push crash (#236)
|
|
12
22
|
|
|
13
|
-
|
|
14
23
|
## [1.53.1] - 2026-04-04
|
|
15
24
|
|
|
16
25
|
### 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 (
|
|
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
|