@voodocs/cli 2.1.1 → 2.1.2

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 CHANGED
@@ -1,3 +1,9 @@
1
+ ## [2.1.2] - 2025-12-21
2
+
3
+ ### Fixed
4
+ - Context generation error: "cannot access local variable 'write_context_yaml'"
5
+ - Moved yaml_utils import to function scope to ensure availability
6
+
1
7
  ## [2.1.1] - 2025-12-21
2
8
 
3
9
  ### Fixed
@@ -16,7 +16,7 @@ This module provides the command-line interface for VooDocs.
16
16
  import click
17
17
  from typing import Optional
18
18
 
19
- __version__ = "2.1.1"
19
+ __version__ = "2.1.2"
20
20
 
21
21
 
22
22
  @click.group()
@@ -1198,6 +1198,7 @@ def cmd_context_generate(source_dir: Optional[str] = None, update_existing: bool
1198
1198
  """
1199
1199
  from pathlib import Path
1200
1200
  import sys
1201
+ from .yaml_utils import write_context_yaml
1201
1202
 
1202
1203
  try:
1203
1204
  # Determine source directory
@@ -1291,7 +1292,6 @@ def cmd_context_generate(source_dir: Optional[str] = None, update_existing: bool
1291
1292
  project_purpose="Auto-generated from @darkarts annotations",
1292
1293
  code_version="1.0.0"
1293
1294
  )
1294
- from .yaml_utils import write_context_yaml
1295
1295
  context_path = get_context_file_path()
1296
1296
  write_context_yaml(minimal_context, context_path)
1297
1297
  info(f"Created context file: {context_path}")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voodocs/cli",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "AI-Native Symbolic Documentation System - The world's first documentation tool using mathematical notation with semantic validation",
5
5
  "main": "voodocs_cli.py",
6
6
  "bin": {