epiq 0.7.10 → 1.0.1
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 +31 -31
- package/dist/mcp.js +29 -29
- package/package.json +2 -2
- package/readme.md +5 -3
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "epiq",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"description": "EPIQ - CLI
|
|
6
|
+
"description": "EPIQ - ergonomic, distributed CLI-first issue tracker TUI ready for the agentic era",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"issue-tracker",
|
|
9
9
|
"task-manager",
|
package/readme.md
CHANGED
|
@@ -4,6 +4,8 @@ _Distributed terminal-native issue tracker backed by Git._
|
|
|
4
4
|
|
|
5
5
|
[](https://github.com/sponsors/ljtn)
|
|
6
6
|
|
|
7
|
+
📖 **[Read the docs →](https://ljtn.github.io/epiq/)**
|
|
8
|
+
|
|
7
9
|
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
10
|
|
|
9
11
|
> Manage your projects in a visual terminal kanban board (or through the browser GUI), while keeping all state local, Git-backed, and versioned.
|
|
@@ -27,7 +29,7 @@ Epiq is a self hosted, vim-inspired issue tracker that brings developer experien
|
|
|
27
29
|
|
|
28
30
|
## Why Epiq?
|
|
29
31
|
|
|
30
|
-
Most issue trackers live outside your workflow. Epiq brings issue tracking where you already work -
|
|
32
|
+
Most issue trackers live outside your workflow. Epiq brings issue tracking where you already work - your editor.
|
|
31
33
|
|
|
32
34
|
These design choices result in a system that is:
|
|
33
35
|
|
|
@@ -64,7 +66,7 @@ Binary:
|
|
|
64
66
|
curl -fsSL https://raw.githubusercontent.com/ljtn/epiq/main/install.sh | sh
|
|
65
67
|
```
|
|
66
68
|
|
|
67
|
-
Installs to `~/.local/bin` by default. Override with `EPIQ_INSTALL_DIR` (or `XDG_BIN_HOME`); pin a version with `EPIQ_VERSION=
|
|
69
|
+
Installs to `~/.local/bin` by default. Override with `EPIQ_INSTALL_DIR` (or `XDG_BIN_HOME`); pin a version with `EPIQ_VERSION=v1.0.0`.
|
|
68
70
|
|
|
69
71
|
### Via npm
|
|
70
72
|
|
|
@@ -86,7 +88,7 @@ epiq --version
|
|
|
86
88
|
|
|
87
89
|
```bash
|
|
88
90
|
# If needed:
|
|
89
|
-
|
|
91
|
+
git init
|
|
90
92
|
# For collaboration, use a repo with a remote (e.g. clone from GitHub)
|
|
91
93
|
```
|
|
92
94
|
|