@chappibunny/repolens 1.2.0 โ 1.3.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.
- package/CHANGELOG.md +27 -1
- package/README.md +78 -1108
- package/RELEASE.md +1 -1
- package/package.json +1 -1
- package/src/cli.js +92 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to RepoLens will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## 1.3.1
|
|
6
|
+
|
|
7
|
+
### ๐ Documentation Overhaul
|
|
8
|
+
|
|
9
|
+
- **README restructured for marketing & onboarding** โ 942 โ 270 lines. Pain-focused opening, compact feature table, scannable layout. Previously buried the value proposition under spec-sheet detail.
|
|
10
|
+
- **New [ONBOARDING.md](ONBOARDING.md)** โ Full step-by-step guide extracted from README (publishers, AI, Notion, Confluence, GitHub Wiki, Discord, CI/CD). Previously 350+ lines inside README.
|
|
11
|
+
- **Security & Telemetry sections condensed** โ ~200 lines of detail replaced with 3-line summaries linking to SECURITY.md and TELEMETRY.md.
|
|
12
|
+
- **22-item feature checklist โ 8-row "Why RepoLens" table** โ Scannable, benefit-focused instead of spec-sheet.
|
|
13
|
+
- **Unified documentation table** โ All 10 supporting docs linked from one place.
|
|
14
|
+
- **Fixed 11 version references** across docs (1.3.0 โ 1.3.1).
|
|
15
|
+
- **npm version badge** added to README header.
|
|
16
|
+
|
|
17
|
+
## 1.3.0
|
|
18
|
+
|
|
19
|
+
### โจ New Feature: `repolens demo`
|
|
20
|
+
|
|
21
|
+
- **Zero-config local preview**: New `demo` command generates documentation locally without any API keys or publisher configuration. Works on any repository, even without a `.repolens.yml` โ uses sensible default scan patterns.
|
|
22
|
+
- **Instant onboarding**: Run `npx @chappibunny/repolens demo` on any repo to see what RepoLens generates. Output written to `.repolens/` directory.
|
|
23
|
+
- **Config-aware**: If a `.repolens.yml` exists, demo uses it. Otherwise, defaults to scanning common source patterns (`js`, `ts`, `py`, `go`, `rs`, `java`, etc.) with standard ignore paths.
|
|
24
|
+
|
|
25
|
+
### ๐ Documentation
|
|
26
|
+
|
|
27
|
+
- Added demo command to all documentation: README, STABILITY, ROADMAP, copilot-instructions
|
|
28
|
+
- Added "Quick Preview" section to README usage guide
|
|
29
|
+
- Updated all version references to 1.3.0
|
|
30
|
+
|
|
5
31
|
## 1.2.0
|
|
6
32
|
|
|
7
33
|
### โจ Config Migration
|
|
@@ -110,7 +136,7 @@ RepoLens v1.0.0 marks the first stable release with a frozen public API. All CLI
|
|
|
110
136
|
- Config schema updated: `plugins` array validated, custom publisher names accepted
|
|
111
137
|
|
|
112
138
|
### ๐งช Tests
|
|
113
|
-
- Added 21 new plugin tests + 21 publisher parser tests (
|
|
139
|
+
- Added 21 new plugin tests + 21 publisher parser tests (185 tests across 15 files)
|
|
114
140
|
|
|
115
141
|
### ๐ง Output Quality
|
|
116
142
|
- **Notion Publisher**: Full table support (table blocks with `table_row` children), blockquote โ callout, dividers, numbered lists, h3 headings, inline rich text (`**bold**`, `*italic*`, `` `code` ``)
|