@sixsevenai/ai-dlc 1.0.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/README.md +67 -0
- package/dist/cli.mjs +46663 -0
- package/package.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# @sixsevenai/ai-dlc
|
|
2
|
+
|
|
3
|
+
AI-DLC TypeScript Enforcement Engine - Global CLI for workflow enforcement across AI-DLC projects.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
### From GitHub Release (recommended)
|
|
8
|
+
|
|
9
|
+
1. Download `sixsevenai-ai-dlc-{version}.tgz` from the [Releases](https://github.com/SixSevenAI/SixSevenAI/releases) page.
|
|
10
|
+
2. Install globally:
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm install -g ./sixsevenai-ai-dlc-{version}.tgz
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
### PowerShell Installer (Windows)
|
|
17
|
+
|
|
18
|
+
Download and run `Install-AiDlcCli.ps1` from [Releases](https://github.com/SixSevenAI/SixSevenAI/releases):
|
|
19
|
+
|
|
20
|
+
```powershell
|
|
21
|
+
.\Install-AiDlcCli.ps1
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
### Build from Source
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
git clone https://github.com/SixSevenAI/SixSevenAI.git
|
|
28
|
+
cd SixSevenAI/package
|
|
29
|
+
npm install
|
|
30
|
+
npm run build
|
|
31
|
+
npm pack
|
|
32
|
+
npm install -g ./sixsevenai-ai-dlc-1.0.0.tgz
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Usage
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
# Show version
|
|
39
|
+
ai-dlc --version
|
|
40
|
+
|
|
41
|
+
# List available commands
|
|
42
|
+
ai-dlc list-commands
|
|
43
|
+
|
|
44
|
+
# Prepare a command (validate prerequisites, get output path)
|
|
45
|
+
ai-dlc prepare ai-dlc:start-intent
|
|
46
|
+
|
|
47
|
+
# Verify an artifact was created
|
|
48
|
+
ai-dlc verify ai-dlc:start-intent artifacts/inception/intent-20260209-001.md
|
|
49
|
+
|
|
50
|
+
# Session management
|
|
51
|
+
ai-dlc session start
|
|
52
|
+
ai-dlc session status
|
|
53
|
+
|
|
54
|
+
# Workflow management
|
|
55
|
+
ai-dlc workflow init wf-20260209-001 artifacts/workflows/my-workflow.yaml
|
|
56
|
+
ai-dlc workflow status wf-20260209-001
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## Requirements
|
|
60
|
+
|
|
61
|
+
- Node.js >= 18.0.0
|
|
62
|
+
|
|
63
|
+
## Uninstalling
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
npm uninstall -g @sixsevenai/ai-dlc
|
|
67
|
+
```
|