epiq 0.7.2 → 0.7.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/dist/gui/main.js +1 -1
- package/dist/index.js +1 -1
- package/dist/mcp.js +41 -41
- package/package.json +4 -4
- package/readme.md +18 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "epiq",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "EPIQ - CLI based issue tracker",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"build:gui:types": "tsc --noEmit -p source/gui/client/tsconfig.json",
|
|
31
31
|
"build:gui": "npm run build:gui:types && mkdir -p dist/gui && cp source/gui/index.html dist/gui/index.html && cp source/gui/favicon.ico dist/gui/favicon.ico && esbuild source/gui/client/main.tsx --bundle --format=esm --target=es2020 --outfile=dist/gui/main.js",
|
|
32
32
|
"build:npm": "node source/scripts/write-version.mjs && rm -rf ./dist && npm run build:gui && esbuild source/Index.tsx --bundle --packages=external --platform=node --format=esm --target=node18 --minify --outfile=dist/index.js --banner:js='#!/usr/bin/env node' && esbuild source/mcp/index.ts --bundle --packages=external --platform=node --format=esm --target=node18 --minify --outfile=dist/mcp.js --banner:js='#!/usr/bin/env node'",
|
|
33
|
-
"build:sea:bundle": "node source/scripts/write-version.mjs &&
|
|
34
|
-
"build:sea": "node
|
|
33
|
+
"build:sea:bundle": "node source/scripts/write-version.mjs && node source/scripts/build-sea.mjs",
|
|
34
|
+
"build:sea": "node source/scripts/build-sea.mjs",
|
|
35
35
|
"build:publish": "npm run build:npm",
|
|
36
|
-
"build:binary": "
|
|
36
|
+
"build:binary": "node source/scripts/write-version.mjs && node source/scripts/build-sea.mjs",
|
|
37
37
|
"watch:npm": "node source/scripts/write-version.mjs && rm -rf ./dist && node source/scripts/watch-npm.mjs",
|
|
38
38
|
"dev": "IS_LOCAL=true tsc --watch --noEmit",
|
|
39
39
|
"dev:start": "IS_LOCAL=true tsx source/Index.tsx",
|
package/readme.md
CHANGED
|
@@ -6,15 +6,15 @@ _Distributed terminal-native issue tracker backed by Git._
|
|
|
6
6
|
|
|
7
7
|
Issue tracking is a core part of software development, but it often becomes a painful context-switching exercise with poor ergonomics. Epiq provides issue tracking as a portable, integrated part of the development environment, with access to all the powerful tooling developers are used to.
|
|
8
8
|
|
|
9
|
-
> Manage your projects in a visual terminal kanban board or through the browser GUI, while keeping all state local, Git-backed, and versioned.
|
|
9
|
+
> Manage your projects in a visual terminal kanban board (or through the browser GUI), while keeping all state local, Git-backed, and versioned.
|
|
10
10
|
|
|
11
|
-
With great attention to user ergonomics and developer experience, epiq
|
|
11
|
+
With great attention to user ergonomics and developer experience, epiq strives to make project management painless and friction free.
|
|
12
12
|
|
|
13
13
|

|
|
14
14
|
|
|
15
|
-
## Terminal
|
|
15
|
+
## Terminal + Browser
|
|
16
16
|
|
|
17
|
-
Epiq also
|
|
17
|
+
Epiq originated from the command line, but also features a browser interface powered by the same Git-backed event engine.
|
|
18
18
|
|
|
19
19
|

|
|
20
20
|
|
|
@@ -22,24 +22,9 @@ Epiq also includes a browser-based interface powered by the same Git-backed even
|
|
|
22
22
|
|
|
23
23
|
Epiq is a self hosted, vim-inspired issue tracker that brings developer experience to project management. It renders either as ASCII, or as a web GUI, and persists state as an immutable distributed event log, versioned and synchronized through Git.
|
|
24
24
|
|
|
25
|
-
An easy to use browser GUI is available, powered by the same Git-backed state engine.
|
|
26
|
-
|
|
27
25
|

|
|
28
26
|

|
|
29
27
|
|
|
30
|
-
## Features
|
|
31
|
-
|
|
32
|
-
- Issue tracking — track work in tickets with name, description, tags, assignees, history log, etc.
|
|
33
|
-
- Ergonomics — fast keyboard-driven UX, command line with history, syntax highlighting etc.
|
|
34
|
-
- Command palette — press `?` to open a scrollable overview of all available commands and descriptions
|
|
35
|
-
- Time travel — inspect your app 1h, 1 week or 1 year ago
|
|
36
|
-
- Filtering — query issues by description, tags, assignees, etc.
|
|
37
|
-
- Autocompletion — minimize typing, stay in flow, reuse previous commands
|
|
38
|
-
- Multi-user — collaborative synchronization via Git
|
|
39
|
-
- Traceable event log — state is a full history of every change ever made
|
|
40
|
-
- Browser GUI — graphical interface powered by the same Git-backed state
|
|
41
|
-
- MCP integration — Model Context Protocol support for agent interaction
|
|
42
|
-
|
|
43
28
|
## Why Epiq?
|
|
44
29
|
|
|
45
30
|
Most issue trackers live outside your workflow. Epiq brings issue tracking where you already work - you editor.
|
|
@@ -54,6 +39,19 @@ These design choices result in a system that is:
|
|
|
54
39
|
- **Command driven** — scriptable and automation-friendly, ready for the agentic era
|
|
55
40
|
- **Versioned** — changes are tracked and recoverable through Git
|
|
56
41
|
|
|
42
|
+
## Features
|
|
43
|
+
|
|
44
|
+
- Issue tracking — track work in tickets with name, description, tags, assignees, history log, etc.
|
|
45
|
+
- Ergonomics — fast keyboard-driven UX, command line with history, syntax highlighting etc.
|
|
46
|
+
- Command palette — press `?` to open a scrollable overview of all available commands and descriptions
|
|
47
|
+
- Time travel — inspect your app 1h, 1 week or 1 year ago
|
|
48
|
+
- Filtering — query issues by description, tags, assignees, etc.
|
|
49
|
+
- Autocompletion — minimize typing, stay in flow, reuse previous commands
|
|
50
|
+
- Multi-user — collaborative synchronization via Git
|
|
51
|
+
- Traceable event log — state is a full history of every change ever made
|
|
52
|
+
- Browser GUI — graphical interface powered by the same Git-backed state
|
|
53
|
+
- MCP integration — Model Context Protocol support for agent interaction
|
|
54
|
+
|
|
57
55
|
---
|
|
58
56
|
|
|
59
57
|
## Installation
|
|
@@ -230,4 +228,4 @@ Epiq follows a **local-first** model:
|
|
|
230
228
|
|
|
231
229
|
---
|
|
232
230
|
|
|
233
|
-
🫡
|
|
231
|
+
🫡 Never leave your editor!
|