@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.
- package/README.md +4 -9
- package/dist/cli.js +199 -1956
- package/dist/tui.js +1959 -0
- 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
|
-
│ ├──
|
|
405
|
-
│ │ ├──
|
|
406
|
-
│ │
|
|
407
|
-
│
|
|
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
|