AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Python Pro

skill-yassimba-loom-python-pro · by Yassimba

Use when writing Python 3.12+ — typed application code, async programming, CLI tools (cyclopts, rich), or pandas data manipulation.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-yassimba-loom-python-pro

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access Used
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-yassimba-loom-python-pro)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
yesterday

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Python Pro? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Python Pro

Type-safe, async-first, production-ready Python 3.12+: application code, CLI tools, and pandas data work.

References

Load the matching reference when your task touches its area — each holds the rules and gotchas for that branch, only what the defaults get wrong.

| Reference | Load When | | ---------------------------- | ----------------------------------------------------- | | references/type-system.md | Generics, Protocol, type aliases, exhaustiveness | | references/cli.md | Building or extending a CLI | | references/pandas-gotchas.md | Any DataFrame work — cleaning, groupby, merge, perf |

Packaging and tooling have dedicated skills: use uv for projects/dependencies, ty for type checking, ruff for lint/format.

Rules — General Python

  • Type hints on every function signature and class attribute; X | None over Optional[X]; PEP 695 generics (type X = ..., class C[T]:, def f[T]:).
  • Dataclasses over hand-written __init__; context managers for resource handling; pathlib over os.path.
  • async/await for I/O-bound work; route blocking calls through asyncio.to_thread.
  • Catch specific exception types.
  • Keep default arguments immutable — a None sentinel for mutable defaults.
  • Google-style docstrings on public APIs.

House opinions

  • Guard clauses over nesting: validate and return/raise early at the top of the function; the happy path reads straight down at one indent level. An else after a guard is a smell.
  • TaskGroup over bare gather for structured concurrency; asyncio.timeout() over wait_for.
  • Parametrize over copy-paste tests; property-based (hypothesis) where the invariant is crisper than examples.

The green gate

Ship the implementation and its pytest suite together. The work is green when all three pass:

uv run ty check                                  # zero errors
uv run ruff check --fix && uv run ruff format
uv run pytest --cov                              # >90% coverage

Finish only on green.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.