@yaos-git/blueprint-tui 126.0.0 → 126.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.
Files changed (4) hide show
  1. package/README.md +4 -9
  2. package/dist/cli.js +199 -1956
  3. package/dist/tui.js +1959 -0
  4. package/package.json +13 -11
package/README.md CHANGED
@@ -393,20 +393,15 @@ blueprint-tui/
393
393
  │ │ ├── useProcess/ # Process state management
394
394
  │ │ ├── useTour/ # Tour navigation state
395
395
  │ │ └── useUIState/ # UI focus and overlay state
396
- │ ├── loader/ # .blueprint/ directory parser
397
- │ │ ├── frontmatterParser.ts # YAML frontmatter extraction
398
- │ │ └── walker.ts # Directory traversal and validation
399
396
  │ ├── providers/ # React context providers
400
397
  │ │ ├── CommandsProvider/ # Keyboard command registry
401
398
  │ │ ├── ProcessProvider/ # Process spawning and lifecycle
402
399
  │ │ ├── TourProvider/ # Tour state and navigation
403
400
  │ │ └── UIStateProvider/ # Focus, scroll, and overlay state
404
- │ ├── runner/ # Command execution
405
- │ │ ├── oneShot.ts # Run-to-completion commands
406
- │ │ └── persistent.ts # Long-running process management
407
- ├── teleport/ # Editor integration
408
- │ │ ├── editorDetector.ts # Auto-detect installed editor
409
- │ │ └── index.ts # Build and execute editor commands
401
+ │ ├── utils/ # Pure utility functions
402
+ │ │ ├── loader/ # .blueprint/ directory parser
403
+ │ │ ├── runner/ # Command execution (one-shot, persistent)
404
+ │ └── teleport/ # Editor detection and file opening
410
405
  │ └── types/ # TypeScript type definitions
411
406
  │ ├── Process/ # Process state types
412
407
  │ ├── Tour/ # Tour, Chapter, Step Zod schemas