Skip to main content
Glama

WorkerLane

ハーネス非依存のエージェント同僚(coworker)を、あらゆるエージェントランタイム向けに提供。 チームエージェント、承認、メモリ、トレース、ハンドオフ契約を、既存のハーネスに配線するパッケージはこれひとつです。

npm License: MIT

Talocode の一部 — 人々が信頼するオープンツール、その背後にあるホステッドパワー。


これは何か

AIエージェントはタスクの実行に優れています。難しいのはその周辺、つまり誰が何を実行できるか、何が承認されるか、前回のセッションで何が起きたか、そして後からそれを証明することです。WorkerLaneはこれらの要素をひとつのパッケージにまとめ、あらゆるエージェントハーネスで動作します — ランタイムへのこだわりも、選ぶべき陣営もありません。

  • AI同僚 — 名前と役割を持つエージェントを作成し、タスクをキューに投入し、破壊的な作業を承認の背後にゲートします

  • エージェントと人間のハンドオフ — スキーマ契約に照らしてステップ間のペイロードを検証・修復し、実行が静かに乖離することを防ぎます

  • すべてのデータ記録はあなたのもの — コストとステータスを伴うトレーススパン、そしてセッションをまたいで永続する耐久性のあるメモリ。ホスト型パスを選択しない限り、すべては ~/.workerlane にローカル保存されます

  • あらゆるハーネスと連携 — バンドル全体をMCPツールとして公開し、MCP互換のエージェントならどれでも接続可能

Related MCP server: bot-relay-mcp

なぜ生まれたか

カタログは充実していますが断片的です — エージェント、トレース、メモリ、ハンドオフはそれぞれ別々に提供されています。WorkerLaneはその組み立て作業を不要にします。インストールはひとつ、サーフェスはひとつ、すべての部品がつながっています。これはハーネスの上に位置する機能レイヤーとして位置づけられ、まさに価値が複利的に増す場所です。

インストール

npm install -g @talocode/workerlane

または

pip install talocode-workerlane

Officeも、ランタイムも、クラウドも不要です。ローカルエンジンは完全にあなたのマシン上で動作します。

クイックスタート(CLI)

# start the MCP server — connect any harness to it
workerlane mcp

# create a coworker
workerlane agent create --name "qa-bot" --role "reviews every PR before merge"

# queue a task, gated behind an approval
workerlane agent run --agent <ID> --task "audit the auth flow" --approve

# save and recall memory across sessions
workerlane memory remember --text "deploy is Fridays, freeze after 4pm" --tags ops,deploy
workerlane memory recall --query "deploy"

# start a trace run
workerlane trace start --name "release-check"

クイックスタート(MCP — 任意のハーネス)

{
  "mcp": {
    "workerlane": {
      "type": "local",
      "command": ["workerlane", "mcp"]
    }
  }
}

接続すると、以下のツールがMCP互換の任意のエージェントで利用可能になります:

ツール

機能

workerlane_agent_create

名前+役割を持つ同僚を作成

workerlane_agent_list

同僚の一覧を表示

workerlane_agent_run

タスクをキューに投入。requireApproval で人間の承認待ちになる

workerlane_agent_approve

保留中の実行を承認/拒否(記録されます)

workerlane_agent_complete

実行を結果付きで完了としてマーク

workerlane_agent_runs

実行を一覧表示、ステータスでフィルタ

workerlane_handoff_validate

スキーマ契約に対してステップ間ペイロードを検証

workerlane_handoff_repair

検証+軽微な修復(型の不一致、余分なフィールドを整理)

workerlane_trace_start

トレース実行を開始

workerlane_trace_span / _span_end

スパンを記録(ステータス+コスト)

workerlane_trace_complete

実行を完了 → レシートチェーン

workerlane_trace_list

トレース実行の一覧

workerlane_memory_remember

メモリを保存

workerlane_memory_recall

関連メモリを想起

workerlane_memory_list

保存済みメモリの一覧

SDK

import { createAgent, createAgentRun, approveAgentRun, validateHandoff, remember, recall, createTraceRun, startTraceSpan } from '@talocode/workerlane'

const bot = createAgent({ name: 'qa-bot', role: 'reviews every PR before merge' })

const run = createAgentRun({ agentId: bot.id, task: 'audit the auth flow', requireApproval: true })
// → a human approves it before it runs
approveAgentRun(run.id, true)

const r = validateHandoff({
  value: { intent: 'ship', confidence: 0.9 },
  schema: { type: 'object', required: ['intent', 'confidence'], properties: { intent: { type: 'string' }, confidence: { type: 'number' } } },
})

remember('deploy is Fridays, freeze after 4pm', ['ops', 'deploy'])
const facts = recall('deploy')

const trace = createTraceRun('release-check')
const span = startTraceSpan(trace.id, 'verify', 'tool')

データと所有権

  • すべてローカルファースト。状態は ~/.workerlane/ に保存されます(WORKERLANE_DIR で上書き可能)。

  • agents.json — エージェントレジストリと、承認判断を含む実行監査証跡

  • memory.json — 永続メモリ

  • traces.json — コストとステータスを含むスパンレシート

  • これらのファイルはいつでもエクスポートまたは削除できます — データはあなたのものです。

ホスト型パス

マネージドパワーを求めるチーム向けに、WorkerLane は Talocode Cloud の /v1/workerlane で、Stacklane 請求とともに利用できます。ローカルエンジンは常に無料です。

アクション

クレジット(ホスト型)

workerlane.agent.run

3

workerlane.agent.approve

1

workerlane.handoff.validate / repair

2 / 4

workerlane.trace.start / span / complete

1 / 1 / 2

workerlane.memory.remember / recall

4 / 2

(元のMarkdownテーブルの行と列を正確に維持してください。上記は近似です。実際の入力に合わせて調整します。)

関連パッケージ(エコシステムの一部)

@talocode/worklane · @talocode/memorylane · @talocode/handofflane · @talocode/tracelane · @talocode/agent-browser(ホスト型コンピュータ利用)

ライセンス

MIT © Talocode

A
license - permissive license
Not graded
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    Server-enforced workflow discipline for AI agents. An MCP server providing persistent work items, dependency graphs, quality gates, and actor attribution. Schemas define what agents must produce — the server blocks the call if they don't. Works with any MCP-compatible client.
    199
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    MCP coordination primitive for multi-agent workflows. Lets multiple AI coding agents (Claude Code, Cursor, n8n, custom clients) discover each other and exchange messages and tasks via a shared SQLite-backed message bus.
    37
    506
    4
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    A local-first mission control for AI agent harnesses, providing a unified MCP gateway for shared memory, task queue, and encrypted secrets across multiple agents.
    1
    1
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables local-first LLM orchestration with persistent memory, knowledge management, routing, swarm patterns, API probing, tests, automation planning, and plugin discovery via a stdio MCP server, using SQLite for offline storage.
    400
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • Private-by-default, local-first memory/context/task orchestrator for MCP apps and agents.

  • Agent-native collaboration network: orchestrate a team of long-running agents from any MCP client.

  • Durable agent-to-agent handoffs and shared scratchpad for multi-agent workflows.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/talocode/workerlane'

If you have feedback or need assistance with the MCP directory API, please join our Discord server