@norma-team/cli 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/README.md +65 -0
- package/dist/index.js +7580 -0
- package/dist/index.js.map +1 -0
- package/package.json +72 -0
package/README.md
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# Norma
|
|
2
|
+
|
|
3
|
+
**Norma turns a described piece of work into reviewed, verified, done work — with AI
|
|
4
|
+
agents doing the work and a deterministic engine deciding what happens next.**
|
|
5
|
+
|
|
6
|
+
You describe an epic. Norma breaks it into tasks with dependencies, then drives each one
|
|
7
|
+
through your team's real workflow — build → review → QA → done — using agents for the
|
|
8
|
+
creative steps. Your issue tracker (Linear, Jira, GitHub) stays the source of truth.
|
|
9
|
+
|
|
10
|
+
The idea that makes it reliable: **a pure, tested engine decides orchestration; an LLM
|
|
11
|
+
only does the creative work of one task at a time.** Same dependency graph, same
|
|
12
|
+
"one task in flight per lane" rule, same QA gates — every run.
|
|
13
|
+
|
|
14
|
+
## Install
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm i -g @norma/cli # provides the `norma` command
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
`@norma/cli` is a self-contained binary — the whole engine, adapters, and runtimes are
|
|
21
|
+
bundled in.
|
|
22
|
+
|
|
23
|
+
## Try it in 30 seconds
|
|
24
|
+
|
|
25
|
+
No credentials — runs the whole loop against an in-memory board:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
norma demo
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Set it up on your project
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
export LINEAR_API_KEY=lin_api_xxx # or Jira / GitHub credentials
|
|
35
|
+
cd your-project
|
|
36
|
+
norma init # maps your board, picks agents + runtime
|
|
37
|
+
norma epic --brief "Add referral tiers to the product"
|
|
38
|
+
norma cycle <projectId> --slug referral-tiers
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Commands
|
|
42
|
+
|
|
43
|
+
| Command | What it does |
|
|
44
|
+
|---|---|
|
|
45
|
+
| `norma init` | Onboard a project: map the board, pick agents + runtime, generate config. |
|
|
46
|
+
| `norma epic` | Turn a brief (or a `--plan-file`) into a project + tasks + dependency graph. |
|
|
47
|
+
| `norma cycle <id>` | Advance an epic: plan → run agents → write back, to a fixed point. |
|
|
48
|
+
| `norma status <id>` | The board at a glance (per-task phase/owner/batch). |
|
|
49
|
+
| `norma plan <id>` | Print the engine's next actions — read-only, no writes. |
|
|
50
|
+
| `norma report <id>` | Generate the delivery report (`cycle --pr` opens a PR). |
|
|
51
|
+
| `norma serve <id>` | Live dashboard: tasks in columns by phase, animated as the epic runs. |
|
|
52
|
+
| `norma doctor` | Validate config, credentials, board mapping, and agent files. |
|
|
53
|
+
|
|
54
|
+
## Works with your stack
|
|
55
|
+
|
|
56
|
+
- **Trackers:** Linear · Jira · GitHub Issues · in-memory (offline).
|
|
57
|
+
- **Agent runtimes:** Claude Code · OpenCode (multi-provider) · any command/script ·
|
|
58
|
+
humans (review/QA by comment) · echo (offline). Norma *selects* the model; the runtime
|
|
59
|
+
*accesses* it.
|
|
60
|
+
|
|
61
|
+
## Docs
|
|
62
|
+
|
|
63
|
+
Full documentation, architecture, and guides: **https://github.com/marceloF5/norma**
|
|
64
|
+
|
|
65
|
+
MIT © Marcelo Fortunato
|