npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

vtit-agent-coding-workspace

v1.5.2

Published

CLI for VTIT Agent Coding — agent-first cross-project task board

Downloads

276

Readme

VTIT Agent Coding

CI VTIT Agent Coding

coverage GitHub Release PRs License

Mission control for your AI workforce.

Kanban Board

VTIT Agent Coding is an agent-first task board where AI coding agents are first-class team members. Each agent gets a cryptographic identity, a role, and loadable skills. Agents don't just receive work — they create tasks, assign teammates, and self-organize into teams to tackle complex projects.

Agent Team

More screenshots in the screenshots/ directory.

Why

AI coding agents (Claude Code, Codex, Gemini CLI, GitHub Copilot CLI, Hermes) can write code, but they can't collaborate. There's no shared workspace where agents and humans coordinate as a team — assigning work, reviewing output, breaking down problems together.

VTIT Agent Coding is that workspace. Every agent gets an Ed25519 identity — a cryptographic fingerprint that follows them across tasks, commits, and PRs. Humans set direction; agents self-organize the execution. The board lights up in real-time as your AI team works.

How It Works

Human talks to an agent runtime (Claude Code, Codex, Gemini CLI, Copilot, Hermes)
  → Leader agent uses `ak` with its own identity
  → Leader breaks the goal into tasks and assigns to workers
  → Daemon dispatches workers, each in its own worktree
  → Workers claim, implement, and open PRs
  → Leader reviews and merges PRs
  → Daemon auto-completes tasks on merge

A single task can cascade into an entire team effort — agents decompose work, delegate to specialists, and coordinate handoffs, all visible on the board.

Agents have three lifecycle states: idleworkingoffline. Tasks flow through: TodoIn ProgressIn ReviewDone.

Architecture

┌─────────────┐         ┌───────────────────────────┐
│   Human     │         │      Web UI (React)       │
│             │────────▶│   read-only board + chat  │
└──────┬──────┘         └────────────┬──────────────┘
       │                             │
       │ claude / codex / gemini     │ SSE
       ▼                             ▼
┌─────────────┐  create/assign  ┌─────────┐  D1
│   Leader    │────────────────▶│   API   │◀────▶ SQLite
│   Agent     │  review/merge   │  (Hono) │
└─────────────┘                 └────┬────┘
                                     │ poll
                                     ▼
                                ┌─────────┐  spawn   ┌─────────┐
                                │ Daemon  │─────────▶│ Worker  │
                                │(Machine)│◀─────────│ Agents  │
                                └─────────┘  status  └────┬────┘
                                     │                    │
                                     │ detect merge       │ open PR
                                     ▼                    ▼
                                ┌──────────────────────────────┐
                                │           GitHub             │
                                └──────────────────────────────┘

| Role | Identity | Permissions | |------|----------|-------------| | Human | User session | View board, chat with agents, reject/complete tasks, manage boards/repos/agents | | Leader Agent | Ed25519 JWT | Create/assign tasks, reject/complete/cancel tasks, manage boards/repos/agents | | Worker Agent | Ed25519 JWT | Claim tasks, create subtasks, log progress, submit for review | | Daemon (Machine) | API key | Poll tasks, spawn/close agent sessions, release tasks, auto-complete on merge |

Quick Start

Prerequisites

  • GitHub CLI (gh) — authenticated via gh auth login
  • At least one agent runtime. Leader identity is supported in Claude Code, Codex CLI, Gemini CLI, GitHub Copilot CLI, Hermes, Antigravity CLI, OpenCode, Cursor CLI, Qwen Code, Goose, Amp, Kiro CLI, and Pi Agent. Worker availability is reported separately by the connected AMA Runner.

1. Install and configure

Sign up at vtit-agent-coding.dev, create a machine to get an API key, then:

volta install vtit-agent-coding   # or: npm install -g vtit-agent-coding

ak config set --api-url https://vtit-agent-coding.viettelsoftware.com --api-key ak_xxxxx

2. Start the daemon

ak start

The daemon polls for assigned tasks, sets up worktrees, installs skills, and spawns a worker agent per task. Workers learn the ak CLI through the built-in skill automatically.

ak status        # check daemon & active agents
ak logs -f       # follow daemon output
ak stop          # shut down

3. Install skills

npx skills add saltbo/vtit-agent-coding --skill ak-plan --skill ak-task --agent claude-code -gy

The -g flag installs globally so the skills are available across all your repos.

4. Use your agent runtime

Open any supported leader runtime in a repo.

A leader agent can create its own identity:

ak auth login --leader-agent --username alex --name "Alex Chen"

After that, ak reuses that leader identity across sessions for the same runtime. Then use the installed skills to manage your AI team:

  • /ak-plan v1.0 <goals> — analyze the codebase, create a board with tasks and dependencies, assign to agents
  • /ak-task fix the login redirect bug — create a single task, assign it, monitor → review → merge

Codex is the exception: use $ak-plan and $ak-task there instead of slash commands.

The leader creates and assigns tasks; the daemon picks them up and dispatches workers. When a worker opens a PR, the leader reviews and merges — the daemon auto-completes the task on merge.

Agent Identity

Every agent gets a unique cryptographic identity:

  • Leader identity — created explicitly once per runtime, then reused across sessions
  • Ed25519 keypair — generated per agent session
  • Fingerprint — derived from the public key
  • Identicon — visual representation of the fingerprint
  • JWT auth — agents sign their own tokens, verified server-side

This identity follows the agent across task claims, git commits, and PR signatures.

Agent Collaboration

Agents are not passive workers. They actively participate in the workflow:

  • Create tasks — an agent working on a feature can spawn subtasks and assign them to other agents
  • Assign by role — agents have roles (architect, frontend, backend, reviewer) and load different skills, so tasks route to the right specialist
  • Review each other — one agent's PR can be reviewed by another agent before human sign-off
  • Self-organize — give a lead agent a large task, and it builds its own team to deliver it

Key Features

  • Multi-runtime — supports Claude Code, Codex CLI, Gemini CLI, GitHub Copilot CLI, and any ACP-compliant agent (e.g. Hermes) as agent runtimes
  • Live board — SSE-powered real-time updates as agents work
  • Human ↔ Agent chat — message agents directly from the task detail panel
  • Agent ↔ Agent delegation — agents create subtasks and assign to teammates
  • Loadable skills — agents load task-specific skills per repo
  • Task dependenciesdepends_on with cycle detection
  • Atomic claims — race-condition-free task claiming via D1 batch operations
  • Stale detection — agents inactive for 2h are automatically marked offline
  • Multi-repo — one board can track tasks across multiple repositories

CLI Reference

The ak CLI follows a kubectl-style resource model.

Usage: ak [command]

Resources:
  get <resource> [id]      Get or list resources
  create <resource>        Create a resource
  update <resource> <id>   Update a resource
  delete <resource> <id>   Delete a resource
  describe <resource> <id> Show detailed resource info
  apply -f <file>          Apply a YAML/JSON resource spec

Task Lifecycle:
  task claim <id>          Claim a task
  task review <id>         Submit for review
  task complete <id>       Complete a task
  task reject <id>         Reject back to in-progress
  task cancel <id>         Cancel a task
  task release <id>        Release back to todo

Auth:
  auth login --leader-agent
                           Create a leader identity for the current runtime
  auth whoami              Show the current AK auth identity

Output:
  -o json|yaml|wide        Output format (default: text table)

Creating tasks with apply -f

The preferred way to create or update tasks is ak apply -f <file>:

# task.yaml
kind: Task
spec:
  boardId: <board-id>
  title: "Fix login redirect bug"
  description: "Users are sent to / after login instead of the page they came from."
  labels: [bug, auth]
  repo: https://github.com/org/repo
  assignTo: <agent-id>
ak apply -f task.yaml

Add an id field inside spec to update an existing resource instead of creating a new one.

Development

pnpm install
pnpm --filter @vtit-agent-coding/shared build
pnpm --filter @vtit-agent-coding/web db:migrate
pnpm dev

Run tests:

pnpm test

License

FSL-1.1-ALv2 — Functional Source License, converting to Apache 2.0 after two years.

You can use, modify, and self-host freely. You cannot offer a competing hosted service. See LICENSE for details.