@vielzeug/codex 1.0.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/README.md +142 -0
- package/data/.cache.json +33 -0
- package/data/llms-full.txt +43590 -0
- package/data/llms.txt +117 -0
- package/data/vielzeug-data.json +14554 -0
- package/dist/__tests__/server.test.js +346 -0
- package/dist/__tests__/server.test.js.map +1 -0
- package/dist/__tests__/unit.test.js +502 -0
- package/dist/__tests__/unit.test.js.map +1 -0
- package/dist/_log.js +5 -0
- package/dist/_log.js.map +1 -0
- package/dist/cli.js +94 -0
- package/dist/cli.js.map +1 -0
- package/dist/data.js +91 -0
- package/dist/data.js.map +1 -0
- package/dist/errors.js +26 -0
- package/dist/errors.js.map +1 -0
- package/dist/frontmatter.js +72 -0
- package/dist/frontmatter.js.map +1 -0
- package/dist/generator.js +176 -0
- package/dist/generator.js.map +1 -0
- package/dist/http.js +108 -0
- package/dist/http.js.map +1 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -0
- package/dist/llms.js +162 -0
- package/dist/llms.js.map +1 -0
- package/dist/port.js +12 -0
- package/dist/port.js.map +1 -0
- package/dist/resources.js +4 -0
- package/dist/resources.js.map +1 -0
- package/dist/search.js +125 -0
- package/dist/search.js.map +1 -0
- package/dist/server.js +13 -0
- package/dist/server.js.map +1 -0
- package/dist/tools/index.js +62 -0
- package/dist/tools/index.js.map +1 -0
- package/dist/tools/packages.js +196 -0
- package/dist/tools/packages.js.map +1 -0
- package/dist/tools/refine.js +329 -0
- package/dist/tools/refine.js.map +1 -0
- package/dist/tools/schema.js +37 -0
- package/dist/tools/schema.js.map +1 -0
- package/dist/tools/shared.js +27 -0
- package/dist/tools/shared.js.map +1 -0
- package/dist/tools.js +1040 -0
- package/dist/tools.js.map +1 -0
- package/dist/types.js +4 -0
- package/dist/types.js.map +1 -0
- package/package.json +47 -0
package/data/llms.txt
ADDED
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
# Vielzeug
|
|
2
|
+
|
|
3
|
+
> 30 focused TypeScript packages for state, UI, data, storage, routing, utilities, and AI tooling. Version: 1.0.2
|
|
4
|
+
|
|
5
|
+
Vielzeug is a monorepo of focused TypeScript packages — from low-level utilities to UI primitives,
|
|
6
|
+
routing, storage, validation, workers, and an MCP server for AI assistants. Packages are designed
|
|
7
|
+
to be independently consumable, ship ESM + CJS output, and target ES2022.
|
|
8
|
+
|
|
9
|
+
Install any package independently: `pnpm add @vielzeug/<name>`
|
|
10
|
+
|
|
11
|
+
**MCP (AI agents):** `npx -y @vielzeug/codex` runs the Vielzeug MCP server in standalone stdio mode
|
|
12
|
+
with bundled data — no monorepo checkout required. Use `npx -y @vielzeug/codex --port 3100`
|
|
13
|
+
for Streamable HTTP with package discovery, docs lookup, source inspection, and Refine component metadata.
|
|
14
|
+
|
|
15
|
+
## Packages
|
|
16
|
+
|
|
17
|
+
### state
|
|
18
|
+
|
|
19
|
+
- [@vielzeug/clockwork](/clockwork/): Zero-dependency typed FSM with async invokes, delayed transitions, hierarchical states, middleware, reactive state, persistence, tracing, and full TypeScript support. → [api](/clockwork/api) · [usage](/clockwork/usage) · [examples](/clockwork/examples)
|
|
20
|
+
- [@vielzeug/ripple](/ripple/): Tiny, type-safe reactive primitives — signals, effects, computed values, and object stores. Zero dependencies, works everywhere. → [api](/ripple/api) · [usage](/ripple/usage) · [examples](/ripple/examples)
|
|
21
|
+
|
|
22
|
+
### ui
|
|
23
|
+
|
|
24
|
+
- [@vielzeug/orbit](/orbit/): Zero-dependency floating element positioning for tooltips, dropdowns, menus, and popovers. → [api](/orbit/api) · [usage](/orbit/usage) · [examples](/orbit/examples)
|
|
25
|
+
- [@vielzeug/prism](/prism/): Reactive SVG charting library — line, bar, and area charts. Signal-driven updates, CSS-themeable, accessible. → [api](/prism/api) · [usage](/prism/usage) · [examples](/prism/examples)
|
|
26
|
+
|
|
27
|
+
### ui-components
|
|
28
|
+
|
|
29
|
+
- [@vielzeug/refine](/refine/): Accessible, themeable web components built with Ore for framework and vanilla DOM apps. → [api](/refine/api) · [usage](/refine/usage)
|
|
30
|
+
|
|
31
|
+
### ui-primitives
|
|
32
|
+
|
|
33
|
+
- [@vielzeug/ore](/ore/): Functional custom-element authoring with typed props, reactive templates, lifecycle helpers, observers, and testing utilities. → [api](/ore/api) · [usage](/ore/usage) · [examples](/ore/examples)
|
|
34
|
+
- [@vielzeug/sandbox](/sandbox/): Isolated iframe runtime with a typed postMessage bridge for safe execution of untrusted HTML — component previews, playgrounds, plugin sandboxes, and more. → [api](/sandbox/api) · [usage](/sandbox/usage) · [examples](/sandbox/examples)
|
|
35
|
+
|
|
36
|
+
### ui-interaction
|
|
37
|
+
|
|
38
|
+
- [@vielzeug/dnd](/dnd/): Framework-agnostic drag-and-drop. Drop zones with MIME filtering, sortable lists with drag handles, and explicit connected scopes — zero dependencies. → [api](/dnd/api) · [usage](/dnd/usage) · [examples](/dnd/examples)
|
|
39
|
+
|
|
40
|
+
### ui-performance
|
|
41
|
+
|
|
42
|
+
- [@vielzeug/scroll](/scroll/): Lightweight, framework-agnostic virtual list engine with variable heights, sticky headers, grid support, and zero dependencies. → [api](/scroll/api) · [usage](/scroll/usage) · [examples](/scroll/examples)
|
|
43
|
+
|
|
44
|
+
### forms
|
|
45
|
+
|
|
46
|
+
- [@vielzeug/forge](/forge/): Framework-agnostic typed form state with path-safe fields, unified validation API, deterministic submit flow, and browser-friendly helpers. → [api](/forge/api) · [usage](/forge/usage) · [examples](/forge/examples)
|
|
47
|
+
|
|
48
|
+
### data
|
|
49
|
+
|
|
50
|
+
- [@vielzeug/sourcerer](/sourcerer/): Typed reactive data sources for pagination, filtering, sorting, search, and infinite scroll. → [api](/sourcerer/api) · [usage](/sourcerer/usage) · [examples](/sourcerer/examples)
|
|
51
|
+
|
|
52
|
+
### http
|
|
53
|
+
|
|
54
|
+
- [@vielzeug/courier](/courier/): Type-safe HTTP, query cache, mutations, SSE, and readable streaming built on native fetch. → [api](/courier/api) · [usage](/courier/usage) · [examples](/courier/examples)
|
|
55
|
+
|
|
56
|
+
### websockets
|
|
57
|
+
|
|
58
|
+
- [@vielzeug/pulse](/pulse/): Full-featured WebSocket client with typed messaging, channel multiplexing, room management, reactive presence, auto-reconnect, and heartbeat — built on ripple signals. → [api](/pulse/api) · [usage](/pulse/usage) · [examples](/pulse/examples)
|
|
59
|
+
|
|
60
|
+
### events
|
|
61
|
+
|
|
62
|
+
- [@vielzeug/herald](/herald/): Zero-dependency typed event bus with subscribe/emit, wait(), async streams, AbortSignal support, bus piping, and test helpers. → [api](/herald/api) · [usage](/herald/usage) · [examples](/herald/examples)
|
|
63
|
+
|
|
64
|
+
### workers
|
|
65
|
+
|
|
66
|
+
- [@vielzeug/familiar](/familiar/): Typed Web Worker pools with queuing, priorities, streaming, heartbeat, and testing utilities. → [api](/familiar/api) · [usage](/familiar/usage) · [examples](/familiar/examples)
|
|
67
|
+
|
|
68
|
+
### storage
|
|
69
|
+
|
|
70
|
+
- [@vielzeug/vault](/vault/): Typed browser storage with a compact API for LocalStorage, SessionStorage, IndexedDB, and Memory. → [api](/vault/api) · [usage](/vault/usage) · [examples](/vault/examples)
|
|
71
|
+
|
|
72
|
+
### auth
|
|
73
|
+
|
|
74
|
+
- [@vielzeug/ward](/ward/): Minimal authorization engine with deterministic precedence, wildcard support, and runtime predicates. → [api](/ward/api) · [usage](/ward/usage) · [examples](/ward/examples)
|
|
75
|
+
|
|
76
|
+
### routing
|
|
77
|
+
|
|
78
|
+
- [@vielzeug/wayfinder](/wayfinder/): Framework-agnostic client-side router with typed params, async data loading, middleware, leave guards, and View Transitions support. → [api](/wayfinder/api) · [usage](/wayfinder/usage) · [examples](/wayfinder/examples)
|
|
79
|
+
|
|
80
|
+
### i18n
|
|
81
|
+
|
|
82
|
+
- [@vielzeug/lingua](/lingua/): Minimal i18n runtime with typed keys, deterministic locale fallback, and framework-agnostic reactive subscriptions. → [api](/lingua/api) · [usage](/lingua/usage) · [examples](/lingua/examples)
|
|
83
|
+
|
|
84
|
+
### di
|
|
85
|
+
|
|
86
|
+
- [@vielzeug/conduit](/conduit/): Typed dependency injection for TypeScript. → [api](/conduit/api) · [usage](/conduit/usage) · [examples](/conduit/examples)
|
|
87
|
+
|
|
88
|
+
### validation
|
|
89
|
+
|
|
90
|
+
- [@vielzeug/spell](/spell/): Zero-dependency schema validation with sync and async parsing, descriptor round-trips, JSON Schema export, and tree-shakeable builders. → [api](/spell/api) · [usage](/spell/usage) · [examples](/spell/examples)
|
|
91
|
+
|
|
92
|
+
### utilities
|
|
93
|
+
|
|
94
|
+
- [@vielzeug/arsenal](/arsenal/): Tree-shakeable, zero-dependency utility library for arrays, async control flow, objects, strings, functions, math, and typed checks. → [api](/arsenal/api) · [usage](/arsenal/usage) · [examples](/arsenal/examples)
|
|
95
|
+
- [@vielzeug/coins](/coins/): Zero-dependency, bigint-based monetary arithmetic, formatting, and currency conversion for TypeScript. → [api](/coins/api) · [usage](/coins/usage) · [examples](/coins/examples)
|
|
96
|
+
- [@vielzeug/ledger](/ledger/): Command-pattern undo/redo with async operations, Ripple signals for reactive state, and composable commands. → [api](/ledger/api) · [usage](/ledger/usage) · [examples](/ledger/examples)
|
|
97
|
+
- [@vielzeug/scout](/scout/): Trigram-indexed fuzzy search with per-field weights, match highlighting, and an optional reactive layer. → [api](/scout/api) · [usage](/scout/usage) · [examples](/scout/examples)
|
|
98
|
+
|
|
99
|
+
### time
|
|
100
|
+
|
|
101
|
+
- [@vielzeug/tempo](/tempo/): Temporal-powered parsing, timezone conversion, arithmetic (DST-safe), and Intl formatting for modern TypeScript. → [api](/tempo/api) · [usage](/tempo/usage) · [examples](/tempo/examples)
|
|
102
|
+
|
|
103
|
+
### logging
|
|
104
|
+
|
|
105
|
+
- [@vielzeug/rune](/rune/): Browser/Node logger with levels, namespaces, pluggable transports, lazy bindings, and timing helpers. → [api](/rune/api) · [usage](/rune/usage) · [examples](/rune/examples)
|
|
106
|
+
|
|
107
|
+
### ai-tooling
|
|
108
|
+
|
|
109
|
+
- [@vielzeug/codex](/codex/): MCP server exposing Vielzeug package metadata, docs pages, source, and Refine component metadata over stdio or HTTP. → [api](/codex/api) · [usage](/codex/usage) · [examples](/codex/examples)
|
|
110
|
+
|
|
111
|
+
### app-infrastructure
|
|
112
|
+
|
|
113
|
+
- [@vielzeug/keymap](/keymap/): Chord-aware keyboard shortcut manager with context guards, modifier aliases, and disposable bindings — no DOM assumptions. → [api](/keymap/api) · [usage](/keymap/usage) · [examples](/keymap/examples)
|
|
114
|
+
|
|
115
|
+
### reactive
|
|
116
|
+
|
|
117
|
+
- [@vielzeug/flux](/flux/): Cold-by-default, disposable reactive streams with a full operator library and ecosystem adapters for Ripple, Herald, Pulse, and Courier. → [api](/flux/api) · [usage](/flux/usage) · [examples](/flux/examples)
|