monoai 0.2.3 → 0.2.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/README.md CHANGED
@@ -19,7 +19,7 @@ We transform individual code entities into a connected graph. This maps the logi
19
19
 
20
20
  ### 2. monoai push
21
21
  - **Evidence Extraction**: Automatically triggers AST extraction and Knowledge Graph construction to transmit clear evidence of the current implementation state.
22
- - **Issue Proposal**: Analyzes alignment with the active PRD to derive a **list of issues** that the user should prioritize and execute immediately.
22
+ - **Foundation for Issue Derivation**: Establishes the structural context required to analyze alignment with the active PRD, enabling the central engine to propose a prioritized list of issues for immediate action.
23
23
 
24
24
  ## Getting Started
25
25
 
@@ -34,7 +34,7 @@ Execute immediately via `npx` without any installation.
34
34
  # Login (First time only)
35
35
  npx monoai login
36
36
 
37
- # Analyze and push issue checklist
37
+ # Extract structure & Git history to build foundation for issue derivation
38
38
  npx monoai push
39
39
  ```
40
40
 
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@ const program = new Command();
6
6
  program
7
7
  .name('monoai')
8
8
  .description('MonoAI CLI - Strategic Navigator')
9
- .version('0.2.3');
9
+ .version('0.2.4');
10
10
  program.addCommand(loginCommand);
11
11
  program.addCommand(pushCommand);
12
12
  program.parse();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "monoai",
3
3
  "type": "module",
4
- "version": "0.2.3",
4
+ "version": "0.2.4",
5
5
  "description": "MonoAI CLI for syncing codebase history",
6
6
  "main": "dist/index.js",
7
7
  "bin": {