Skip to main content
Glama

WorkerLane

하네스에 구애받지 않는 에이전트 런타임용 AI 동료. 팀 에이전트, 승인, 메모리, 트레이스, 핸드오프 계약을 하나의 패키지로 묶어 이미 사용 중인 어떤 하네스에도 연결합니다.

npm License: MIT

Talocode 의 일부 — 사람들이 신뢰하는 오픈 도구, 그 뒤에 있는 호스팅 파워.


무엇인가

AI 에이전트는 작업 실행에 뛰어납니다. 어려운 부분은 그 주변의 모든 것입니다: 누가 무엇을 실행할 수 있는지, 무엇이 승인되는지, 지난 세션에서 무슨 일이 있었는지, 그리고 사후에 이를 증명하는 일입니다. WorkerLane은 이러한 요소들을 모든 에이전트 하네스와 호환되는 하나의 패키지로 묶습니다 — 런타임 브랜드 충성도 없이, 편 가르기 없이.

  • AI 동료 — 이름과 역할로 에이전트를 만들고, 작업을 대기열에 넣고, 파괴적인 작업을 승인 뒤에 게이트

  • 에이전트-인간 핸드오프 — 스키마 계약에 대해 단계 간 페이로드를 검증하고 복구하여 실행이 조용히 표류하지 않도록 보장

  • 전체 데이터 기록, 소유권은 당신에게 — 비용과 상태를 포함한 트레이스 스팬, 세션을 넘어 지속되는 영구 메모리. 호스팅 경로를 선택하지 않는 한 모든 것이 로컬 ~/.workerlane에 저장됩니다

  • 컴퓨터 사용workerlane mcp와 함께 screenlane mcp(@talocode/screenlane)를 실행하여 동일한 하네스에 화면 캡처, 받아쓰기, 명령 도구 추가

  • 모든 하네스와 호환 — 전체 번들을 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

상태 + 비용으로 스팬 기록 (llm/tool/retrieval/handoff)

workerlane_trace_complete

실행 완료 → 영수증 체인

workerlane_trace_list

트레이스 실행 목록

workerlane_memory_remember

메모리 저장

workerlane_memory_recall

관련 메모리 회상

workerlane_memory_list

저장된 메모리 목록

컴퓨터 사용 (형제 서버): @talocode/screenlane을 설치한 후 두 번째 MCP 항목을 추가하세요:

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

동일한 하네스에 screenlane_capture, screenlane_dictate, screenlane_command, screenlane_send, screenlane_doctor를 노출합니다. 호스팅 브라우저 자동화는 Talocode Cloud의 Agent Browser(/v1/agent-browser/*)를 통해 제공됩니다.

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은 Stacklane 청구와 함께 Talocode Cloud의 /v1/workerlane/*에서 제공됩니다. 로컬 엔진은 항상 무료입니다.

작업

크레딧 (호스팅)

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

관련 패키지

  • @talocode/worklane · pip install talocode-worklane

  • @talocode/memorylane · pip install talocode-memorylane

  • @talocode/handofflane

  • @talocode/tracelane

  • @talocode/agent-browser (호스팅 컴퓨터 사용)

Talocode 생태계

제품

저장소

WorkerLane (이 패키지)

github.com/talocode/workerlane

Tera

추론, 작성, 코딩

WorkLane

작업 자동화

MemoryLane

영구 에이전트 메모리

HandoffLane

단계 간 스키마 계약

TraceLane

실행 추적 + 영수증

PolicyLane

정책 게이트

GateLane

게이트 강제

Agent Browser

에이전트용 브라우저 자동화

ScreenLane

화면 자동화

SearchLane

검색 기능

XSearchLane

X 검색

DocuLane

에이전트용 Office 문서

DataLane

데이터 분석

ClipLoop

비디오 제작

Tradia

트레이딩

Codra

코딩 에이전트

StackLane

클라우드 컨트롤 플레인

더 보기: github.com/talocode · talocode.site · docs.talocode.site

라이선스

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