noodle: Skill for Claude Code

.agents/skills/noodle-dev/SKILL.md

noodle-dev is a skill for Claude Code, Codex from wilfredinni/noodle. It costs 52 tokens per session (3,704 once invoked), scanned A, original, Apache-2.0.

A development guide for noodle, a terminal-based REST client built with Bun and OpenTUI. It covers the project’s features, code structure, persistent files, command-line options, and tests.

In plain words
What is it for?
Use it when adding or changing panes, keybindings, hooks, overlays, authentication, request bodies, importers, CLI flags, persistent state, or other noodle features.
Why use it?
It gives contributors the project-specific instructions needed to change noodle consistently. It also separates bug reproduction, testing, implementation, and review so a fix is not assumed from code inspection alone.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md; mentions Codex.

This is wilfredinni/noodle's own configuration. It tells Claude Code and Codex how to work on noodle itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything noodle configures →

Reuse

Borrowing it

Nothing to install: this file belongs to wilfredinni/noodle. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/wilfredinni/noodle/main/.agents/skills/noodle-dev/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/wilfredinni/noodle

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 noodle-dev

README.md
[![agentmods](https://agentmods.dev/badge/skills/wilfredinni/noodle/noodle-dev.svg)](https://agentmods.dev/skills/wilfredinni/noodle/noodle-dev)
Your own site
<a href="https://agentmods.dev/skills/wilfredinni/noodle/noodle-dev"><img src="https://agentmods.dev/badge/skills/wilfredinni/noodle/noodle-dev.svg" alt="Measured on agentmods" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,704 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.1 $0.00052 $0.03704
Opus 5 $0.00026 $0.01852
Sonnet 5 $0.00010 $0.00741
Haiku 4.5 $0.00005 $0.00370

Measured today against content hash 95b9f6a83e50, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

noodle-dev 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 today.

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.

.agents/skills/noodle-dev/SKILL.md · 106 lines

How it starts

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

noodle-dev

Terminal REST client. OpenTUI (React binding) on Bun. YAML files on disk.

REQUIRED BACKGROUND: Read AGENTS.md for CLI commands, stack, and conventions.

Quick routing

Task Read
Understand module boundaries, data flow, state, CLI, collection layout architecture.md
Add a keybinding, pane, overlay, auth type, body type, hook, importer, CLI flag recipes.md
Write tests for new feature testing.md
Fix a bug or investigate a regression testing.mdBug-fix workflow
Add/modify persistent state (new files, config, timeline) architecture.md → "Collection directory layout"
Build terminal UI components REQUIRED SUB-SKILL: Use opentui skill

Bug-fix workflow

For bug reports, keep investigation, regression-test creation, implementation, and review as separate stages. Never declare a bug fixed based only on code inspection.

  1. Reproduce the reported behavior before changing production code.
  2. When practical, add the smallest focused failing regression test that proves the defect.
  3. If the user requests investigation or approval first, stop after reporting the reproduction, likely root cause, and proposed minimal fix; do not implement until approved. Otherwise, continue with the authorized fix.
  4. Make the smallest localized change that passes the regression test. Do not refactor unrelated code or change behavior outside the reported bug.
  5. Never delete, skip, weaken, or broadly rewrite tests merely to make them pass.
  6. Run the focused test first, then the full test suite after the patch.
  7. Review the final diff for regressions and unintended behavior changes. Report the root cause, changed files, tests changed or added, commands run, user-visible behavior changes, and remaining risks.

Read the full file on GitHub · 106 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. today Changed 95b9f6a83e50
  2. yesterday Changed e7f091ea9631
  3. 2d ago Changed · +1 lines 86452cac1951
  4. 6d ago First seen · 105 lines · 52 tokens per session scan A eb3f31bb43cc

Subscribe to this mod's changes

noodle-dev is a skill published in the GitHub repository wilfredinni/noodle (301 stars, last pushed today), licensed Apache-2.0. It adds 52 tokens to every session and 3,704 once invoked, about $0.0003 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

api-design-patterns

Comprehensive API design patterns covering REST, GraphQL, gRPC, versioning, authentication, and modern API best practices.

aAAaqwq/AGI-Super-Team · 29 tokens

api-design

Use when settling the contract of an API you expose, before implementation: resources/URLs, REST vs GraphQL, versioning, one RFC 9457 error envelope, pagination, idempotency — emitted as OpenAPI 3.1. NOT implementing the endpoints (that is fastapi/nestjs/go/nodejs), NOT auth hardening (that is secure-coding), NOT…

ericrisco/rsc-harness · 105 tokens

geoserver-rest-api

Use when automating GeoServer management — programmatic workspace, datastore, and layer creation, style upload, service configuration via REST API. GeoServer REST API: manage GeoServer without GUI using curl, Python, or any HTTP client.

znlgis/opengis-skills · 53 tokens

golang-http-frameworks

Go HTTP API development with net/http, Chi, Gin, Echo, and Fiber frameworks.

bobmatnyc/claude-mpm-skills · 23 tokens

kavo-decorator

Reference for what @Kavo(Entity, config?) generates and how to configure/override it — routes table, EntityConfig shape (dto/allowed/operations), manual-method-wins, @Override, and fully custom routes. Use when writing or reviewing a @Kavo-decorated controller, or answering "how do I configure/override this route"…

kavo-labs/kavo · 78 tokens

policy

Reference for Kavo's policy authorization DSL — permission()/role()/owner()/authenticated()/filtered()/when() composed with and()/or()/not(), config placement, entity-aware nodes, enforcement order, and the authorization.required default-deny switch. Use when gating an operation on the caller (403 KAVOFORBIDDEN)…

kavo-labs/kavo · 94 tokens