archipy-docs

A reference and lookup guide for ArchiPy, a Python application framework or toolkit, covering its common project patterns.

In plain words
What is it for?
Use it to answer ArchiPy implementation questions and find the relevant bundled or online documentation for a project.
Why use it?
It gives app teams a place to check how ArchiPy handles configuration, adapters, helpers, dependency injection, errors, testing, and related concerns.

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/syntaxarc/archipy-plugin/archipy-docs
Any agent
npx skills add SyntaxArc/archipy-plugin --skill archipy-docs
Clone the repo
git clone --depth 1 https://github.com/SyntaxArc/archipy-plugin

Made for: Claude Code, Codex.

Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 502 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.00051 $0.00502
Opus 5 $0.00026 $0.00251
Sonnet 5 $0.00010 $0.00100
Haiku 4.5 $0.00005 $0.00050

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

Security

Grade A, and why

archipy-docs 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.

skills/archipy-docs/SKILL.md · 40 lines

How it starts

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

ArchiPy Docs Lookup

Procedure

  1. Read reference.md in this skill directory.
  2. Answer from the reference when possible (cite section names).
  3. If the topic is missing or version-sensitive, point to the matching live doc:
Topic URL
Docs home https://syntaxarc.github.io/ArchiPy/
Quickstart https://syntaxarc.github.io/ArchiPy/getting-started/quickstart/
Project structure https://syntaxarc.github.io/ArchiPy/getting-started/project_structure/
Adapters https://syntaxarc.github.io/ArchiPy/tutorials/adapters/
Helpers https://syntaxarc.github.io/ArchiPy/tutorials/helpers/
Config https://syntaxarc.github.io/ArchiPy/tutorials/config_management/
DI https://syntaxarc.github.io/ArchiPy/tutorials/dependency_injection/
Health checks Bundled reference.md (HTTP + gRPC) + /scaffold-health-checks
Errors https://syntaxarc.github.io/ArchiPy/tutorials/error_handling/
Testing https://syntaxarc.github.io/ArchiPy/tutorials/testing_strategy/ + /scaffold-bdd
Observability Bundled reference.md § Observability + https://syntaxarc.github.io/ArchiPy/tutorials/observability/
Redis search Bundled reference.md + /redis-search
API reference https://syntaxarc.github.io/ArchiPy/api_reference/

Read the full file on GitHub · 40 lines

Files

What ships with it

1 file 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. yesterday First seen · 40 lines · 51 tokens per session scan A 0ec7ce0a00dd

Subscribe to this mod's changes

archipy-docs is a skill published in the GitHub repository SyntaxArc/archipy-plugin (2 stars, last pushed 8d ago), licensed MIT. It adds 51 tokens to every session and 502 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-31.

Related

Other skills, from other repositories

specx-component-architecture

Design or review specx core scope boundaries in Python services. Use when deciding where code belongs across packaged scoped foundation bases, optional local foundation extensions, core/, capabilities, delivery, infrastructure, shared/, and ioc; when adding guardrails or splitting use cases, services, DTOs, schemas…

maksimzayats/specx · 74 tokens

specx-project-structure

Create or reshape a Python FastAPI service repo into the specx clean core/delivery architecture using packaged scoped foundation bases. Use when starting an API backend, adding the first src package, or establishing AGENTS.md, core/, optional local foundation/, delivery/, infrastructure, ioc/, migrations, and tests.

maksimzayats/specx · 75 tokens

specx-tests

Add or refine tests for specx Python services. Use when creating unit tests for use cases/services, integration tests for FastAPI controllers or infrastructure adapters, e2e smoke tests, architecture import guardrails, DI override tests, pytest fixtures, or coverage and boundary checks.

maksimzayats/specx · 58 tokens

specx-diwire-composition

Wire dependency injection for a specx Python service with diwire. Use when adding ioc/container.py, explicit dependency registrations for capabilities, repositories, gateways, UoW managers, clients, settings, or factories, Injected[...] constructor fields, FastAPI app factory/lifecycle composition, test overrides, or…

maksimzayats/specx · 83 tokens

only-skill-you-need

The first and only skill a beginner should install. Bootstraps the rest of the agent skill stack for this project, then routes every task to the current best skill for that job. Keeps a dual ledger (global defaults + project overlay) so the same use-case never gets two skills and a worse skill never replaces a better…

Endokelp/Only-Skill-You-Need · 152 tokens

specx-add-core-use-case

Add or refactor a specx core scope use case. Use when implementing an externally meaningful application action under a core scope usecases package, adding same-file command/query inputs, result DTOs, coordinating services, opening a unit-of-work transaction, or moving behavior out of delivery or infrastructure into…

maksimzayats/specx · 70 tokens