esedre 0.1.3 → 0.1.4

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
@@ -1,10 +1,10 @@
1
1
  # 🏛️ Esedre (`/eh-ˈseh-dreh/`)
2
2
 
3
3
  <p align="center">
4
- <img src="docs/assets/esedre-hero.png" alt="Esedre: The Classical Council Forum for Developers & Companion Agents" width="100%" />
4
+ <img src="https://cdn.jsdelivr.net/npm/esedre/docs/assets/esedre-hero.png" alt="Esedre: The Classical Council Forum for Developers & Companion Agents" width="100%" />
5
5
  </p>
6
6
 
7
- > **Developer roadmap, ticketing engine, and Model Context Protocol (MCP) server for developers and companion LLM coding agents.**
7
+ > **The open developer roadmap and ticketing engine engineered to provide long-term grounding for LLM agent context, powered by a fast CLI, local Web UI, and Model Context Protocol (MCP) server.**
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/)
@@ -14,13 +14,27 @@
14
14
 
15
15
  ## 🌟 Overview
16
16
 
17
- **Esedre** (with short CLI alias **`ese`**) is an open-source developer planning engine backed by text-based files (Markdown & JSON) that are easily backed by a git branch or repository for clean versioning and branch-aware workflows. Designed from the ground up for software engineers and autonomous companion LLM coding agents (such as Google Antigravity, Claude Code, and Cursor) to coordinate together, it provides:
17
+ **Esedre** (with short CLI alias **`ese`**) is an open-source developer planning engine backed by plain text files (Markdown & JSON) that are easily version-controlled in git. Designed from the ground up for software engineers and autonomous companion LLM coding agents (such as Google Antigravity, Claude Code, and Cursor) to coordinate together, Esedre solves the single biggest bottleneck in LLM-assisted development: **agent context drift and session amnesia**.
18
18
 
19
- 1. **CLI Commands (`esedre` / `ese`)**: List, query, plan, create, and update tickets via simple terminal commands with human-readable colored tables or machine-readable `--json` output.
20
- 2. **Model Context Protocol (MCP) Server**: Full JSON-RPC 2.0 stdio server implementing the official MCP specification (`2024-11-05`), exposing roadmap tickets as first-class tools and URI resources.
21
- 3. **Multi-Project Agent Isolation**: Informs each companion LLM only of the projects it is authorized to access, keeping unrelated project tickets, specifications, and plans completely isolated.
22
- 4. **Optimistic Concurrency Control**: SHA-1 content hashing on all tickets and plans, preventing concurrent agents or humans from clobbering each other's edits.
23
- 5. **Local Web Dashboard & Embeddable Component**: Run a visual dashboard with `esedre serve` to manage tickets in your browser, or embed `<esedre-planner>` into any web app without adding UI framework dependencies to your project.
19
+ ### ⚓ Core Pillar: Long-Term Grounding for LLM Agent Context
20
+
21
+ LLM coding agents possess extraordinary implementation speed, but face a fundamental architectural ceiling: **context windows fill up, compact, and reset between turns and sessions**. External issue trackers live in distant web silos that agents cannot inspect reliably or locally without API keys and network overhead. Over multi-turn pair programming sessions, models lose track of architectural intent, past verification history, and upcoming milestones.
22
+
23
+ **Esedre's core feature is providing persistent, authoritative long-term grounding to LLM agent context:**
24
+
25
+ * **Git-Backed Ground Truth**: Tickets, feature breakdowns, architecture plans, and verification comments reside right alongside source code in git. They branch, merge, and stay synchronized with the codebase.
26
+ * **First-Class MCP Integration**: Through the official Model Context Protocol, companion LLMs query roadmap priorities (`esedre_list_tickets`), inspect deep specifications (`esedre_get_ticket`), and update plans (`esedre_save_plan`) in real time.
27
+ * **Cross-Session Memory & Grounding**: When an LLM agent begins a new turn, recovers from a context compaction, or transitions across developer handoffs, Esedre grounds the model to concrete technical specifications, constraints, and upcoming milestones: preventing drift and hallucinated direction.
28
+ * **Optimistic Concurrency Protection**: Multi-agent pair-programming remains safe through SHA-1 content hashing, ensuring concurrent agents or developers never silently overwrite each other's work.
29
+
30
+ ### ⚡ Key Capabilities
31
+
32
+ 1. **Long-Term LLM Agent Grounding**: The primary architectural foundation: anchoring companion LLM agents to persistent project memory, architectural plans, and git-backed roadmap milestones across multi-turn sessions and context compactions.
33
+ 2. **CLI Commands (`esedre` / `ese`)**: List, query, plan, create, and update tickets via simple terminal commands with human-readable colored tables or machine-readable `--json` output.
34
+ 3. **Model Context Protocol (MCP) Server**: Full JSON-RPC 2.0 stdio server implementing the official MCP specification (`2024-11-05`), exposing roadmap tickets as first-class tools and URI resources.
35
+ 4. **Agent Project Allow-List (Multi-Project Isolation)**: Informs each companion LLM only of the projects it is authorized to access, keeping unrelated project tickets, specifications, and plans completely isolated.
36
+ 5. **Optimistic Concurrency Control**: SHA-1 content hashing on all tickets and plans, preventing concurrent agents or humans from clobbering each other's edits.
37
+ 6. **Local Web Dashboard & Embeddable Component**: Run a visual dashboard with `esedre serve` to manage tickets in your browser, or embed `<esedre-planner>` into any web app without adding UI framework dependencies to your project.
24
38
 
25
39
  ---
26
40
 
package/dist/esedre.mjs CHANGED
@@ -2047,7 +2047,7 @@ function printDaemonLogs(options = {}) {
2047
2047
  }
2048
2048
 
2049
2049
  // src/upgrade.ts
2050
- var CURRENT_ESEDRE_VERSION = "0.1.3";
2050
+ var CURRENT_ESEDRE_VERSION = "0.1.4";
2051
2051
  function computeNormalizedHash(content) {
2052
2052
  const normalized = content.replace(/\r\n/g, "\n").trim();
2053
2053
  return crypto2.createHash("sha1").update(normalized, "utf-8").digest("hex");
Binary file
package/package.json CHANGED
@@ -1,8 +1,12 @@
1
1
  {
2
2
  "name": "esedre",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Esedre - Developer roadmap, ticketing, and companion LLM agent coordination platform",
5
5
  "homepage": "https://www.arwam.com",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/Aellinsar/esedre.git"
9
+ },
6
10
  "author": "ARWAM <dev@arwam.com>",
7
11
  "keywords": [
8
12
  "roadmap",
@@ -23,7 +27,8 @@
23
27
  "files": [
24
28
  "dist",
25
29
  "README.md",
26
- "LICENSE"
30
+ "LICENSE",
31
+ "docs/assets"
27
32
  ],
28
33
  "scripts": {
29
34
  "dev": "vite --port=5674",