@reporails/cli 0.5.0 → 0.5.1

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.
Files changed (2) hide show
  1. package/README.md +41 -45
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # @reporails/cli
2
2
 
3
- AI instruction diagnostics for coding agents. Validates instruction files for Claude, Codex, Copilot, Gemini, and Cursor against 90+ deterministic rules.
3
+ AI Instruction Diagnostics for coding agents. Validates the entire agentic instruction system against 90+ rules.
4
4
 
5
- ### Beta — limited 100 spots, free until GA.
5
+ ### Beta — first 100 users free.
6
6
 
7
7
  ## Quick Start
8
8
 
@@ -10,24 +10,22 @@ AI instruction diagnostics for coding agents. Validates instruction files for Cl
10
10
  npx @reporails/cli check
11
11
  ```
12
12
 
13
- That's it. Score and actionable findings no install, no account.
13
+ No install, no account. Actionable findings in seconds:
14
14
 
15
15
  ```
16
16
  Reporails — Diagnostics
17
17
 
18
18
  ┌─ Main (1)
19
- │ CLAUDE.md 12 dir / 5 con · 60% prose
20
- │ ⚠ L1 No NEVER or AVOID statements found CORE:C:0003
21
- L1 No version or date marker found CORE:C:0012
19
+ │ CLAUDE.md 4 dir / 3 con · 73% prose
20
+ │ ⚠ Missing tech stack declaration CORE:C:0034
21
+ ⚠ Missing testing documentation CORE:C:0005
22
+ │ 2 brief · 2 orphan
22
23
 
23
- └─ 3 findings
24
+ └─ 10 findings
24
25
 
25
- ── Summary ──────────────────────────────────────────────
26
-
27
- Score: 7.2 / 10 ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░ (0.3s)
28
- Agent: Claude
29
-
30
- 3 findings · 0 errors · 2 warnings · 1 info
26
+ Score: 7.4 / 10 ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░ (1.2s)
27
+ 10 findings · 8 warnings · 2 info
28
+ Compliance: HIGH
31
29
  ```
32
30
 
33
31
  ## Install
@@ -44,53 +42,51 @@ Once installed globally, use `ails` directly:
44
42
 
45
43
  ```bash
46
44
  ails check
47
- ails auth login # Unlock Pro diagnostics (GitHub sign-in)
45
+ ails auth login # Unlock full diagnostics (GitHub sign-in)
48
46
  ails check # Now with cross-file analysis + compliance scoring
49
47
  ```
50
48
 
51
49
  ## Supported Agents
52
50
 
53
- | Agent | Instruction files |
54
- |-------|-------------------|
55
- | Claude | `CLAUDE.md`, `.claude/rules/*.md`, `.claude/skills/*/SKILL.md` |
56
- | Codex | `AGENTS.md`, `CODEX.md`, `agents/*.md` |
57
- | Copilot | `copilot-instructions.md`, `.github/copilot-instructions.md` |
58
- | Gemini | `GEMINI.md`, `.gemini/rules/*.md` |
59
- | Cursor | `.cursorrules`, `.cursor/rules/*.md` |
51
+ | Agent | Instruction files |
52
+ |---------|-----------------------------------------------------------|
53
+ | Claude | `CLAUDE.md`, `.claude/rules/*.md`, `.claude/skills/*/SKILL.md` |
54
+ | Codex | `AGENTS.md`, `CODEX.md`, `agents/*.md` |
55
+ | Copilot | `.github/copilot-instructions.md` |
56
+ | Gemini | `GEMINI.md`, `.gemini/rules/*.md` |
57
+ | Cursor | `.cursorrules`, `.cursor/rules/*.md` |
60
58
 
61
59
  ## Commands
62
60
 
63
- | Command | Description |
64
- |---------|-------------|
65
- | `check [PATH]` | Validate instruction files (90+ rules) |
66
- | `explain RULE_ID` | Show rule details and fix guidance |
67
- | `heal` | Interactive auto-fix for violations |
68
- | `auth login` | Sign in with GitHub (Pro enrollment) |
69
- | `auth status` | Check auth state |
70
- | `auth logout` | Remove stored credentials |
71
- | `install [PATH]` | Install MCP server for detected agents |
72
- | `version` | Show version info |
61
+ | Command | Description |
62
+ |----------------------|--------------------------------------------|
63
+ | `check [PATH]` | Validate instruction files (90+ rules) |
64
+ | `explain RULE_ID` | Show rule details and fix guidance |
65
+ | `heal` | Auto-fix common violations |
66
+ | `auth login` | Sign in with GitHub |
67
+ | `auth status` | Check auth state |
68
+ | `auth logout` | Remove stored credentials |
69
+ | `install [PATH]` | Install MCP server for detected agents |
70
+ | `version` | Show version info |
73
71
 
74
72
  ## What It Checks
75
73
 
76
- 90+ rules across six categories:
74
+ 90+ rules across five categories:
77
75
 
78
- - **Structure** — File organization, size limits, modularity, imports
79
- - **Content** — Specificity, reinforcement, topic clustering, anti-patterns
80
- - **Context Quality** — Tech stack, project description, domain terminology
81
- - **Efficiency** — Token usage, import depth, elaboration
76
+ - **Structure** — File organization, size limits, modularity
77
+ - **Content** — Specificity, reinforcement, tech stack, domain terminology
78
+ - **Efficiency** — Token usage, elaboration, formatting
82
79
  - **Maintenance** — Versioning, review processes
83
80
  - **Governance** — Security policies, credential protection
84
81
 
85
- ## Unauthenticated vs Authenticated
82
+ ## Offline vs Authenticated
86
83
 
87
- | Feature | Unauthenticated | Authenticated |
88
- |---------|-----------------|---------------|
89
- | Mechanical rules | 70+ | 70+ |
90
- | Deterministic rules | 20+ | 20+ |
91
- | Cross-file analysis | — | Conflicts, repetition |
92
- | Reinforcement detection | — | Orphan instructions, topic clustering |
93
- | Compliance scoring | — | Per-instruction strength |
84
+ | Feature | Offline | Authenticated |
85
+ |----------------------|-------------|------------------------------|
86
+ | Mechanical checks | 70+ rules | 70+ rules |
87
+ | Content checks | 25+ rules | 25+ rules |
88
+ | Cross-file analysis | — | Conflicts, repetition |
89
+ | Compliance scoring | — | Per-instruction strength |
94
90
 
95
91
  ## GitHub Actions
96
92
 
@@ -109,7 +105,7 @@ jobs:
109
105
 
110
106
  ## How It Works
111
107
 
112
- Thin Node.js wrapper around the [reporails-cli](https://pypi.org/project/reporails-cli/) Python package. Commands are proxied via `uvx` — no Python install required. Node.js >= 18 needed. `uv` is auto-installed if missing.
108
+ Thin Node.js wrapper around [reporails-cli](https://pypi.org/project/reporails-cli/). Commands proxied via `uvx` — no Python install required. Node.js >= 18 needed. `uv` auto-installed if missing.
113
109
 
114
110
  ## License
115
111
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reporails/cli",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "AI instruction diagnostics for coding agents",
5
5
  "type": "module",
6
6
  "bin": {