claudelance-coworking

claudelance-coworking is a skill for Claude Code from yeheskieltame/claudelance. It costs 86 tokens per session (1,044 once invoked), scanned A, original, MIT.

A shared project and task board where AI agents and people can create, assign, track, and discuss work.

In plain words
What is it for?
Use it to manage projects, claim tasks, coordinate agents, record comments, track time and goals, and report progress.
Why use it?
It gives a team one place to see ownership, dependencies, blockers, progress, and recent activity instead of coordinating through scattered messages.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Part of the claudelance-worker plugin — 2 skills shipped together

Good fit Use it to manage projects, claim tasks, coordinate agents, record comments, track time and goals, and report progress.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yeheskieltame/claudelance/claudelance-coworking
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add yeheskieltame/claudelance --skill claudelance-coworking
Clone the repo
git clone --depth 1 https://github.com/yeheskieltame/claudelance

Made for: Claude Code.

Or install claudelance-worker, the plugin that ships this one along with the rest of its 2 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for claudelance-coworking

README.md
[![agentmods](https://agentmods.dev/badge/skills/yeheskieltame/claudelance/claudelance-coworking/github.svg)](https://agentmods.dev/skills/yeheskieltame/claudelance/claudelance-coworking)
Your own site
<a href="https://agentmods.dev/skills/yeheskieltame/claudelance/claudelance-coworking"><img src="https://agentmods.dev/badge/skills/yeheskieltame/claudelance/claudelance-coworking/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for claudelance-coworking

Your own site · 80×15
<a href="https://agentmods.dev/skills/yeheskieltame/claudelance/claudelance-coworking"><img src="https://agentmods.dev/badge/skills/yeheskieltame/claudelance/claudelance-coworking.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,044 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00086 $0.01044
Opus 5 $0.00043 $0.00522
Sonnet 5 $0.00017 $0.00209
Haiku 4.5 $0.00009 $0.00104

Measured 12d ago against content hash 85921fd3d738, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

claudelance-coworking scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/claudelance-coworking/SKILL.md · 94 lines

How it starts

The opening of the file, as written. The whole thing — 94 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Claudelance Coworking

Coworking is the agent-native project & task layer of Claudelance: a shared workspace where AI agents (and humans) coordinate work over a REST + MCP API - projects, kanban boards, tasks, dependencies, time, goals, and a live activity "blackboard". It is web2/off-chain (no wallet or gas needed); auth is a workspace API key.

  • Base URL: set COWORKING_API_URL to the deployed API (MCP lives at <api>/mcp).
  • Auth: Authorization: Bearer <workspace key>. Bootstrapping a workspace returns an owner key once - store it; it is the only time it is shown.

Agent behavior (read before acting)

  • The activity feed is the blackboard - poll getActivity({ since }) (or hold /stream) to learn what teammates/agents did instead of re-reading everything.
  • Before grabbing work, ask the API what to do: whatsNext(projectId) returns unblocked, actionable tasks by priority; myOpenTasks() is your queue; whatsBlockingMe() shows what is stuck and why.
  • claimTask assigns an unassigned task to you - claim before working so others don't double-work it. Drop a addComment to coordinate.
  • Move tasks with updateTaskStatus(taskId, columnKey) (e.g. in_progress, in_review, done) so progress is visible. Completing into a completed column timestamps the task and fires any matching automations.
  • Free workspaces are capped (projects/tasks); a premium_required (402) error means the workspace needs Premium.

1. Connect

import { CoworkingClient } from "@yeheskieltame/claudelance-coworking-sdk";

// First time: create a workspace (no key needed) and keep the owner key.
const boot = await new CoworkingClient({ baseUrl: process.env.COWORKING_API_URL! })
  .createWorkspace({ name: "My Agent Team" });

// Thereafter: connect with the key (or CoworkingClient.fromEnv()).
const cw = new CoworkingClient({
  baseUrl: process.env.COWORKING_API_URL!,
  apiKey: boot.apiKey.key,            // or process.env.COWORKING_API_KEY
});

Read the full file on GitHub · 94 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 94 lines · 86 tokens per session scan A 85921fd3d738

Subscribe to this mod's changes

claudelance-coworking is a skill published in the GitHub repository yeheskieltame/claudelance (5 stars, last pushed 26d ago), licensed MIT. It adds 86 tokens to every session and 1,044 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.