Record and replay error first callbacks in a deterministic order.
A verbatim d3 axis component for React
A transformer that acts as a pass-through.
A Javascript function for reading a variety of coordinate formats and converting to decimal numbers. Builds on other efforts by returning the verbatim coordinates and the decimal coordinates all in one object.
The core module of Verbatim.
jQuery deferreds source and unit tests ported verbatim to nodejs using minimal, automated, code transformation
CLI tool to auto-fix verbatimModuleSyntax errors
A js library that allows you to output your messages verbatim, such as in chatting.
Bytenode converted to work with Verbatim App.
The 'verbatim' task for Pavios.
Local-first MCP server for cross-agent AI memory. One SQLite + FTS5 corpus across Claude Code, Cowork, Cursor, Continue, Zed, Obsidian, and Telegram — passively captured, verbatim, searchable from any MCP-compatible client.
A memory for your AI coding sessions: map a branch or file to the Claude Code conversations that produced it, recall recorded decisions, and read the verbatim turns
Bytenode converted to work with Verbatim App.
Persistent agent memory for pi — raw verbatim storage with semantic search. Never lose context again.
Variant of JSON.stringify where the value returned by the replacer function is used verbatim.
Install Kushi — multi-source project evidence agent with Comprehensive Structured Capture (CSC) into weekly-only files across Email, Teams, OneNote, Loop, SharePoint, Meetings, CRM, ADO. Meetings retain a sibling verbatim/ audit folder. WorkIQ-only for M3
NubemClaw v3 — Hermes-ported SKILL.md bundles (productivity, research, software-development). Verbatim ports adapted to v3 paths/binaries via PORTING_NOTES.md.
Bytenode converted to work with Verbatim App.
NubemClaw v3 — Hermes-ported SKILL.md bundles (batch 1: apple, autonomous-ai-agents, github, creative, research). Verbatim ports adapted to v3 paths/binaries via PORTING_NOTES.md.
NubemClaw v3 — in-process event-bus para agent lifecycle (port verbatim OpenClaw src/infra/agent-events.ts). Singleton via globalThis Symbol; cross-fase contract observable.
NubemClaw v3 — OpenClaw skill ports: high-value SKILL.md manifests ported verbatim from ~/Desktop/GitHub/openclaw/skills/ adapted to NubemClaw v3 state-dir conventions.
Embedded directive store for human-in-the-loop AI agent workflows. Captures verbatim operator input once and surfaces it mechanically at every relevant agent decision so directives are never re-extracted.
NubemClaw v3 — Hermes-ported SKILL.md bundles (batch 2: devops, mlops, software-development, media, gaming, data-science, productivity). Verbatim ports adapted to v3 paths/binaries via PORTING_NOTES.md.
Angular component to make GET request with query json OR by set attribute with a text and returned data verbatim.
Provides an extension crate for constructing verbatim paths.
Pure-Rust VP9 codec — orphan-rebuild scaffold pending clean-room re-implementation.
A reusable, composable, aggregate and `no_std`-friendly error library
DEPRECATED: Use upstream `junction` v1.4.1+ crate instead (verbatim prefix fix merged)
WhatsApp bot plugin for Nexo agents (out-of-tree subprocess + embedded lib).
Pure-Rust AVI (RIFF) container for oxideav
Pure-Rust EVC (MPEG-5 Essential Video Coding, ISO/IEC 23094-1) decoder — baseline + main profile. Round-1 scaffold: NAL + parameter-set parsing only; pixel decode pending.
Zero-copy isomorphic parsing: your code should look like what it parses.
Git-native task tracker for parallel agent workflows
Pure-Rust JPEG XL (JXL) codec — RETIRED 2026-05-08 pending strict-isolation cleanroom workspace; current state ships round-1..3 ANS + headers + LfGlobal + GlobalModular wiring only. Rounds 7-11 + encoder rounds 1-6 retired with the libjxl-trace-reverse-engineering.md docs retirement of 2026-05-06.
Pure-Rust Wavefront OBJ + MTL 3D mesh codec — implements oxideav-mesh3d's Decoder/Encoder traits
Pure-Rust Matroska (MKV/WebM) container for oxideav
Define version string layouts with a class DSL, parse with .parse, round-trip with #to_s.
StartMeUp helps designers start projects faster by defining a basic set of Sass variables, default element style and project structure. It’s been specifically designed for use within web applications. StartMeUp should live in your project’s root Sass directory and we encourage you to modify and extend it to meet your design and brand requirements.
Codgen is a cross language, template based, code generator, capable of generating multiple applications from a common model. It uses JSON for it's model and config and you can use mustache or handlebars templates or just verbatim copy. If you find a bug or bad error message be sure to log an issue on GitHub.
Based on a blog post by Rowan Thorpe (http://rowanthorpe.wordpress.com/2012/10/15/unmangle-utf-8-from-double-encoded-utf-8-my-shell-script-and-batch-script-tweaks/), forcefully replaces broken UTF-8 encoded as pairs of Latin-1 characters. Includes a verbatim copy of Rowan's sed script.
# Otto AsciiDoc-powered static site generator with Jekyll-style conventions: layouts, includes, data files, posts, drafts, permalinks, and custom collections. ## Install ```sh gem install ottogen ``` Requires Ruby 3.0 or newer. ## Quickstart ```sh mkdir mysite && cd mysite otto init otto build otto serve open http://127.0.0.1:8778/ ``` For a longer walkthrough including AsciiDoc syntax, see [GUIDE.md](GUIDE.md). ## Commands | Command | Description | |---|---| | `otto init [DIR]` | Scaffold a new site (current dir if omitted) | | `otto build` | Render the site to `_build/` | | `otto build --drafts` | Include posts from `_drafts/` | | `otto watch` | Rebuild on file change | | `otto serve` | Serve `_build/` on port 8778 | | `otto generate PAGE` | Create a new page in `pages/` | | `otto post "Title"` | Create a new dated post in `_posts/` | | `otto clean` | Delete `_build/` | | `otto doctor` | Sanity-check project layout | ## Project layout ``` my-site/ ├── .otto # marker ├── config.yml # site config ├── assets/ # copied verbatim into _build/ ├── pages/ # AsciiDoc pages, output mirrors path ├── _layouts/ # ERB layouts (.html.erb) ├── _includes/ # ERB partials ├── _data/ # YAML/JSON files exposed as site.data.* ├── _posts/ # YYYY-MM-DD-slug.adoc └── _drafts/ # undated drafts (excluded by default) ``` ## Configuration (`config.yml`) ```yaml title: My Otto Site description: Things I write url: https://example.com baseurl: "" permalink: /:year/:month/:day/:slug/ collections: recipes: output: true ``` `permalink` accepts these tokens: `:year`, `:month`, `:day`, `:slug`, `:title`. Templates ending in `/` produce pretty URLs (`<path>/index.html`). ## Pages and posts Both support YAML front matter: ```adoc --- layout: default title: Hello tags: [ruby, cli] --- = Hello Welcome to {site_title}. This page is at {page_url}. ``` Pages live under `pages/`; posts under `_posts/` with `YYYY-MM-DD-slug.adoc` names. Layouts wrap rendered AsciiDoc; partials in `_includes/` are pulled in via `<%= partial 'header.html' %>`. ## License MIT
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.