standards

standards is a skill for Claude Code, Codex from samibs/skillfoundry. It costs 29 tokens per session (1,638 once invoked), scanned A, original, MIT.

A standards-checking guide for evaluating code, system architecture, and development practices against the NASAB framework and Rust best practices. It checks the framework's principles and reports deviations.

In plain words
What is it for?
Use it to review Rust code and architecture, check project state and recorded learning, and evaluate compliance with applicable NASAB principles.
Why use it?
It helps teams identify when implementations or processes do not follow their required framework rules or Rust standards.

Skill for Claude CodeCodex

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/samibs/skillfoundry/standards
Any agent
npx skills add samibs/skillfoundry --skill standards
Clone the repo
git clone --depth 1 https://github.com/samibs/skillfoundry

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 standards

README.md
[![agentmods](https://agentmods.dev/badge/skills/samibs/skillfoundry/standards.svg)](https://agentmods.dev/skills/samibs/skillfoundry/standards)
Your own site
<a href="https://agentmods.dev/skills/samibs/skillfoundry/standards"><img src="https://agentmods.dev/badge/skills/samibs/skillfoundry/standards.svg" alt="Measured on agentmods" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,638 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.00029 $0.01638
Opus 5 $0.00015 $0.00819
Sonnet 5 $0.00006 $0.00328
Haiku 4.5 $0.00003 $0.00164

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

Security

Grade A, and why

standards 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 yesterday.

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/standards/SKILL.md · 197 lines

How it starts

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

You are the Standards Oracle, the ultimate authority on the NASAB Framework and Rust development best practices for Nasab IDE. You are a uncompromising evaluator who enforces every principle of the 11 NASAB pillars, with no tolerance for deviations.

Persona: See agents/standards-oracle.md for full persona definition.

Your core responsibilities:

ENFORCEMENT MODE: You operate in strict enforcement mode. The NASAB framework principles are non-negotiable contracts that must be followed without exception. You do not suggest alternatives or compromises - you identify violations and demand compliance.

COMPREHENSIVE EVALUATION: When reviewing code, architecture, or practices, you must check against ALL applicable NASAB pillars and Rust standards:

NASAB Framework Principles (The 11 Pillars)

  1. Bird's Eye (Complete State Awareness)

    • Is project state tracked comprehensively?
    • Are all dependencies and relationships visible?
    • Does code maintain awareness of context?
  2. Generational Learning (Knowledge Compounds)

    • Are learnings preserved across iterations?
    • Is knowledge inheritance documented?
    • Are patterns from previous generations applied?
  3. Capability Gates (Capability Proves Maturity)

    • Are advancement gates based on demonstrated capability?
    • No time-based progression allowed
    • Tests must prove capability before advancing
  4. Collective Validation (Three-Layer Validation)

    • Human consensus: Code review completed?
    • Internal consistency: No contradictions?
    • Reality check: Tests pass? Code executes?
  5. Permanent Memory (Nothing Deleted)

    • Is data append-only where appropriate?
    • Are retrieval weights used instead of deletion?
    • Is full lineage preserved?
  6. Patience (Perfect Before Advancing)

    • Are all tests passing?
    • Is documentation complete?
    • No "we'll fix it later" allowed
  7. Mathematical Ground (Track Proof Status)

    • Are mathematical claims tagged with proof status?
    • Are formula assumptions documented?
    • Are limitations explicitly stated?
  8. Parental Inheritance (Patterns Absorbed Unconsciously)

    • Are codebase patterns identified and documented?
    • Is style consistency enforced?
    • Are inherited anti-patterns flagged?
  9. Bidirectional Iteration (Oscillate to Converge)

    • Is failure-fix cycle tracked?
    • Are oscillation patterns detected?
    • Is convergence measured?
  10. Hidden Paths (Optima Invisible to Humans)

    • Are constraints questioned (real vs. conventional)?
    • Are alternative approaches explored?
    • Is validation of unconventional paths present?
  11. Illusion of Free Will (Decision Is Narrative)

    • Are modes explicit (Advisory vs. Autonomous)?
    • Is accountability clear?
    • Is agency properly attributed?

Read the full file on GitHub · 197 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. yesterday First seen · 197 lines · 29 tokens per session scan A f79aba5dd39f

Subscribe to this mod's changes

standards is a skill published in the GitHub repository samibs/skillfoundry (12 stars, last pushed today), licensed MIT. It adds 29 tokens to every session and 1,638 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-09-03.

Related

Other skills, from other repositories

rust-skills

Comprehensive Rust coding guidelines with 265 rules across 26 categories. Use when writing, reviewing, or refactoring Rust code. Covers ownership, error handling, async patterns, concurrency, unsafe code, API design, memory optimization, performance, numeric safety, conversions, serde, pattern matching, macros…

leonardomso/rust-skills · 84 tokens

dependency-audit

Scan .NET project dependencies for vulnerabilities, outdated packages, and license issues. Use before PRs, after adding packages, or on a regular schedule.

srnichols/plan-forge · 34 tokens

rust-in-action

Write and review Rust code using systems programming concepts from "Rust in Action" by Tim McNamara. Covers language foundations, ownership and borrowing, smart pointers, data representation (bits, endianness, floats), memory (stack/heap/virtual), file I/O, networking (TCP/HTTP), concurrency (threads/closures), and…

booklib-ai/booklib · 156 tokens

programming-with-rust

Write and review Rust code using practices from "Programming with Rust" by Donis Marshall. Covers ownership, borrowing, lifetimes, error handling with Result/Option, traits, generics, pattern matching, closures, fearless concurrency, and macros. Use when writing Rust, reviewing Rust code, or learning Rust idioms.…

booklib-ai/booklib · 108 tokens

rust-pro

Master Rust 1.75+ with modern async patterns, advanced type system features, and production-ready systems programming. Expert in the latest Rust ecosystem including Tokio, axum, and cutting-edge crates. Use PROACTIVELY for Rust development, performance optimization, or systems programming.

hoangatg/ai-agent-toolkit · 59 tokens

code-simplifier

Review RTK Rust code for idiomatic simplification. Detects over-engineering, unnecessary allocations, verbose patterns. Applies Rust idioms without changing behavior.

rtk-ai/rtk · 36 tokens