monoai 0.2.2 → 0.2.3

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
@@ -1,16 +1,25 @@
1
1
  # MonoAI CLI
2
- > **Decision Support Engine**
3
2
 
4
3
  MonoAI CLI is a strategic guide tool that measures alignment between product requirements and implementation, proposing a **list of issues the user should address right now**.
5
4
 
5
+ ## Why This Pipeline?
6
+
7
+ **This pipeline enables the AI to support your strategic decisions with clear, factual evidence by providing a pre-computed "decision baseline" of your system's reality.**
8
+
9
+ ### 1. Deterministic Structure (via ts-morph)
10
+ We distill the codebase into its fundamental structural skeleton. By focusing on interfaces and dependency trees rather than fluctuating implementation details, we provide a deterministic foundation that eliminates AI hallucinations.
11
+
12
+ ### 2. Relational Knowledge Graph (via Cognee)
13
+ We transform individual code entities into a connected graph. This maps the logical flow of your system, ensuring that every product intent is not just present, but structurally integrated and executable within the codebase.
14
+
6
15
  ## Key Features
7
16
 
8
17
  ### 1. monoai login
9
18
  - Authenticate via [monoai.space](https://monoai.space) to access the central intelligence system.
10
19
 
11
20
  ### 2. monoai push
12
- - **Evidence Extraction**: Extracts AST via `ts-morph` and constructs a Knowledge Graph via `Cognee` upon execution, transmitting clear evidence of the current implementation state to the server.
13
- - **Issue Proposal**: Analyzes alignment by comparing transmitted data with the active PRD, deriving and reporting a **list of issues** that the user should prioritize and execute immediately.
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.
14
23
 
15
24
  ## Getting Started
16
25
 
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.2');
9
+ .version('0.2.3');
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.2",
4
+ "version": "0.2.3",
5
5
  "description": "MonoAI CLI for syncing codebase history",
6
6
  "main": "dist/index.js",
7
7
  "bin": {