verify

verify is a skill for Claude Code, Codex from usekaneo/kaneo. It costs 21 tokens per session (398 once invoked), scanned A, original, MIT.

A verification recipe for testing Kaneo changes on a local development instance. It covers starting the API and web app, checking the database, and driving the user interface.

In plain words
What is it for?
Use it to launch Kaneo locally, verify migrations and database rows, test scheduled notifications, inspect websocket updates, and exercise flows through the web UI.
Why use it?
It makes end-to-end checks repeatable and highlights project-specific details that can otherwise make tests misleading or fail silently.

Skill for Claude CodeCodex

About the project

Kaneo is an open-source project-management application for organizing work with kanban boards, issues, and issue tracking. Teams use it to manage projects, and its self-hosted design lets them keep the application and data under their control. The catalogue contains skills, rules, instructions, and an MCP integration for working with Kaneo.

usekaneo/kaneo · 8,954 stars · on GitHub

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.

agentmods
npx agentmods add skills/usekaneo/kaneo/verify
Any agent
npx skills add usekaneo/kaneo --skill verify
Clone the repo
git clone --depth 1 https://github.com/usekaneo/kaneo

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 verify

README.md
[![agentmods](https://agentmods.dev/badge/skills/usekaneo/kaneo/verify.svg)](https://agentmods.dev/skills/usekaneo/kaneo/verify)
Your own site
<a href="https://agentmods.dev/skills/usekaneo/kaneo/verify"><img src="https://agentmods.dev/badge/skills/usekaneo/kaneo/verify.svg" alt="Measured on agentmods" height="20"></a>
Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 398 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00021 $0.00398
Opus 5 $0.00010 $0.00199
Sonnet 5 $0.00004 $0.00080
Haiku 4.5 $0.00002 $0.00040

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

Security

Grade A, and why

verify 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 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.

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/verify/SKILL.md · 26 lines

What it actually says

Verifying Kaneo changes

Launch

  • pnpm dev starts API (1337) and web (5173). Check lsof -nP -iTCP:1337 -sTCP:LISTEN first; the user often already has both running.
  • API is tsx watch: it hot-restarts on any imported .ts change, but NOT on apps/api/drizzle/*.sql changes (manual restart needed after editing migrations).
  • Migrations auto-run on API startup; a failed migration exits the process (port goes dead).

Database access

  • DATABASE_URL=$(grep "^DATABASE_URL" .env | cut -d= -f2-); psql "$DATABASE_URL" gives direct Postgres access for asserting rows (notification, task_reminder_sent, user_notification_preference).
  • Gotcha: task.userId in Drizzle maps to column assignee_id, not user_id.
  • When replicating scheduler SQL by hand, SET timezone = 'UTC' first; timestamps are naive UTC.

Driving flows

  • Drive the web UI at localhost:5173 with claude-in-chrome; the user's session is usually signed in.
  • Notification bell is top-left next to the workspace switcher; badge updates live over websocket (no refresh needed to observe delivery).
  • Due-date picker is date-only (stores local midnight as naive UTC). To trigger the due-date reminder cron (every 5 min, 10-min lookback window) within a session: set the assignee's lead-time preference (Settings > Account > Notifications, in hours) or nudge task.due_date via psql so due_date - lead lands 2-3 min ahead.
  • Preferences save button silently disables for out-of-range lead values.
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 · 26 lines · 21 tokens per session scan A bce81a3be578

Subscribe to this mod's changes

verify is a skill published in the GitHub repository usekaneo/kaneo (8,954 stars, last pushed today), licensed MIT. It adds 21 tokens to every session and 398 once invoked, about $0.0001 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-30.

Related

Other skills, from other repositories

component-tester

Run Vitest tests for a specific component with coverage. Use when making changes to React components to ensure tests pass and coverage is maintained.

motormetrics/motormetrics · 31 tokens

nextjs-pages-router

Set up tRPC in Next.js Pages Router with createNextApiHandler, createTRPCNext, withTRPC HOC, SSR via ssr option and ssrPrepass, SSG via createServerSideHelpers with getStaticProps, and server-side helpers for getServerSideProps prefetching.

trpc/trpc · 67 tokens

react-query-setup

Set up @trpc/tanstack-react-query with createTRPCContext(), TRPCProvider, useTRPC() hook, queryOptions/mutationOptions factories, query invalidation via queryClient.invalidateQueries with queryFilter, and type inference with inferInput/inferOutput.

trpc/trpc · 60 tokens

non-json-content-types

Handle FormData, file uploads, Blob, Uint8Array, and ReadableStream inputs in tRPC mutations. Use octetInputParser from @trpc/server/http for binary data. Route non-JSON requests with splitLink and isNonJsonSerializable() from @trpc/client. FormData and binary inputs only work with mutations (POST).

trpc/trpc · 75 tokens

server-side-calls

Call tRPC procedures directly from server code using t.createCallerFactory() and router.createCaller(context) for integration testing, internal server logic, and custom API endpoints. Catch TRPCError and extract HTTP status with getHTTPStatusCodeFromError(). Error handling via onError option.

trpc/trpc · 61 tokens

trpc-router

Entry point for all tRPC skills. Decision tree routing by task: initTRPC.create(), t.router(), t.procedure, createTRPCClient, adapters, subscriptions, React Query, Next.js, links, middleware, validators, error handling, caching, FormData.

trpc/trpc · 59 tokens