esedre 0.1.7 → 0.1.9

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/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  [![License: MPL 2.0](https://img.shields.io/badge/License-MPL_2.0-blue.svg)](LICENSE)
10
10
  [![Tests](https://img.shields.io/badge/Tests-100%25%20Passing-emerald.svg)](tests/)
11
- [![Website: www.arwam.com](https://img.shields.io/badge/Website-www.arwam.com-cyan.svg)](https://www.arwam.com)
11
+ [![Website: arwam.com](https://img.shields.io/badge/Website-arwam.com-cyan.svg)](https://arwam.com)
12
12
 
13
13
  ---
14
14
 
@@ -88,6 +88,8 @@ ese start
88
88
  # Open dashboard: http://localhost:5674/app
89
89
  ```
90
90
 
91
+ The server launches with unconstrained portfolio visibility across all registered data hubs and projects, allowing the main Esedre Web UI (as opposed to embedded component and LLM agent project-scoped behavior) to manage them seamlessly. Incoming agent requests enforce project scoping dynamically via the `x-esedre-allowed-projects` header or `?allowedProjects=...` query parameter.
92
+
91
93
  ### 4. Create Your First Ticket
92
94
 
93
95
  ```bash
@@ -113,10 +115,10 @@ Core day-to-day workflow commands for scoping, viewing, planning, and verifying
113
115
  | `list` | `ese list [-p\|--project <code\|all>] [-s\|--status <status>] [-t\|--type <type>] [--json]` | List roadmap tickets with optional filters. Defaults to the active project. |
114
116
  | `get` | `ese get <id> [--json]` | View ticket specifications, feature breakdown, comments, and SHA-1 hash. |
115
117
  | `plan` | `ese plan <id> [--set "<markdown>"] [--file <path>] [--last-hash <h>]` | Read or update the active implementation plan markdown. |
116
- | `create` | `ese create --title "..." [-p\|--project <code>] [-t\|--type <type>]` | Create a new ticket with auto-sequential ID. Title strictly capped at 48 chars. |
118
+ | `create` | `ese create --title "..." [-p\|--project <code>] [-t\|--type <type>] [--detail "<md>"] [--file <path>]` | Create a new ticket with auto-sequential ID and optional specification markdown. Title strictly capped at 48 chars. |
117
119
  | `update` | `ese update <id> [-s\|--status <status>] [-t\|--type <type>] [--title "..."] [--last-hash <h>]` | Update ticket status, type, or title with optimistic concurrency protection. |
118
120
  | `comment` | `ese comment <id> ["<text>"] [--text "..."] [--author "..."]` | Append a developer or LLM agent note to ticket history. |
119
- | `snapshot` | `ese snapshot [--project <code>] [--json]` | Generate lean projection `.esedre/snapshot.json` for zero-latency agent context. |
121
+ | `snapshot`, `refresh` | `ese snapshot [--project <code>] [--json]` | Generate or refresh projection `.esedre/snapshot.json` for zero-latency agent context. |
120
122
  | `projects` | `ese projects [--json]` | List registered projects within authorized scope. |
121
123
 
122
124
  ### Service Daemon Commands
@@ -184,7 +186,7 @@ To connect Esedre to **Google Antigravity**, **Claude Code**, **Cursor**, or any
184
186
  - `esedre_list_tickets`: List tickets with optional project, status, category, or search filter.
185
187
  - `esedre_get_ticket`: Retrieve full specification, summary, comments, revision, and content hash (`sha1`).
186
188
  - `esedre_get_plan` & `esedre_save_plan`: Inspect and update implementation plans with optimistic concurrency (`lastHash`).
187
- - `esedre_create_ticket`: Mint new roadmap tickets with project code validation (up to 8 chars).
189
+ - `esedre_create_ticket`: Mint new roadmap tickets with project code validation (up to 8 chars) and optional specification detail markdown.
188
190
  - `esedre_update_ticket`: Modify status, title, complexity, or effort with optimistic concurrency (`lastHash`).
189
191
  - `esedre_add_comment`: Append developer or LLM agent verification notes.
190
192
 
@@ -260,6 +262,7 @@ Esedre enforces clean project isolation so each LLM agent is informed only of th
260
262
  - Unauthorized requests throw `EsedreAuthorizationError`:
261
263
  - **CLI**: Prints `Access Denied: ...` and exits with status code 1.
262
264
  - **MCP**: Responds with standard JSON-RPC error `-32603`.
265
+ - **REST API**: Responds with HTTP status code `403 Forbidden`.
263
266
 
264
267
  ---
265
268
 
@@ -280,4 +283,4 @@ npm run build
280
283
 
281
284
  ## 📄 License
282
285
 
283
- [Mozilla Public License 2.0 (MPL-2.0)](LICENSE) © [ARWAM](https://www.arwam.com)
286
+ [Mozilla Public License 2.0 (MPL-2.0)](LICENSE) © [ARWAM](https://arwam.com)