clawness
01Plugin Claude Code
The right coding rules, in context, on every prompt — automatically.
Plugin Claude Code
The right coding rules, in context, on every prompt — automatically.
Plugin Claude Code
Puts the right rules in context on every prompt, automatically — built for full-stack developers moving across frontend, backend, and SQL in one session, researchers working in bare or LaTeX-only directories, and teams who want adversarial review (security red/blue team, code critic) before merge. 222 rules across 30…
Settings file Claude Code
Agent settings declaring 8 allowed tools.
Instructions file
Instructions for fullymiddleaged/Clawness, covering claude.md — working on clawness, what this is, architecture (request flow), key files and design decisions (don't undo without reading these).
Agent
Devil's advocate for architecture decisions. Use when proposing a new system design, choosing a technology, or making a significant structural change. Challenges assumptions and proposes alternatives.
Agent
Adversarial code reviewer. Use when you want a brutally honest review of code quality before a PR, merge, or deployment. Focuses on bugs, performance, maintainability, and missed edge cases. Read-only.
Agent
Analyzes code for performance issues. Focuses on N+1 queries, unnecessary re-renders, memory leaks, bundle size, and slow algorithms. Use before deployment or when something feels slow.
Agent
Analyzes code for refactoring opportunities. Identifies code smells, duplications, overly complex functions, tight coupling, and suggests specific improvements. Read-only — reports findings, doesn't modify.
Agent
Use after the red team has reported findings. Proposes concrete fixes, hardening measures, and defense-in-depth strategies. Reviews red team findings for false positives and prioritizes remediation by risk.
Agent
Use when reviewing code for security vulnerabilities. Thinks like an attacker. Searches for current CVEs and OWASP Top 10 issues relevant to the tech stack. Invoke for security audits, pre-deployment reviews, or when touching auth, payments, or user data.
Agent
Generates comprehensive tests for code. Reads existing test patterns in the project and matches the style (Jest, Vitest, pytest, etc.). Covers happy paths, edge cases, error cases, and boundary conditions.
Skill Claude CodeCodex
Create a new Clawness rule from a natural language description. Describe what you want enforced and this will generate the YAML rule file with proper tags, triggers, and examples.
Skill Claude CodeCodex
Review one domain of the Clawness rule corpus for correctness against current official documentation, then record what was established as a version stamp (appliesto / verified / sources) on each rule individually. For maintainers and fork maintainers. Reports verdicts and writes stamps; never rewrites rule text.
Skill Claude CodeCodex
Author a starter set of Clawness rules for a project whose stack Clawness ships no corpus for (Ruby, PHP, Elixir, Haskell, C#, Swift, Dart, Scala, Clojure, ...). Researches the stack's current conventions from official documentation, drafts a small set of project rules into .clawness/rules/, lint-validates them, and…
Skill Claude CodeCodex
Shrink an oversized CLAUDE.md. Measures what the project's always-loaded instructions cost per turn, then works through it section by section — cutting what the codebase already says, moving path-specific guidance to .claude/rules/ and prompt-specific conventions to .clawness/rules/, and leaving load-bearing "don't…
Skill Claude CodeCodex
Build and run a project-specific retrieval eval so changes to your rules or base prompt are scored, not eyeballed. Mirrors tests/groundtruth.json + clawness eval: you write prompt→expected-rule cases, then measure MRR@k and hit-rate before and after an edit. Run it after trimming a base prompt into ranked retrieval…
Skill Claude CodeCodex
Trim an OpenClaw workspace's base system prompt. Measures what the always-injected workspace files (SOUL.md, AGENTS.md, IDENTITY.md, USER.md, MEMORY.md) cost per turn, then works through them section by section — cutting what the tools or codebase already say, moving durable conventions to Clawness ranked retrieval…
Skill Claude CodeCodex
Run a performance audit on the project or a specific module. Checks for N+1 queries, unnecessary re-renders, memory leaks, bundle size issues, and slow algorithms.
Skill Claude CodeCodex
Bring this project's Clawness rules up to date with the framework version it actually runs. Establishes what is installed and what the codebase uses, looks up what changed since the rules were verified, and writes version-corrected overrides into .clawness/rules/ — reporting the list and stopping for approval before…
Skill Claude CodeCodex
Run an adversarial code review on staged changes or a specific file. Spawns the code-critic agent to find bugs, performance issues, and missed edge cases. Use before merging PRs or committing.
Skill Claude CodeCodex
Run a stateful red team / blue team security audit on the current project or a specific module. First enumerates the attack surface deterministically with clawness scan (zero LLM tokens, identical every run) and accumulates verdicts in a findings ledger, so each pass adjudicates only what is NEW instead of re-scanning…
Skill Claude CodeCodex
Show the current Clawness configuration: which rules are loaded, which agents are available, and how the hook is configured. Use to understand what rules Claude is seeing for this project.
Skill Claude CodeCodex
Generate comprehensive tests for a file or module. Reads existing test patterns and matches the project's style. Covers happy paths, edge cases, error conditions, and boundary values.
Skill Claude CodeCodex
Write user documentation for a project by scanning its codebase — its UI screens and its public API/CLI — inferring what someone can actually do with it, and drafting brief, task-oriented docs to the Diátaxis standard (tutorial / how-to / reference / explanation). Handles both non-technical end-user docs and developer…