@vladimir-ks/aigile 0.2.5 → 0.2.6
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 +29 -12
- package/dist/bin/aigile.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +8 -6
package/README.md
CHANGED
|
@@ -1,28 +1,45 @@
|
|
|
1
1
|
# AIGILE
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> AI-first agile system for autonomous product development and project management
|
|
4
4
|
|
|
5
|
-
AIGILE
|
|
5
|
+
AIGILE provides structured context management for AI agents, enabling them to execute any project task correctly. Whether you're building software, running a business, conducting research, or managing personal projects—AIGILE gives AI agents the full understanding they need through agile artifacts (initiatives, epics, stories, tasks).
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Why AIGILE?
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
**The problem**: AI agents struggle without structured context. They need to understand *what* needs to be done, *why*, *how*, and the *priorities*.
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
| **AIGILE** | Manages agile work items (epics, stories, tasks, bugs) |
|
|
11
|
+
**The solution**: Agile artifacts aren't just for tracking work—they provide optimal structured context for AI agents to understand projects completely. One human plus AI agents equals a full team.
|
|
12
|
+
|
|
13
|
+
## Use Cases
|
|
15
14
|
|
|
16
|
-
|
|
15
|
+
| Domain | Examples |
|
|
16
|
+
|--------|----------|
|
|
17
|
+
| **Software Development** | Build apps, APIs, libraries with AI agents writing code |
|
|
18
|
+
| **Product Management** | Define roadmaps, track features, manage releases |
|
|
19
|
+
| **Content & Marketing** | Plan campaigns, track content creation, manage launches |
|
|
20
|
+
| **Research Projects** | Structure investigations, track findings, manage deliverables |
|
|
21
|
+
| **Personal Projects** | Organize goals, track progress, manage any endeavor |
|
|
22
|
+
| **Business Operations** | SOPs, process documentation, operational tracking |
|
|
17
23
|
|
|
18
24
|
## Features
|
|
19
25
|
|
|
26
|
+
- **AI-First Design**: Built for AI agents, not human typing convenience
|
|
27
|
+
- **Session Tracking**: Verified work sessions with file coverage tracking
|
|
20
28
|
- **File-First Architecture**: Documents with YAML frontmatter are the source of truth
|
|
21
29
|
- **Automatic Sync**: File watcher daemon keeps database in sync with your files
|
|
22
|
-
- **
|
|
23
|
-
- **AI-Optimized**: Designed for Claude Code and other AI assistants
|
|
30
|
+
- **Agile Entities**: Initiatives, Epics, Stories, Tasks, Bugs, Sprints
|
|
24
31
|
- **Three Init Profiles**: `full-repo`, `subrepo`, `module` for different project structures
|
|
25
|
-
|
|
32
|
+
|
|
33
|
+
## Relationship to CCM
|
|
34
|
+
|
|
35
|
+
AIGILE is an **optional companion** to [Claude Context Manager](https://github.com/vladimir-ks/claude-context-manager):
|
|
36
|
+
|
|
37
|
+
| Tool | Purpose |
|
|
38
|
+
|------|---------|
|
|
39
|
+
| **CCM** | Manages Claude Code artifacts (skills, commands, agents) |
|
|
40
|
+
| **AIGILE** | Manages agile work items and project context |
|
|
41
|
+
|
|
42
|
+
Both tools work independently or together.
|
|
26
43
|
|
|
27
44
|
## Installation
|
|
28
45
|
|
package/dist/bin/aigile.js
CHANGED
|
@@ -1186,7 +1186,7 @@ var init_connection = __esm({
|
|
|
1186
1186
|
import { Command as Command23 } from "commander";
|
|
1187
1187
|
|
|
1188
1188
|
// src/index.ts
|
|
1189
|
-
var VERSION = true ? "0.2.
|
|
1189
|
+
var VERSION = true ? "0.2.6" : "0.0.0-dev";
|
|
1190
1190
|
|
|
1191
1191
|
// src/bin/aigile.ts
|
|
1192
1192
|
init_connection();
|
package/dist/index.cjs
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vladimir-ks/aigile",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.2.6",
|
|
4
|
+
"description": "AI-first agile system for autonomous product development and project management",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"aigile",
|
|
7
7
|
"agile",
|
|
8
|
-
"
|
|
8
|
+
"ai-first",
|
|
9
|
+
"autonomous",
|
|
9
10
|
"project-management",
|
|
10
|
-
"
|
|
11
|
-
"
|
|
11
|
+
"product-development",
|
|
12
|
+
"ai-agents",
|
|
12
13
|
"claude-code",
|
|
13
|
-
"
|
|
14
|
+
"context-management",
|
|
15
|
+
"session-tracking"
|
|
14
16
|
],
|
|
15
17
|
"author": {
|
|
16
18
|
"name": "Vladimir K.S.",
|