agentsclimarketplace

Tasks

Skill TonyCasey/lisa/src/project/.lisa/skills/tasks

Create, load, or summarize tasks via Graphiti MCP; triggers on 'tasks', 'list tasks', 'add task', usable by any model (Claude, Gemini).From its SKILL.md

Install
npx -y skills add TonyCasey/lisa --skill tasks

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

3 things to look at

  • reads credentialsReads from 2 credential sources: `${GRAPHITI_ENDPOINT}` and 1 more.
  • 9 stars9 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • runs commandsInstructs the agent to run 2 commands, including `lisa tasks list --cache [--group <id>] [--limit 20] [--all|--since today]` and 1 more.

SKILL.md

1.5 KB, 357 tokens by cl100k_base, as published. Nobody here has run it

Purpose

Model-neutral helper to add/list tasks in Graphiti MCP so any agent can keep a shared task board.

Triggers

Use when the user says: "add a task", "list tasks", "load tasks", "task status".

How to use

  1. List: lisa tasks list --cache [--group <id>] [--limit 20] [--all|--since today]
  2. Add: lisa tasks add "<task text>" [--status todo|doing|done] [--tag foo] [--group <id>] --cache
  3. Defaults: reads ${GRAPHITI_ENDPOINT} from .lisa/.env (written by init); group ID is automatically derived from the project folder path. List defaults to --since today unless --all or --since is provided.
  4. Cache fallback: writes/reads cache/tasks.log when --cache is passed, returning last cached result on MCP failure.
  5. Keep prompts model-neutral; models only orchestrate CLI commands and summarize JSON output.

I/O contract (examples)

  • List: { status: "ok", action: "list", tasks: [...] }
  • Add: { status: "ok", action: "add", task: { text, status, group } }
  • Fallback: { status: "fallback", error, fallback: <cached object> }

Cross-model checklist

  • Claude: concise instructions; avoid role tokens; keep outputs small.
  • Gemini: explicit commands and minimal formatting.

Notes

  • All commands use the lisa CLI binary — no scripts to run directly.
  • Tasks are stored via Graphiti MCP add_task/list_tasks.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.