clark-work

clark-work is a skill for Claude Code, Codex from S3YED/appie-kit. It costs 48 tokens per session (1,255 once invoked), scanned A, original, MIT.

A workflow for rebuilding an existing website as a new Astro site, with its content, visual design, search-engine setup, accessibility checks, blog, and deployment included. Astro is a web framework that can generate fast pages with little browser-side code.

In plain words
What is it for?
Use it to inspect a website, extract its brand and content, rebuild pages and blog content, add search metadata, test accessibility, and deploy through GitHub and Vercel.
Why use it?
It gives a structured process for replacing an old site while preserving useful content and improving its presentation, accessibility, and search visibility. It also defines how the rebuilt site is published and maintained.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to inspect a website, extract its brand and content, rebuild pages and blog content, add search metadata, test accessibility, and deploy through GitHub and Vercel.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/s3yed/appie-kit/clark-work
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 S3YED/appie-kit --skill clark-work
Clone the repo
git clone --depth 1 https://github.com/S3YED/appie-kit

Made for: Claude Code, Codex.

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 clark-work

README.md
[![agentmods](https://agentmods.dev/badge/skills/s3yed/appie-kit/clark-work/github.svg)](https://agentmods.dev/skills/s3yed/appie-kit/clark-work)
Your own site
<a href="https://agentmods.dev/skills/s3yed/appie-kit/clark-work"><img src="https://agentmods.dev/badge/skills/s3yed/appie-kit/clark-work/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 clark-work

Your own site · 80×15
<a href="https://agentmods.dev/skills/s3yed/appie-kit/clark-work"><img src="https://agentmods.dev/badge/skills/s3yed/appie-kit/clark-work.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,255 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00048 $0.01255
Opus 5 $0.00024 $0.00628
Sonnet 5 $0.00010 $0.00251
Haiku 4.5 $0.00005 $0.00126

Measured 5d ago against content hash 37464edf0a39, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

clark-work scanned grade A with 1 finding 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 5d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -X POST "$DASH/api/agent/work" \
skills/clark-work/SKILL.md · 110 lines

How it starts

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

Clark Work (agent lane)

The customer's tasks live in Clark Work on the dashboard (dash.getclark.app). As the customer's own agent you can read your customer's work, move tasks through their statuses, comment on them, and create your own projects and tasks there.

Identity and endpoint (never hardcode)

Your box already carries its own credentials. Source them instead of copying secrets:

CLARK="${CLARK:-$HOME/.clark}"
. "$CLARK/heartbeat.env"            # provides APPIE_ID, APPIE_SECRET, APPIE_HEARTBEAT_URL
DASH="${APPIE_HEARTBEAT_URL%/api/appie/heartbeat}"   # the dashboard origin

Call every action as POST $DASH/api/agent/work with two headers:

-H "X-Appie-Id: $APPIE_ID" -H "X-Appie-Secret: $APPIE_SECRET"

and a JSON body that describes the action. Never send a userId or agentReference in the body. The dashboard derives your customer from your box identity. A box can only ever touch its own customer's workspace, so these calls are safe by construction.

Actions

list_work — read all projects + tasks

curl -s -X POST "$DASH/api/agent/work" \
  -H "X-Appie-Id: $APPIE_ID" -H "X-Appie-Secret: $APPIE_SECRET" \
  -H "Content-Type: application/json" \
  -d '{"action":"list_work"}'

Returns { workspace, projects, items }. Each item has id, projectId, title, description, status, priority, dueAt, createdAt, updatedAt.

create_project — start a new project

curl -s -X POST "$DASH/api/agent/work" \
  -H "X-Appie-Id: $APPIE_ID" -H "X-Appie-Secret: $APPIE_SECRET" \
  -H "Content-Type: application/json" \
  -d '{"action":"create_project","name":"Q3 campaign","description":"optional"}'

Returns { project } with its id.

create_item — add a task to an existing project

curl -s -X POST "$DASH/api/agent/work" \
  -H "X-Appie-Id: $APPIE_ID" -H "X-Appie-Secret: $APPIE_SECRET" \
  -H "Content-Type: application/json" \
  -d '{"action":"create_item","projectId":"<project-id>","title":"Draft newsletter","description":"optional","priority":"medium","status":"todo"}'

Statuses: backlog, todo, in_progress, in_review, done, cancelled. Priorities: none, low, medium, high, urgent.

Read the full file on GitHub · 110 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. 5d ago First seen · 110 lines · 48 tokens per session scan A 37464edf0a39

Subscribe to this mod's changes

clark-work is a skill published in the GitHub repository S3YED/appie-kit (8 stars, last pushed 13d ago), licensed MIT. It adds 48 tokens to every session and 1,255 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories