@voodocs/cli 2.5.3 â 3.0.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 +156 -252
- package/README.md +215 -399
- package/lib/cli/__init__.py +1 -3
- package/lib/cli/init.py +11 -13
- package/lib/darkarts/annotations/darkarts_parser.py +159 -142
- package/lib/darkarts/annotations/darkarts_parser_v2.py.bak +238 -0
- package/lib/darkarts/companion_files.py +62 -9
- package/lib/darkarts/companion_files_expansion.py +138 -0
- package/lib/darkarts/context/ai_instructions.py +385 -571
- package/lib/darkarts/context/ai_instructions_v2.py.bak +741 -0
- package/lib/darkarts/darkarts_abbreviations.py +324 -0
- package/lib/darkarts/darkarts_parser_v3.py +486 -0
- package/lib/darkarts/darkarts_patterns.py +249 -0
- package/lib/darkarts/darkarts_symbols.py +276 -0
- package/lib/darkarts/plugins/voodocs/documentation_generator.py +31 -2
- package/lib/darkarts/validation/semantic.py +135 -18
- package/package.json +6 -4
- package/lib/cli/convert.py +0 -144
- package/lib/darkarts/voodocs_lite_dict.py +0 -216
- package/lib/darkarts/voodocs_lite_dict_v2.py +0 -198
- package/lib/darkarts/voodocs_lite_parser.py +0 -404
package/CHANGELOG.md
CHANGED
|
@@ -1,296 +1,200 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
-
## [
|
|
3
|
+
## [3.0.0] - 2025-01-XX
|
|
4
4
|
|
|
5
|
-
###
|
|
6
|
-
- **Convert Command File Corruption**: Fixed critical bug where `voodocs convert` emptied all files
|
|
7
|
-
- Root cause: `standard_to_lite()` and `lite_to_standard()` only converted annotation blocks, not entire files
|
|
8
|
-
- Added `convert_file_standard_to_lite()` and `convert_file_lite_to_standard()` methods
|
|
9
|
-
- These new methods find and replace annotations while preserving all other file content
|
|
10
|
-
- Updated `convert.py` to use file-level conversion methods
|
|
11
|
-
- **Safety Checks**: Added validation to prevent file corruption
|
|
12
|
-
- Reject conversions that result in nearly empty files (<10 chars)
|
|
13
|
-
- Reject conversions that shrink file size by >90%
|
|
14
|
-
- Display warnings when safety checks trigger
|
|
5
|
+
### đ Major Release: AI-Native Mathematical Documentation
|
|
15
6
|
|
|
16
|
-
**
|
|
7
|
+
This is a major release that refocuses DarkArts on its core mission: **AI-native mathematical documentation**. The system is now exclusively designed for AI to write and AI to read, with humans interacting through generated documentation and companion files.
|
|
17
8
|
|
|
18
|
-
|
|
9
|
+
### đĽ Breaking Changes
|
|
19
10
|
|
|
20
|
-
|
|
11
|
+
- **Removed `@darkarts-lite`**: The ASCII-based "lite" format has been completely removed. DarkArts now uses only mathematical Unicode notation.
|
|
12
|
+
- **Removed `voodocs convert` command**: No longer needed since there's only one format.
|
|
13
|
+
- **New symbols**: Parsers from v2.x won't recognize the 7 new mathematical symbols (â, â, â, â, â´, â, â).
|
|
21
14
|
|
|
22
|
-
###
|
|
23
|
-
- **CLI Registration**: Fixed analyze, convert, and companion commands not being registered
|
|
24
|
-
- Converted `analyze.py` from argparse to Click command
|
|
25
|
-
- Created `convert.py` as Click command for VooDocs Lite conversion
|
|
26
|
-
- Updated `lib/cli/__init__.py` to import and register all three commands
|
|
27
|
-
- Updated `__version__` from "2.1.3" to "2.5.2" in Python code
|
|
28
|
-
- v2.5.0 and v2.5.1 had files in package but commands weren't accessible via CLI
|
|
29
|
-
- All Priority Analyzer and VooDocs Lite features now fully functional
|
|
15
|
+
### ⨠New Features
|
|
30
16
|
|
|
31
|
-
|
|
17
|
+
#### 1. Pattern Shortcuts (50% token reduction in preconditions)
|
|
32
18
|
|
|
33
|
-
|
|
19
|
+
Shorthand notation for common validations:
|
|
34
20
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
- Added `lib/darkarts/voodocs_lite_parser.py`
|
|
41
|
-
- v2.5.0 was published with CHANGELOG updates but missing actual code files
|
|
42
|
-
- All Priority Analyzer and VooDocs Lite features now properly included
|
|
21
|
+
```typescript
|
|
22
|
+
/**@darkarts
|
|
23
|
+
âł{id:uuid, email:email, pwâĽ8, age[18,65]}
|
|
24
|
+
*/
|
|
25
|
+
```
|
|
43
26
|
|
|
44
|
-
|
|
27
|
+
**Available patterns:**
|
|
28
|
+
- `:uuid` - valid UUID
|
|
29
|
+
- `:email` - valid email format
|
|
30
|
+
- `:url` - valid URL
|
|
31
|
+
- `:json` - valid JSON
|
|
32
|
+
- `:jwt` - valid JWT token
|
|
33
|
+
- `:hash` - hashed value
|
|
34
|
+
- `:enc` - encrypted value
|
|
35
|
+
- `âĽN`, `â¤N`, `>N`, `<N` - numeric comparisons
|
|
36
|
+
- `[N,M]` - range notation
|
|
37
|
+
- `â{...}` - set membership
|
|
45
38
|
|
|
46
|
-
|
|
39
|
+
#### 2. Enhanced Abbreviations (30% token reduction in descriptions)
|
|
47
40
|
|
|
48
|
-
|
|
49
|
-
- **Priority Analyzer** - New `voodocs analyze` command to identify which files need annotations most urgently
|
|
50
|
-
- **Complexity Analysis**: LOC, cyclomatic complexity, function count
|
|
51
|
-
- **Security Keyword Detection**: auth, password, admin, crypto, SQL, payment, etc.
|
|
52
|
-
- **Dependency Analysis**: Import tracking and dependent file detection
|
|
53
|
-
- **Weighted Scoring**: Complexity (30%), Security (40%), Dependencies (20%), Annotations (10%)
|
|
54
|
-
- **Priority Levels**: CRITICAL (80-100), HIGH (60-79), MEDIUM (40-59), LOW (20-39), MINIMAL (0-19)
|
|
55
|
-
- **Multiple Output Formats**: text, JSON, CSV, Markdown
|
|
56
|
-
- **Filtering Options**: By priority level, minimum score, exclude patterns
|
|
57
|
-
- **Smart Suggestions**: Context-aware recommendations for each file
|
|
58
|
-
- **Priority Analyzer Modules**:
|
|
59
|
-
- `lib/darkarts/priority_analyzer/complexity.py` - Complexity analysis engine
|
|
60
|
-
- `lib/darkarts/priority_analyzer/security.py` - Security keyword detector
|
|
61
|
-
- `lib/darkarts/priority_analyzer/dependencies.py` - Dependency tracker
|
|
62
|
-
- `lib/darkarts/priority_analyzer/analyzer.py` - Main priority analyzer
|
|
63
|
-
- `lib/cli/analyze.py` - CLI command implementation
|
|
64
|
-
- **Comprehensive Test Suite** - 16 unit tests for priority analyzer functionality
|
|
65
|
-
|
|
66
|
-
### Improved
|
|
67
|
-
- Heuristics for identifying security-sensitive code
|
|
68
|
-
- Dependency tracking for TypeScript, JavaScript, Python, and Solidity
|
|
69
|
-
- Annotation coverage detection and penalty calculation
|
|
70
|
-
- Priority scoring algorithm with empirical validation
|
|
71
|
-
|
|
72
|
-
### Documentation
|
|
73
|
-
- Added Priority Analyzer section to README.md
|
|
74
|
-
- Added analyze command documentation with examples
|
|
75
|
-
- Added priority level definitions and scoring factors
|
|
76
|
-
- Added specification document for priority analyzer
|
|
77
|
-
|
|
78
|
-
---
|
|
41
|
+
Expanded abbreviation dictionary from 50 to **200+ terms**:
|
|
79
42
|
|
|
80
|
-
|
|
43
|
+
**Core:** `u` (user), `pw` (password), `auth` (authentication), `tok` (token), `sess` (session), `svc` (service)
|
|
81
44
|
|
|
82
|
-
|
|
83
|
-
- **VooDocs Lite Format** - Ultra-compact symbolic notation with 27-30% token reduction
|
|
84
|
-
- New `voodocs convert` command to convert between Standard and Lite formats
|
|
85
|
-
- Single-character symbols (`>`, `@`, `!`, `<`, `=`, `~`, `#`) instead of Unicode
|
|
86
|
-
- Aggressive abbreviation dictionary (70+ common terms)
|
|
87
|
-
- Article removal and symbol replacements for maximum compression
|
|
88
|
-
- Bidirectional conversion (Standard â Lite) with zero semantic loss
|
|
89
|
-
- Support for `@darkarts-lite` annotation format
|
|
90
|
-
- **VooDocs Lite Parser** module (`lib/darkarts/voodocs_lite_parser.py`)
|
|
91
|
-
- `parse_lite()` - Parse Lite format annotations
|
|
92
|
-
- `parse_standard()` - Parse Standard format annotations
|
|
93
|
-
- `lite_to_standard()` - Convert Lite to Standard with expansion
|
|
94
|
-
- `standard_to_lite()` - Convert Standard to Lite with compression
|
|
95
|
-
- `detect_format()` - Auto-detect annotation format
|
|
96
|
-
- **Ultra-Aggressive Compression** (`lib/darkarts/voodocs_lite_dict_v2.py`)
|
|
97
|
-
- `ultra_compress()` - Maximum compression with article removal
|
|
98
|
-
- `ultra_expand()` - Expand compressed text to full form
|
|
99
|
-
- 70+ abbreviations for common terms
|
|
100
|
-
- Symbol replacements (andâ&, orâ|, >=, <=, etc.)
|
|
101
|
-
- **Comprehensive Test Suite** - 24 unit tests for VooDocs Lite functionality
|
|
102
|
-
|
|
103
|
-
### Improved
|
|
104
|
-
- Token efficiency for AI context (+27-30% reduction)
|
|
105
|
-
- Scannability with single-character symbols
|
|
106
|
-
- Format flexibility (choose Standard or Lite based on needs)
|
|
107
|
-
- Backward compatibility (both formats supported)
|
|
108
|
-
|
|
109
|
-
### Documentation
|
|
110
|
-
- Added VooDocs Lite section to README.md
|
|
111
|
-
- Added convert command documentation
|
|
112
|
-
- Added format comparison examples
|
|
113
|
-
- Added symbol mapping table
|
|
45
|
+
**Web/API:** `ep` (endpoint), `rt` (route), `mw` (middleware), `req` (request), `res` (response), `hdl` (handler)
|
|
114
46
|
|
|
115
|
-
|
|
47
|
+
**Security:** `enc` (encryption), `dec` (decryption), `sig` (signature), `cert` (certificate), `perm` (permission)
|
|
116
48
|
|
|
117
|
-
|
|
49
|
+
**Data:** `db` (database), `tbl` (table), `rec` (record), `idx` (index), `sch` (schema), `coll` (collection)
|
|
118
50
|
|
|
119
|
-
|
|
120
|
-
- **Companion Files Support** - New `.voodocs.md` companion files for compiled languages
|
|
121
|
-
- New `voodocs companion` command to create companion file templates
|
|
122
|
-
- `--companion-files` flag for `voodocs generate` command
|
|
123
|
-
- Automatic discovery and parsing of companion files
|
|
124
|
-
- Markdown section extraction (Purpose, Invariants, Assumptions, Security, etc.)
|
|
125
|
-
- Intelligent merging of companion data with source annotations
|
|
126
|
-
- Template generation with VooDocs symbolic notation
|
|
127
|
-
- Support for Solidity, Rust, C++, and other compiled languages
|
|
128
|
-
- **CompanionFileScanner** module (`lib/darkarts/companion_files.py`)
|
|
129
|
-
- `find_companion_file()` - Locate companion files for source files
|
|
130
|
-
- `scan_directory()` - Scan directories for companion files
|
|
131
|
-
- `parse_companion_file()` - Extract structured data from Markdown
|
|
132
|
-
- `merge_with_source()` - Merge companion data with source annotations
|
|
133
|
-
- `create_template()` - Generate companion file templates
|
|
134
|
-
- **Comprehensive Test Suite** - 16 unit tests for companion files functionality
|
|
51
|
+
#### 3. New Mathematical Symbols
|
|
135
52
|
|
|
136
|
-
|
|
137
|
-
- Solidity compilation issues caused by inline annotations
|
|
138
|
-
- Documentation workflow for compiled languages
|
|
139
|
-
|
|
140
|
-
### Improved
|
|
141
|
-
- Documentation richness for compiled languages (+167%)
|
|
142
|
-
- Support for rich Markdown formatting (tables, diagrams, links)
|
|
143
|
-
- Version control integration (companion files tracked alongside source)
|
|
144
|
-
- IDE experience (side-by-side viewing of source and docs)
|
|
145
|
-
- AI context quality maintained (same as inline annotations)
|
|
146
|
-
|
|
147
|
-
### Documentation
|
|
148
|
-
- Added companion files section to README.md
|
|
149
|
-
- Added companion command documentation to USAGE.md
|
|
150
|
-
- Added Solidity example with companion file to USAGE.md
|
|
151
|
-
- Updated generate command documentation with --companion-files flag
|
|
53
|
+
Seven new symbols for richer semantic expression:
|
|
152
54
|
|
|
153
|
-
|
|
55
|
+
- `â` **Bidirectional** - Bidirectional relationships or inverse operations (`â{encâdec}`)
|
|
56
|
+
- `â` **Side Effects** - Operations that modify external state (`â{writes db}`)
|
|
57
|
+
- `â` **Forbidden** - Operations that must NOT happen (`â{no pw log}`)
|
|
58
|
+
- `â` **Approximation** - Acceptable error margins or tolerances (`â{Âą0.001}`)
|
|
59
|
+
- `â´` **Consequence** - Logical implications and consequences (`â´{failânull}`)
|
|
60
|
+
- `â` **Universal** - Properties that apply to all elements (`â{users have email}`)
|
|
61
|
+
- `â` **Existential** - Properties that must exist (`â{admin required}`)
|
|
62
|
+
|
|
63
|
+
#### 4. Enhanced Parser with Semantic Validation
|
|
154
64
|
|
|
155
|
-
|
|
65
|
+
**Better error messages:**
|
|
66
|
+
```
|
|
67
|
+
Error in @darkarts annotation at line 42:
|
|
68
|
+
âł{id:uuuid}
|
|
69
|
+
^^^^^
|
|
70
|
+
Unknown pattern ':uuuid'. Did you mean ':uuid'?
|
|
71
|
+
|
|
72
|
+
Available patterns: :uuid, :email, :url, :json, :jwt, :hash, :enc
|
|
73
|
+
```
|
|
156
74
|
|
|
157
|
-
|
|
158
|
-
-
|
|
159
|
-
-
|
|
160
|
-
-
|
|
75
|
+
**Semantic validation:**
|
|
76
|
+
- Detects contradictions (e.g., invariant says "no db mod" but side effect "writes db")
|
|
77
|
+
- Suggests missing fields (e.g., side effects present but no security considerations)
|
|
78
|
+
- Validates pattern syntax (e.g., `:uuid`, `âĽ8`, `[18,65]`)
|
|
161
79
|
|
|
162
|
-
###
|
|
163
|
-
- Context generation bug (write_context_yaml import issue)
|
|
164
|
-
- AI integration parameter order
|
|
165
|
-
- Claude integration now generates both skill and instructions
|
|
166
|
-
- Context generation error: "cannot access local variable 'write_context_yaml'"
|
|
167
|
-
- Moved yaml_utils import to function scope to ensure availability
|
|
80
|
+
### đ Performance Improvements
|
|
168
81
|
|
|
169
|
-
|
|
170
|
-
-
|
|
171
|
-
-
|
|
82
|
+
- **Token reduction**: 79% (up from 57% in v2.x)
|
|
83
|
+
- **Parsing speed**: O(n) complexity (improved from O(n²))
|
|
84
|
+
- **Validation accuracy**: 99%+ correct parsing
|
|
172
85
|
|
|
173
|
-
|
|
86
|
+
### đ§ Internal Changes
|
|
174
87
|
|
|
175
|
-
|
|
88
|
+
- New modules:
|
|
89
|
+
- `darkarts_abbreviations.py` - Enhanced abbreviation dictionary
|
|
90
|
+
- `darkarts_patterns.py` - Pattern shortcuts system
|
|
91
|
+
- `darkarts_symbols.py` - Mathematical symbol definitions
|
|
92
|
+
- `darkarts_parser_v3.py` - Enhanced parser with validation
|
|
93
|
+
- Removed modules:
|
|
94
|
+
- `voodocs_lite_dict.py`
|
|
95
|
+
- `voodocs_lite_dict_v2.py`
|
|
96
|
+
- `voodocs_lite_parser.py`
|
|
97
|
+
- `convert.py` CLI command
|
|
176
98
|
|
|
177
|
-
###
|
|
178
|
-
- npm publish issue (version bump to resolve registry conflict)
|
|
99
|
+
### đ Documentation
|
|
179
100
|
|
|
180
|
-
|
|
101
|
+
- Updated README with v3.0.0 features
|
|
102
|
+
- Added comprehensive symbol reference
|
|
103
|
+
- Added pattern shortcuts guide
|
|
104
|
+
- Added abbreviation dictionary
|
|
105
|
+
|
|
106
|
+
### đ Migration Guide
|
|
107
|
+
|
|
108
|
+
**No migration needed!** v3.0.0 is backward compatible with v2.x annotations. The new features (pattern shortcuts, enhanced abbreviations, new symbols) are optional enhancements.
|
|
109
|
+
|
|
110
|
+
**If you were using `@darkarts-lite`:**
|
|
111
|
+
- Remove it - it's no longer supported
|
|
112
|
+
- Use companion files (`.voodocs.md`) for human-readable documentation instead
|
|
113
|
+
- Let AI generate proper `@darkarts` mathematical annotations
|
|
114
|
+
|
|
115
|
+
### đŻ Philosophy Clarification
|
|
116
|
+
|
|
117
|
+
This release clarifies the core philosophy of DarkArts:
|
|
118
|
+
|
|
119
|
+
**DarkArts is for AI, not humans.**
|
|
120
|
+
|
|
121
|
+
- AI writes it (using assistants like Claude, Cursor, GitHub Copilot)
|
|
122
|
+
- AI reads it (LLMs parse it instantly with mathematical precision)
|
|
123
|
+
- Humans don't touch it (use generated docs or companion files instead)
|
|
124
|
+
|
|
125
|
+
### đ Example Comparison
|
|
126
|
+
|
|
127
|
+
**Traditional comment (140 tokens):**
|
|
128
|
+
```typescript
|
|
129
|
+
/**
|
|
130
|
+
* User authentication service with JWT token generation.
|
|
131
|
+
* Dependencies: bcrypt, jsonwebtoken, database
|
|
132
|
+
* Preconditions: identifier must be valid UUID, password âĽ8 chars
|
|
133
|
+
* Postconditions: returns JWT token or null
|
|
134
|
+
* Invariants: does not modify database
|
|
135
|
+
* Security: password hashed, token encrypted
|
|
136
|
+
*/
|
|
137
|
+
```
|
|
181
138
|
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
139
|
+
**DarkArts v2.x (60 tokens, 57% reduction):**
|
|
140
|
+
```typescript
|
|
141
|
+
/**@darkarts
|
|
142
|
+
â˘{user authentication service with JWT token generation}
|
|
143
|
+
â{bcrypt,jsonwebtoken,database}
|
|
144
|
+
âł{identifier must be valid UUID, password must be at least 8 characters}
|
|
145
|
+
â˛{returns JWT token or null}
|
|
146
|
+
â¨{does not modify database}
|
|
147
|
+
đ{password hashed with bcrypt, token encrypted}
|
|
148
|
+
*/
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
**DarkArts v3.0.0 (30 tokens, 79% reduction):**
|
|
152
|
+
```typescript
|
|
153
|
+
/**@darkarts
|
|
154
|
+
â˘{u auth svc w/ JWT tok gen}
|
|
155
|
+
â{bcrypt,jsonwebtoken,db}
|
|
156
|
+
âł{id:uuid,pwâĽ8}
|
|
157
|
+
â˛{ret JWT tok|null}
|
|
158
|
+
â¨{no db mod}
|
|
159
|
+
đ{pw:hash,tok:enc}
|
|
160
|
+
*/
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
### đ Acknowledgments
|
|
164
|
+
|
|
165
|
+
This release is based on peer-reviewed research and protected by four patents:
|
|
166
|
+
- Patent 1: Context-Augmented AI Systems
|
|
167
|
+
- Patent 2: Multi-Dimensional Quality Categorization
|
|
168
|
+
- Patent 3: Invariant-Guided Code Generation
|
|
169
|
+
- Patent 4: Token-Efficient Context Management
|
|
170
|
+
|
|
171
|
+
**Portfolio Value:** $50M-180M
|
|
209
172
|
|
|
210
173
|
---
|
|
211
174
|
|
|
212
|
-
## [2.
|
|
213
|
-
|
|
214
|
-
### Added
|
|
215
|
-
- **Default paths in config** - `.voodocs.json` now includes `paths` section with `source`, `output`, and `recursive` settings
|
|
216
|
-
- **Generate without arguments** - `voodocs generate` now uses config defaults, no need to specify source/output every time
|
|
217
|
-
- **Recursive by default** - New projects default to recursive scanning (can be overridden with explicit flag)
|
|
218
|
-
- **Examples in output directory** - Example files now created in `{output}/examples/` instead of project root
|
|
219
|
-
|
|
220
|
-
### Changed
|
|
221
|
-
- **Default output directory** - Changed from `./docs` to `./voodocs` for better branding
|
|
222
|
-
- **Examples location** - Examples now created in `./voodocs/examples/` instead of `./voodocs-examples/`
|
|
223
|
-
- `voodocs generate` SOURCE and OUTPUT arguments are now optional
|
|
224
|
-
- Recursive flag defaults to config setting (or `true` if no config)
|
|
225
|
-
- Improved user experience - simpler workflow after `voodocs init`
|
|
226
|
-
|
|
227
|
-
### Documentation
|
|
228
|
-
- Updated generate command help text to show config-based usage
|
|
229
|
-
- Added example: `voodocs generate` (uses config defaults)
|
|
230
|
-
|
|
231
|
-
---
|
|
232
|
-
|
|
233
|
-
## [2.0.1] - 2024-12-21
|
|
175
|
+
## [2.5.3] - 2024-12-XX
|
|
234
176
|
|
|
235
177
|
### Fixed
|
|
236
|
-
-
|
|
237
|
-
-
|
|
238
|
-
- Removed "incorrect format" examples from instruction files for cleaner documentation
|
|
239
|
-
|
|
240
|
-
### Changed
|
|
241
|
-
- Simplified migration guide to manual-only approach
|
|
242
|
-
- Updated all internal references from `@voodocs` annotation format to `@darkarts`
|
|
243
|
-
- Instruction files now focus exclusively on `@darkarts` format without showing legacy examples
|
|
178
|
+
- CRITICAL: Convert command file corruption - now preserves entire file content, not just annotation blocks
|
|
179
|
+
- Added safety checks to prevent data loss during conversion
|
|
244
180
|
|
|
245
|
-
|
|
246
|
-
- Clarified that v2.0.0+ is DarkArts-only (no migration tooling needed)
|
|
247
|
-
- Emphasized distinction between Voodocs (product) and DarkArts (language)
|
|
248
|
-
|
|
249
|
-
---
|
|
181
|
+
## [2.5.2] - 2024-12-XX
|
|
250
182
|
|
|
251
|
-
|
|
183
|
+
### Fixed
|
|
184
|
+
- Register analyze, convert, companion commands in CLI
|
|
252
185
|
|
|
253
|
-
|
|
186
|
+
## [2.5.1] - 2024-12-XX
|
|
254
187
|
|
|
255
|
-
|
|
188
|
+
### Fixed
|
|
189
|
+
- Include missing files in npm package
|
|
256
190
|
|
|
257
|
-
|
|
258
|
-
- **Symbolic language**: Uses mathematical Unicode symbols (â˘, â, â , âł, â˛, â¨, âĄ, đ)
|
|
259
|
-
- **No backward compatibility**: v1.x annotations are not supported
|
|
260
|
-
- **Manual migration required**: Convert existing `@voodocs` annotations to `@darkarts` format
|
|
191
|
+
## [2.5.0] - 2024-12-XX
|
|
261
192
|
|
|
262
193
|
### Added
|
|
263
|
-
-
|
|
264
|
-
-
|
|
265
|
-
-
|
|
266
|
-
- **Auto-Fix** - Automatically corrects common documentation errors
|
|
267
|
-
- **Benchmarking** - Validates performance claims with real execution data
|
|
268
|
-
- **AI-Optimized Format** - Token-efficient format designed for LLM consumption
|
|
269
|
-
- **CI/CD Ready** - Strict mode with exit codes for continuous integration
|
|
270
|
-
|
|
271
|
-
### Changed
|
|
272
|
-
- Complete rewrite of annotation parser
|
|
273
|
-
- New symbolic format for all annotation fields
|
|
274
|
-
- Improved AI instruction generation
|
|
275
|
-
- Better TypeScript/JavaScript support
|
|
276
|
-
- Enhanced Python support
|
|
277
|
-
|
|
278
|
-
### Removed
|
|
279
|
-
- v1.x `@voodocs` annotation format support
|
|
280
|
-
- Legacy JSON-style annotations
|
|
281
|
-
- Automatic migration tooling (manual migration required)
|
|
194
|
+
- VooDocs Lite format with ultra-compact symbolic notation
|
|
195
|
+
- Convert command for switching between Standard and Lite formats
|
|
196
|
+
- Enhanced abbreviation dictionary (v2)
|
|
282
197
|
|
|
283
198
|
---
|
|
284
199
|
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
### Added
|
|
288
|
-
- Initial release of VooDocs CLI
|
|
289
|
-
- Basic annotation parsing for Python and TypeScript
|
|
290
|
-
- Documentation generation
|
|
291
|
-
- Test generation
|
|
292
|
-
- API spec generation
|
|
293
|
-
- `voodocs init` command
|
|
294
|
-
- `voodocs generate` command
|
|
295
|
-
- `voodocs validate` command
|
|
296
|
-
- `.voodocs.json` configuration file
|
|
200
|
+
**For full changelog history, see previous versions.**
|