Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"name": "agentcomm",
"source": "./",
"description": "Multi-agent mailbox CLI — any git remote is a bus (git+ssh/github/sqlite/s3/gcs/postgres). register/send/inbox/wait/claim/log/channels so Claude coordinates with other agents or sessions; auto-selects the repo bus inside a git repo.",
"version": "0.16.0",
"version": "0.16.1",
"author": {
"name": "Yoni Davidson"
},
Expand Down
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "agentcomm",
"description": "Multi-agent mailbox CLI — any git remote is a bus (git+ssh/github/sqlite/s3/gcs/postgres). register/send/inbox/wait/claim/log/channels so Claude coordinates with other agents or sessions; auto-selects the repo bus inside a git repo.",
"version": "0.16.0",
"version": "0.16.1",
"author": {
"name": "Yoni Davidson",
"email": "yonidavidson@tabnine.com"
Expand Down
6 changes: 4 additions & 2 deletions dist/bus.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { type Backend, type Message } from './types.js';
export declare class Bus {
private readonly backend;
constructor(backend: Backend);
register(name: string, session?: string, status?: string): Promise<AgentRecord & {
register(name: string, session?: string, status?: string, statusAuto?: boolean): Promise<AgentRecord & {
previous?: AgentRecord;
}>;
agents(): Promise<AgentRecord[]>;
Expand Down Expand Up @@ -62,7 +62,9 @@ export interface AgentRecord {
lastSeen: string;
/** Fingerprint of the registering session — lets tooling tell "stale me" from "someone else". */
session?: string;
/** Self-declared "what I'm doing" — set via register --status, kept across heartbeats. */
/** "What I'm doing" — from register --status (explicit, sticky) or the task list (auto). */
status?: string;
/** True when the status came from the task list; explicit declarations set false and win. */
statusAuto?: boolean;
}
//# sourceMappingURL=bus.d.ts.map
2 changes: 1 addition & 1 deletion dist/bus.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 15 additions & 3 deletions dist/bus.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/bus.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading