AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Yarstack Create Todo

skill-yarlson-yarstack-yarstack-create-todo · by yarlson

Create a committed Markdown todo in ~/.create-todo from a todo, task, follow-up, $create-todo request, or current conversation context.

No reviews yet
0 installs
32 views
0.0% view→install

Install

$ agentstack add skill-yarlson-yarstack-yarstack-create-todo

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-yarlson-yarstack-yarstack-create-todo)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Yarstack Create Todo? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Create Todo

Create one durable Markdown todo from the user's request and current conversation context.

Rules

  • Do not read local project files unless the user explicitly references them.
  • The todo must have a concrete action and clear acceptance criteria. If either is missing or vague, ask targeted clarification questions using the available question/user-input tool. If no such tool is available, ask directly. Ask as many times as needed before creating the todo.
  • Synthesize a concise human title from the request and context. Do not use the user's raw wording if a clearer title is available.
  • Write minimal Markdown: # Title, then a concise freeform body.
  • If the bundled script returns a source repo URL, include it as the first body line: Source: https://github.com/owner/repo.
  • Keep the body freeform, but make the action and acceptance criteria explicit.

Workflow

  1. Confirm the action and acceptance criteria are clear.
  2. Generate the todo title and body.
  3. Capture the user's current working directory, then run the bundled script from this skill directory with that source directory:

``bash source_dir="$PWD" skill_dir="" "$skill_dir/create-todo.sh" --cwd "$source_dir" "" ``

The script prints two lines:

  • line 1: absolute path to the empty todo file
  • line 2: optional GitHub source repo URL; empty when unavailable
  1. Write the Markdown content to the returned file path.
  2. Format the todo:

``bash bunx prettier --write "$todo_file" ``

If bunx is unavailable, use:

``bash npx prettier --write "$todo_file" ``

If formatting fails, stop before committing.

  1. Commit only the new todo file in ~/.create-todo:

``bash todo_root="$HOME/.create-todo" todo_rel="${todo_file#"$todo_root"/}" git -C "$todo_root" add -- "$todo_rel" git -C "$todo_root" commit -m "todo: " -- "$todo_rel" ``

Do not stage or commit any other files. If the commit fails, surface git's error.

  1. If ~/.create-todo has an origin remote, push main:

``bash git -C "$HOME/.create-todo" push origin main ``

If no origin exists, report that the todo was committed locally and push was skipped. If push fails, report that the todo was created and committed, then surface the push error.

Script Contract

create-todo.sh owns deterministic file creation and first-run todo-store setup:

  • creates ~/.create-todo
  • initializes git on main when needed
  • creates and commits minimal README.md and .gitignore as initialize todo store when the todo store has no commits
  • detects the source project from --cwd git origin, git root, or folder name
  • creates ~/.create-todo//---.md
  • returns the todo file path and optional GitHub source repo URL

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.