@vladimir-ks/aigile 0.1.0
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/LICENSE +21 -0
- package/README.md +117 -0
- package/dist/bin/aigile.js +7878 -0
- package/dist/bin/aigile.js.map +1 -0
- package/dist/index.cjs +70 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +70 -0
- package/dist/index.d.ts +70 -0
- package/dist/index.js +42 -0
- package/dist/index.js.map +1 -0
- package/package.json +72 -0
- package/types/sql.js.d.ts +39 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Vladimir K.S.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
# AIGILE
|
|
2
|
+
|
|
3
|
+
> JIRA-compatible Agile project management CLI for AI-assisted development
|
|
4
|
+
|
|
5
|
+
AIGILE is a command-line tool that brings agile project management directly to your repository. Designed for AI-assisted development workflows, it tracks epics, stories, tasks, and bugs with a file-first architecture.
|
|
6
|
+
|
|
7
|
+
## Features
|
|
8
|
+
|
|
9
|
+
- **File-First Architecture**: Documents with YAML frontmatter are the source of truth
|
|
10
|
+
- **Automatic Sync**: File watcher daemon keeps database in sync with your files
|
|
11
|
+
- **JIRA-Compatible**: Familiar concepts (Epics, Stories, Tasks, Bugs, Sprints)
|
|
12
|
+
- **AI-Optimized**: Designed for Claude Code and other AI assistants
|
|
13
|
+
- **Three Init Profiles**: `full-repo`, `subrepo`, `module` for different project structures
|
|
14
|
+
- **Frontmatter Metadata**: Status, version, modules, dependencies tracking
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npm install -g @vladimir-ks/aigile
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Quick Start
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
# Initialize in your git repository
|
|
26
|
+
aigile init
|
|
27
|
+
|
|
28
|
+
# Scan and index your files
|
|
29
|
+
aigile sync scan
|
|
30
|
+
|
|
31
|
+
# Start the file watcher daemon
|
|
32
|
+
aigile daemon install
|
|
33
|
+
aigile daemon start
|
|
34
|
+
|
|
35
|
+
# View project status
|
|
36
|
+
aigile status
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Commands
|
|
40
|
+
|
|
41
|
+
### Project Management
|
|
42
|
+
- `aigile init` - Initialize AIGILE in a repository
|
|
43
|
+
- `aigile project list` - List registered projects
|
|
44
|
+
- `aigile status` - Show project status
|
|
45
|
+
|
|
46
|
+
### Work Items
|
|
47
|
+
- `aigile epic create "Epic title"` - Create an epic
|
|
48
|
+
- `aigile story create "Story title"` - Create a user story
|
|
49
|
+
- `aigile task create "Task title"` - Create a task
|
|
50
|
+
- `aigile bug create "Bug title"` - Create a bug report
|
|
51
|
+
|
|
52
|
+
### File Sync
|
|
53
|
+
- `aigile sync scan` - Scan and sync files to database
|
|
54
|
+
- `aigile sync status` - Show sync status
|
|
55
|
+
- `aigile sync list` - List tracked documents
|
|
56
|
+
|
|
57
|
+
### Document Management
|
|
58
|
+
- `aigile doc list` - List documents with metadata
|
|
59
|
+
- `aigile doc show <path>` - Show document details
|
|
60
|
+
- `aigile doc update <path>` - Update frontmatter metadata
|
|
61
|
+
- `aigile doc stats` - Show frontmatter statistics
|
|
62
|
+
|
|
63
|
+
### Daemon
|
|
64
|
+
- `aigile daemon install` - Install auto-start service
|
|
65
|
+
- `aigile daemon start` - Start file watcher
|
|
66
|
+
- `aigile daemon stop` - Stop file watcher
|
|
67
|
+
- `aigile daemon status` - Show daemon status
|
|
68
|
+
|
|
69
|
+
## Init Profiles
|
|
70
|
+
|
|
71
|
+
### full-repo
|
|
72
|
+
For primary product repositories at the git root:
|
|
73
|
+
```bash
|
|
74
|
+
aigile init --profile full-repo
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
### subrepo
|
|
78
|
+
For git submodules treated as separate products:
|
|
79
|
+
```bash
|
|
80
|
+
aigile init --profile subrepo
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
### module
|
|
84
|
+
For directories within an existing AIGILE repository:
|
|
85
|
+
```bash
|
|
86
|
+
aigile init --profile module --name my-module
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
## Frontmatter Schema
|
|
90
|
+
|
|
91
|
+
AIGILE tracks documents with YAML frontmatter:
|
|
92
|
+
|
|
93
|
+
```yaml
|
|
94
|
+
---
|
|
95
|
+
metadata:
|
|
96
|
+
status: DRAFT # DRAFT, IN-REVIEW, APPROVED, TEMPLATE
|
|
97
|
+
version: "1.0"
|
|
98
|
+
tldr: "Brief summary"
|
|
99
|
+
modules: [auth, api]
|
|
100
|
+
dependencies: [./other-doc.md]
|
|
101
|
+
code_refs: [src/auth/]
|
|
102
|
+
authors: ["Author Name"]
|
|
103
|
+
---
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
## Requirements
|
|
107
|
+
|
|
108
|
+
- Node.js >= 18.0.0
|
|
109
|
+
- Git repository
|
|
110
|
+
|
|
111
|
+
## License
|
|
112
|
+
|
|
113
|
+
MIT
|
|
114
|
+
|
|
115
|
+
## Author
|
|
116
|
+
|
|
117
|
+
Vladimir K.S. - [@vladimir-ks](https://github.com/vladimir-ks)
|