scaffold-archipy-utils

scaffold-archipy-utils is a skill for Claude Code, Codex from SyntaxArc/archipy-plugin. It costs 40 tokens per session (413 once invoked), scanned A, original, MIT.

A guide for adding helper code to an ArchiPy Python application. It focuses on small, reusable functions or classes, such as tools for dates, strings, passwords, files, or errors.

In plain words
What is it for?
Use it to choose or scaffold a utility in the application’s helpers/utils folder, with typed code, documentation, and an example of how to use it.
Why use it?
It helps developers reuse an existing ArchiPy helper when one fits and keeps new utilities free of database or other input/output work.

Skill for Claude CodeCodex

Part of the archipy plugin — 12 skills, 19 commands shipped together

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

Made for: Claude Code, Codex.

Or install archipy, the plugin that ships this one along with the rest of its 12 skills, 19 commands.

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 scaffold-archipy-utils

README.md
[![agentmods](https://agentmods.dev/badge/skills/syntaxarc/archipy-plugin/scaffold-archipy-utils.svg)](https://agentmods.dev/skills/syntaxarc/archipy-plugin/scaffold-archipy-utils)
Your own site
<a href="https://agentmods.dev/skills/syntaxarc/archipy-plugin/scaffold-archipy-utils"><img src="https://agentmods.dev/badge/skills/syntaxarc/archipy-plugin/scaffold-archipy-utils.svg" alt="Measured on agentmods" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 413 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.00040 $0.00413
Opus 5 $0.00020 $0.00206
Sonnet 5 $0.00008 $0.00083
Haiku 4.5 $0.00004 $0.00041

Measured 4d ago against content hash 3a4687404ea0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

scaffold-archipy-utils 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 4d 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.

skills/scaffold-archipy-utils/SKILL.md · 64 lines

What it actually says

Scaffold ArchiPy Utils

Scope

Only helpers/utils/. Do not create decorators or interceptors here.

Before writing files

Ask:

  1. Util name / purpose
  2. Prefer existing ArchiPy util vs custom (TracingUtils, RateLimitUtils, DatetimeUtils, StringUtils, JWTUtils, PasswordUtils, FileUtils, ErrorUtils, AppUtils, …)

Prefer ArchiPy

If an ArchiPy util fits, show import + usage example and stop — do not duplicate. See ../archipy-docs/reference.md (Utils section).

Custom util

Create helpers/utils/<name>_utils.py:

from __future__ import annotations


class SlugUtils:
    """Pure string helpers for URL-safe slugs — no I/O."""

    @staticmethod
    def slugify(value: str) -> str:
        """Return a lowercase hyphenated slug.

        Args:
            value: Raw display string.

        Returns:
            Slug suitable for path segments.
        """
        cleaned = "".join(ch.lower() if ch.isalnum() else "-" for ch in value.strip())
        while "--" in cleaned:
            cleaned = cleaned.replace("--", "-")
        return cleaned.strip("-")
  • Pure functions/classes — no I/O, no DB, no adapters
  • Google-style docstrings + full type hints
  • Lazy-import optional deps inside functions when needed
  • Brief usage snippet in the reply

Docs

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. 4d ago First seen · 64 lines · 40 tokens per session scan A 3a4687404ea0

Subscribe to this mod's changes

scaffold-archipy-utils is a skill published in the GitHub repository SyntaxArc/archipy-plugin (2 stars, last pushed 11d ago), licensed MIT. It adds 40 tokens to every session and 413 once invoked, about $0.0002 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

temporal-python-testing

Test Temporal workflows with pytest, time-skipping, and mocking strategies. Covers unit testing, integration testing, replay testing, and local development setup. Use when implementing Temporal workflow tests or debugging test failures.

wshobson/agents · 45 tokens

fastapi-templates

Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.

wshobson/agents · 37 tokens

python-guidelines

This skill should be used when writing, reviewing, or refactoring Python code. Covers code integration, idiomatic patterns, docstring formatting, anti-abstraction rules, and software engineering basics.

fcakyon/claude-codex-settings · 42 tokens

manimgl-best-practices

Trigger when: (1) User mentions "manimgl" or "ManimGL" or "3b1b manim", (2) Code contains from manimlib import , (3) User runs manimgl CLI commands, (4) Working with InteractiveScene, self.frame, self.embed(), ShowCreation(), or ManimGL-specific patterns. Best practices for ManimGL (Grant Sanderson's 3Blue1Brown…

calesthio/OpenMontage · 167 tokens

code-helper

Helps users write cleaner, more readable Python code.

sinewaveai/agent-security-scanner-mcp · 13 tokens

python-packaging-bug-finder

Use when you need to find known packaging bugs, fixes, and workarounds for Python projects by searching GitHub issues and analyzing their resolution status.

opendatahub-io/ai-helpers · 37 tokens