issy 0.5.1 → 0.5.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/README.md +0 -52
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "issy",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "AI-native issue tracking. Markdown files in .issues/, managed by your coding assistant.",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/README.md DELETED
@@ -1,52 +0,0 @@
1
- # issy
2
-
3
- AI-native issue tracking. Tell your coding assistant what to track — it handles the rest.
4
-
5
- Issues are stored as markdown files in `.issues/`, committed with your code.
6
-
7
- ## Install the Skill
8
-
9
- ```bash
10
- npx skills add miketromba/issy
11
- ```
12
-
13
- Your AI assistant can now create, search, update, and close issues through natural language.
14
-
15
- ## Manual Usage
16
-
17
- ### Web UI
18
-
19
- ```bash
20
- npx issy
21
- ```
22
-
23
- Opens a local UI at `http://localhost:1554`.
24
-
25
- ### CLI
26
-
27
- ```bash
28
- issy init # Create .issues/ directory
29
- issy init --seed # Create with a welcome issue
30
- issy list # List open issues
31
- issy search "auth" # Fuzzy search
32
- issy read 0001 # View issue
33
- issy create --title "Bug" # Create issue
34
- issy close 0001 # Close issue
35
- ```
36
-
37
- Run `issy help` for full options.
38
-
39
- ### Monorepo Support
40
-
41
- issy walks up from the current directory to find an existing `.issues/` folder, so you can run it from any subdirectory.
42
-
43
- ## Configuration
44
-
45
- | Variable | Description | Default |
46
- |----------|-------------|---------|
47
- | `ISSUES_DIR` | Issues directory path | `./.issues` |
48
- | `ISSUES_PORT` | UI server port | `1554` |
49
-
50
- ## License
51
-
52
- MIT