ayjnt-compile

Bundle ayjnt agent applications with the workerd runtime into standalone executables.

3|1|Updated Apr 14, 2026
One-click install
npx skills add https://github.com/northclock/ayjnt --skill ayjnt-compile
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ayjnt-compile
Source: https://github.com/northclock/ayjnt/tree/main/.claude/skills/ayjnt-compile
Command: npx skills add https://github.com/northclock/ayjnt --skill ayjnt-compile

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill solves the complexity of distributing agent-based applications by bundling the ayjnt runtime, the workerd engine, and your agent code into a single, portable executable that runs without external dependencies.

Core Features & Use Cases

  • Single-File Distribution: Pack your entire agent harness, including Durable Object state and host tools, into one binary.
  • Local Runtime Execution: Run your agents locally using ayjnt's own runtime, bypassing the need for wrangler or remote Cloudflare services during development and testing.
  • Use Case: You have built a local-first agent that manages system files and you want to ship it to a user as a simple CLI tool that they can execute directly without installing Bun or Node.js.

Quick Start

Use the ayjnt-compile skill to bundle the current project into a production-ready binary for your target operating system.

Frequently Asked Questions about ayjnt-compile

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I package an agent application into a standalone executable binary?

You can package an agent application into a standalone executable by bundling the ayjnt runtime, the workerd engine, and your project code into a single portable binary. This eliminates external dependencies for local execution.

Can I distribute my agent CLI tool to users without requiring them to install Node.js or Bun?

Yes, you can distribute your agent CLI tool without requiring Node.js or Bun installations. The compilation process embeds the workerd runtime and your code into one self-contained executable file that runs independently.

Does compiling an agent harness support embedding Durable Object state and static assets?

Compiling an agent harness supports embedding Durable Object state and static assets. It manages the complex aliasing of native modules and static asset embedding required for self-contained binary deployment.

What is the best way to run stateful agents locally without using wrangler or remote Cloudflare services?

The best way to run stateful agents locally without wrangler or remote Cloudflare services is using the ayjnt runtime. It bypasses remote dependencies during development and testing by executing the bundled workerd engine locally.

How does bundling the workerd runtime handle native module aliasing for offline agent deployment?

Bundling the workerd runtime handles native module aliasing by managing complex module mappings during the compilation phase. This ensures the final standalone binary maintains host-level access and offline capabilities without external runtime dependencies.