cd /news/developer-tools/six-open-source-pieces-one-javascrip… · home topics developer-tools article
[ARTICLE · art-67809] src=dev.to ↗ pub= topic=developer-tools verified=true sentiment=↑ positive

Six open-source pieces, one JavaScript agent stack

The open-source AgentsKit ecosystem provides a set of independent JavaScript and TypeScript packages for building agent stacks, including runtime, memory, tools, evaluation, and UI components. Its core has zero runtime dependencies and a 10 KB gzipped budget, with six formal contracts ensuring substitutability. The ecosystem includes AgentsKit Chat for interactive agent experiences, a Registry for distributing ready-to-use agents, Agents Playbook for engineering patterns, Doc Bridge for documentation handoffs, and a Code Review CLI.

read3 min views1 publishedJul 22, 2026

Most agent projects do not fail because the first model call is difficult. They become difficult when the prototype needs memory, tools, evaluation, a user interface, documentation that coding agents can navigate, and a repeatable review process.

That is the problem the open-source AgentsKit ecosystem is trying to solve for JavaScript teams. It is a set of independent projects with shared contracts, rather than one application that must own the whole stack.

AgentsKit provides focused JavaScript and TypeScript packages for runtimes, adapters, tools, skills, memory, RAG, evaluation, observability, sandboxing, and UI bindings.

Its core has zero runtime dependencies and a CI-enforced 10 KB gzipped budget. Six formal contracts keep adapters, tools, memory, retrievers, skills, and runtimes substitutable.

You can run a first local agent without an API key:

npm install @agentskit/core @agentskit/runtime tsx

Then connect OpenAI, Anthropic, Gemini, Ollama, or another adapter without changing the rest of the runtime composition.

AgentsKit Chat defines an interactive agent experience once and renders it through React, React Native, Ink, Vue, Svelte, Solid, or Angular.

It also supports deterministic local answers before an optional backend call. That matters for documentation and support interfaces where exact project facts should not require an LLM.

pnpm dlx @agentskit/chat-cli@0.4.0 init my-chat --renderer react --yes

The AgentsKit Registry distributes ready-to-use agents in a shadcn-style model: the CLI copies the source into your project, so you can inspect and modify it.

npx agentskit add research
npx agentskit add code-review

The public catalog currently includes research, code-review, and knowledge-promotion agents, and is open to contributions.

Agents Playbook turns engineering practices for coding agents into inspectable patterns, prompts, templates, and zero-dependency gates.

Instead of telling an agent to “write production-quality code,” a team can define package boundaries, required evidence, review rules, and executable checks. The repository currently verifies 87 production patterns, six engineering pillars, six SDLC phases, and 13 gate scripts from its own source.

Doc Bridge converts repository documentation and ownership maps into deterministic handoffs:

{
  "startHere": "docs/for-agents/packages/auth.md",
  "editRoots": ["packages/auth"],
  "checks": ["pnpm --filter @demo/auth test"],
  "humanDoc": "/docs/guides/auth"
}

The same handoff is available through CLI, MCP, and CI. The core path requires no LLM or API key.

Try the bundled proof:

npx -y @agentskit/doc-bridge demo --text

AgentsKit Code Review runs locally or as a GitHub Action. It supports existing Codex and Claude CLI logins, hosted providers, gateways, and local Ollama models.

Seven review lenses generate candidate findings. Independent verification votes then remove weak findings before the result reaches the developer.

npx --yes github:AgentsKit-io/code-review-cli --provider codex-cli

The output can be Markdown, GitHub review comments, or SARIF.

You do not need to adopt everything:

Each repository is independently usable and openly licensed. The shared objective is interoperability: a team should be able to start with one package and add another without replacing its existing architecture.

The ecosystem is looking for more than implementation code. Useful contributions include provider adapters, framework examples, reusable agents, false-positive reductions, documentation adapters, executable gates, fixtures, and clearer onboarding.

If one of these problems matches work you are already doing, try the smallest relevant project, report what did not compose cleanly, and consider starring the repositories you want other JavaScript developers to discover.

── more in #developer-tools 4 stories · sorted by recency
── more on @agentskit 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/six-open-source-piec…] indexed:0 read:3min 2026-07-22 ·