Kimaki is a Discord-based orchestrator for OpenCode, an AI coding agent that edits files on a user's machine. It maps each project to a Discord channel and each coding session to a thread, allowing users to start, resume, search, and fork work through conversations. Catalogue add-ons provide Kimaki-related workflows for coding agents.
Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/remorses/kimakinpx agentmods add skills/remorses/kimaki/npm-packageWrote 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.
[](https://agentmods.dev/skills/remorses/kimaki/npm-package)<a href="https://agentmods.dev/skills/remorses/kimaki/npm-package"><img src="https://agentmods.dev/badge/skills/remorses/kimaki/npm-package.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 3 findings, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Agent Snooping · line 139 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
- medium MCP Rug Pull · line 392 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 404 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00078 | $0.06066 |
| Opus 5 | $0.00039 | $0.03033 |
| Sonnet 5 | $0.00016 | $0.01213 |
| Haiku 4.5 | $0.00008 | $0.00607 |
Grade C, and why
npm-package scanned grade C with 2 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 8d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
**Never put `rm -rf`, `rimraf`, or any delete in `build`.** `build` runs on Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s https://raw.githubusercontent.com/owner/repo/main/README.md # NEVER pipe to head/tail How it starts
The opening of the file, as written. The whole thing — 693 lines — stays where its author put it; the contents beside it link to each section on GitHub.
npm-package
Use this skill when scaffolding or fixing npm packages.
Package.json rules
-
Always set
"type": "module". -
Always fill
"description". -
Always include GitHub metadata:
repositorywithtype,url, anddirectoryhomepagebugs
-
Always include meaningful
keywords. -
Always export
./package.json. -
Exports structure must include:
"."for runtime entrypoint (dist)"./src"and"./src/*"pointing to.tssource files
-
In every export object, put
typesfirst.- For runtime exports (for example
"."), pointtypesto emitted declaration files indist. - For source exports (
"./src","./src/*"), pointtypesto source files insrc(not./dist/*.d.ts).
- For runtime exports (for example
-
Always include
defaultin exports. -
filesmust include at least:srcdist- any runtime-required extra files (for example
schema.prisma) skills/directory if the package ships an agent skill (see "Agent skill" section below). Skill files live atskills/<name>/SKILL.md, never at the package root.- if tests are inside src and gets included in dist, it's fine. don't try to exclude them
- Do NOT create package-level README.md files. In workspaces, keep one README at the repository root. Package READMEs don't get read by anyone. The root README is the single source of truth for the whole project.
-
scripts.buildshould betsc && chmod +x dist/cli.js(skip the chmod if the package has no bin). No bundling. Optionally include running scripts withtsxif needed to generate build artifacts.Never put
rm -rf,rimraf, or any delete inbuild.buildruns on every edit, watch loop, and CI test job. Deletingdist/there breaks live dev servers that hold it in their module graph (Bun fails withFailed to load bundled module '<pkg>/dist/index.js'until restarted) and throws away incremental compilation. A stale file only matters in a published tarball, whichprepublishOnlyalready handles.
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.
- 8d ago First seen · 693 lines · 78 tokens per session scan C 45a0aaadf050
npm-package is a skill published in the GitHub repository remorses/kimaki (1,402 stars, last pushed today), licensed MIT. It adds 78 tokens to every session and 6,066 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it C with 2 findings (recursive force delete, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
silo-extension-builder
Help the user design, write, compile, and install a Silo extension from a natural-language description. The extension follows the same format as any publishable Silo extension and can be shared via npm or a tarball URL when ready.
javascript-typescript
Professional JavaScript and TypeScript development skill covering modern ES6+, TypeScript, Node.js, Express, React, testing frameworks, and best practices. Use this skill when developing JavaScript/TypeScript applications, building React/Node.js projects, implementing RESTful APIs, or need guidance on modern JS/TS…
apple-cktool-js
Builds and troubleshoots CloudKit automation with Apple's CKTool JS packages, including @apple/cktool.database, @apple/cktool.target.nodejs, and @apple/cktool.target.browser. Use when Codex needs typed JavaScript or TypeScript for CloudKit schema import, export, validation, or reset; container and team discovery…
cli-builder
Guide for building TypeScript CLIs with Bun. Use when creating command-line tools, adding subcommands to existing CLIs, or building developer tooling. Covers argument parsing, subcommand patterns, output formatting, and distribution.
mainframe-typescript-backend
Develop, debug, review, or test server-side TypeScript in Node.js services and established Next.js server layers. Use proactively for backend APIs, business rules, persistence, jobs, realtime behavior, server integrations, and focused backend tests. Do not use for substantial client-only UI, Python services, data or…
typescript-engineering
Comprehensive TypeScript engineering guidance for coding agents. Use when writing, reviewing, refactoring, or debugging TypeScript or TSX code; designing public APIs; fixing tsconfig or strict-mode issues; resolving generic, union, narrowing, async, module, or type-inference problems; improving runtime validation…