banach-spaces

banach-spaces is a skill for Claude Code from parcadei/Continuous-Claude-v3. It costs 15 tokens per session (937 once invoked), scanned A, original, MIT.

A guide to solving problems about Banach spaces, which are complete normed vector spaces in functional analysis. It covers standard theorems such as Hahn–Banach and the Closed Graph Theorem.

In plain words
What is it for?
Use it to check completeness, prove that operators are bounded or open, extend bounded linear functions, and apply uniform boundedness arguments.
Why use it?
It helps structure abstract proofs by showing which theorem or condition to check for a given problem.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths.

Good fit Use it to check completeness, prove that operators are bounded or open, extend bounded linear functions, and apply uniform boundedness arguments.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/parcadei/continuous-claude-v3/banach-spaces
About the project

Continuous-Claude-v3 is a Claude Code development environment that preserves working context between sessions, coordinates specialized agents, and stores project knowledge through ledgers, handoffs, and analysis tools. It is for people using Claude Code on ongoing or complex software work. Its catalogue entries are the skills, agents, hooks, plugin, and setting that provide its workflows and orchestration.

parcadei/Continuous-Claude-v3 · 3,938 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.

Any agent
npx skills add parcadei/Continuous-Claude-v3 --skill banach-spaces
Clone the repo
git clone --depth 1 https://github.com/parcadei/Continuous-Claude-v3

Made for: Claude Code.

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 banach-spaces

README.md
[![agentmods](https://agentmods.dev/badge/skills/parcadei/continuous-claude-v3/banach-spaces/github.svg)](https://agentmods.dev/skills/parcadei/continuous-claude-v3/banach-spaces)
Your own site
<a href="https://agentmods.dev/skills/parcadei/continuous-claude-v3/banach-spaces"><img src="https://agentmods.dev/badge/skills/parcadei/continuous-claude-v3/banach-spaces/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for banach-spaces

Your own site · 80×15
<a href="https://agentmods.dev/skills/parcadei/continuous-claude-v3/banach-spaces"><img src="https://agentmods.dev/badge/skills/parcadei/continuous-claude-v3/banach-spaces.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 15 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 937 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, 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 75
    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.
How audits are shown
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.00015 $0.00937
Opus 5 $0.00008 $0.00468
Sonnet 5 $0.00003 $0.00187
Haiku 4.5 $0.00002 $0.00094

Measured 9d ago against content hash 4bb50caf5c70, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

banach-spaces 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 9d 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/math/functional-analysis/banach-spaces/SKILL.md · 76 lines

How it starts

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

Banach Spaces

When to Use

Use this skill when working on banach-spaces problems in functional analysis.

Decision Tree

  1. Verify Banach space

    • Complete normed vector space
    • Check: every Cauchy sequence converges
    • z3_solve.py prove "completeness"
  2. Hahn-Banach Theorem

    • Extend bounded linear functionals
    • Separate convex sets
    • z3_solve.py prove "extension_exists"
  3. Open Mapping Theorem

    • Surjective bounded operator between Banach spaces is open
    • Consequence: bounded inverse exists
    • z3_solve.py prove "open_mapping"
  4. Closed Graph Theorem

    • T: X -> Y has closed graph implies T bounded
    • Strategy: verify graph closure, conclude boundedness
    • z3_solve.py prove "closed_graph_implies_bounded"
  5. Uniform Boundedness Principle

    • Pointwise bounded family of operators is uniformly bounded
    • Application: prove operator families are bounded

Tool Commands

Z3_Completeness

uv run python -m runtime.harness scripts/z3_solve.py prove "cauchy_sequence implies convergent"

Z3_Open_Mapping

uv run python -m runtime.harness scripts/z3_solve.py prove "T_surjective_bounded implies T_open"

Z3_Closed_Graph

uv run python -m runtime.harness scripts/z3_solve.py prove "graph_closed implies T_bounded"

Sympy_Norm

uv run python -m runtime.harness scripts/sympy_compute.py simplify "norm(alpha*x + beta*y)"

Key Techniques

From indexed textbooks:

  • [Introductory Functional Analysis with Applications] If (X, d) is a pseudometric space, we call a set B(xo; r) = {x E X I d(x, xo) < r} an open ball in X with center Xo and radius r. Note that this is analogous to 1. What are open balls of radius 1 in Prob.
  • [Measure, Integration Real Analysis (... (Z-Library)] Section 5C Lebesgue Integration on Rn 11 Suppose E is a subset of Rm Rn and Rm : (x, y) x E for some y . Dene f : R2 R by = (0, 0), (a) Prove that D1(D2 f ) and D2(D1 f ) exist everywhere on R2. Show that D1(D2 f ) (c) Explain why (b) does not violate 5.
  • [Real Analysis (Halsey L. Royden, Patr... (Z-Library)] The Hahn-Banach Theorem has a rather humble nature. The only mathematical con- cepts needed for its statement are linear spaces and linear, subadditive, and positively homogeneous functionals. Besides Zorn’s Lemma, its proof relies on nothing more than the rudimentary properties of the real numbers.
  • [Introductory Functional Analysis with Applications] If in a normed space X, absolute convergence of any series always implies convergence of that series, show that X is complete. Show that in a Banach space, an absolutely convergent series is convergent. Schauder basis) Show that if a normed space has a Schauder basis, it is separable.
  • [Introductory Functional Analysis with Applications] What are the adjoints of a zero operator 0 and an identity operator I? Annihllator) Let X and Y be normed spaces, T: X - Y a bounded linear operator and -M = (¥t( T), the closure of the range of T. Fundamental Theorems for Normed and Banach Spaces To complete this discussion, we should also list some of the main differences between the adjoint operator T X of T: X ~ Y and the Hilbert-adjoint operator T* of T: Hi ~ H 2 , where X, Yare normed spaces and Hi> H2 are Hilbert spaces.

Read the full file on GitHub · 76 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. 9d ago First seen · 76 lines · 15 tokens per session scan A 4bb50caf5c70

Subscribe to this mod's changes

banach-spaces is a skill published in the GitHub repository parcadei/Continuous-Claude-v3 (3,938 stars, last pushed 7mo ago), licensed MIT. It adds 15 tokens to every session and 937 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

tooluniverse-organic-chemistry

Organic chemistry reasoning guide for reaction product prediction, mechanism analysis (electrophilic/nucleophilic substitution, addition, elimination, pericyclic, radical), and spectroscopy interpretation (1H/13C NMR, IR, MS). Reasons from first principles (electron flow, kinetic vs thermodynamic) rather than…

mims-harvard/ToolUniverse · 86 tokens

scaffold-exercises

Scaffold a graded problem set with sections, problems, worked solutions, and short "why this matters" explainers across analytical, empirical, and coding types. Use when user says "make a problem set on X", "scaffold exercises for this lecture", "create practice problems", "generate homework with a solution key"…

pedrohcgs/claude-code-my-workflow · 101 tokens

assess-holistic-health

Conduct temperament-based health assessment from Hildegard von Bingen's Causae et Curae. Evaluates the four temperaments (sanguine, choleric, melancholic, phlegmatic), elemental correspondences (air, fire, earth, water), and provides dietary and lifestyle recommendations for rebalancing. Use when understanding…

pjt222/agent-almanac · 113 tokens

analyze-prime-numbers

Analyze prime numbers using primality tests, factorization algorithms, prime distribution analysis, and sieve methods. Covers trial division, Miller-Rabin, Sieve of Eratosthenes, and the Prime Number Theorem. Use when determining whether an integer is prime or composite, finding prime factorizations, counting or…

pjt222/agent-almanac · 91 tokens

construct-geometric-figure

Perform a ruler-and-compass construction with step-by-step justification for each operation, producing a constructible geometric figure from given elements. Covers classical Euclidean constructions including perpendicular bisectors, angle bisectors, parallel lines, regular polygons, and tangent lines. Use when given…

pjt222/agent-almanac · 92 tokens

derive-theoretical-result

Derive a theoretical result step-by-step from first principles or established theorems, with every step explicitly justified and special cases checked. Use when deriving a formula or theorem from first principles, proving a mathematical statement by logical deduction, re-deriving a textbook result for verification or…

pjt222/agent-almanac · 86 tokens