mcpbeat Sign in

Ca Task Agent Skill

The sanctioned task-board mutator — add a queued task, start one (flips to in-progress and stamps the date, minting a dotted ID on pick-up), or mark an in-progress task done. The only blessed write to open-tasks.md.

886 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
138
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/arbiterForge/codeArbiter --skill ca-task

The instruction itself

4 sections, as written by the author

/ca-task — task-board writer

The one blessed way to mutate <project-root>/.codearbiter/open-tasks.md

(resolves D-1). Hand-editing the board is no longer the only path; this command keeps

every entry schema-conformant and every transition dated. The board LOGIC lives in the

pure _taskboardlib transforms; this command runs the thin writer

<plugin-root>/hooks/taskwrite.py.

Verbs

Always put -- before user text (a desc or title) so a value beginning with - is not

parsed as a flag. Interpreter fallback, same shape as the hooks: python3 … || python ….

  • add — append a queued task. ID-less by default; pass --id <group>.<type> to mint

a dotted ID now, --from <origin> for a harvest back-ref, --boundaries a,b for the

security/trust boundaries it touches. The description must be nonblank and

single-line; origin and boundary values must also stay on one line.

  • python3 "<plugin-root>/hooks/taskwrite.py" add [--id group.type] [--from origin] [--boundaries a,b] -- "<desc>" || python "<plugin-root>/hooks/taskwrite.py" add ... -- "<desc>"
  • start — flip a task to in-progress and stamp the started date (so it can never

be a dateless [~]). On an ID-less item, pass --as <group>.<type> to mint its dotted

ID at pick-up. --date YYYY-MM-DD overrides today.

  • python3 "<plugin-root>/hooks/taskwrite.py" start [--as group.type] [--date YYYY-MM-DD] -- "<id|title>"
  • done — flip an in-progress task to done and stamp the done date (--date

overrides today). A queued task must be started first.

  • python3 "<plugin-root>/hooks/taskwrite.py" done [--date YYYY-MM-DD] -- "<id|title>"

A missing target, an already-matching state, an out-of-order transition, a malformed

add field or --date, or an invalid GROUP.TYPE namespace is reported and writes

nothing (exit 1).

A queued done identifies the task as queued and tells the caller to start it first.

Targeting by title is best-effort:

prefer the dotted ID, and

note that if two ID-less items share a title, start/done act on the first — give one

an ID (/ca-task start --as <group>.<type> -- "<title>") to disambiguate.

When NOT to use

  • Promoting workflow follow-ups in bulk → that is the harvest

(<plugin-root>/includes/harvest.md), which calls this writer for you.

  • Reading the board / counts → /ca-status (read-only).
  • Archiving long-settled done items → deferred (D-2); done items stay in-place for now.
  • Filing a separate chore(board) PR just to flip a task state → task-board transitions

([x] done-flip, [~] start-flip, new [ ] add) ride the work commit via

commit-gate, co-located atomically with the code that completes, starts, or spawns the

task (ADR-0008). A lagging board-only PR is the anti-pattern this design eliminates.

Hard gate

  • MUST write the board only through taskwrite.py (the pure transforms), never a

free-hand Edit that can malform the schema.

  • start MUST stamp a started date — never leave a dateless [~].
  • done MUST target an in-progress task — a queued task must go through start first.
  • MUST NOT delete a task to "complete" it — mark it done so the record survives.

Other skills for the same job

different authors, same section of the catalogue
Protocolsio Integration
by christophacham
×4

Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.

16k tokens
Tailored Resume Generator
by frostant
×4

Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances

3k tokens
Excalidraw Diagram Generator
by github
vendor ×3

Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.

36k tokens scripts
Expo Dev Client
by openai
vendor ×3

Build and distribute Expo development clients locally or via TestFlight

961 tokens
Executing Plans
by ZhanlinCui
×3

Use when you have a written implementation plan to execute in a separate session with review checkpoints

542 tokens
Anndata
by christophacham
×3

Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.

16k tokens
Benchling Integration
by christophacham
×3

Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.

14k tokens
Biopython
by christophacham
×3

Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.

24k tokens

How to use it

Copy the folder

Take arbiterforge/codearbiter-ca-task from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.