— No reviews yet
0 installs
13 views
0.0% view→install
Install
$ agentstack add skill-ek33450505-claude-agent-team-python-conventions ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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 No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ 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.
Are you the author of Python Conventions? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claimAbout
Python Conventions
- Stdlib only unless task spec allows pip installs
- DB access: use
scripts/cast_db.pyabstraction (db_write,db_query,db_execute) - DB path:
os.environ.get('CAST_DB_PATH', os.path.expanduser('~/.claude/cast.db')) - Error handling: catch specific exceptions, log to
~/.claude/logs/, never crash the hook pipeline - Schema changes: use
CREATE TABLE IF NOT EXISTSandALTER TABLE ... ADD COLUMNwith try/except for idempotency - Stdin parsing:
json.loads(os.environ.get("CAST_INPUT", ""))pattern with try/except - Use f-strings for string formatting
- Type hints on function signatures where practical
- No global state — each script execution is independent
Script File Conventions
- Python scripts: use stdlib only unless the task spec explicitly allows pip installs
- DB access: always use
os.environ.get('CAST_DB_PATH', os.path.expanduser('~/.claude/cast.db'))for path resolution - Exit codes: 0 = success, 1 = error; print errors to stderr, results to stdout
- Idempotency: migration scripts must be safe to run multiple times (check before CREATE/ALTER)
- All new scripts written here must ALSO be committed to the repo
scripts/directory — never write only to~/.claude/scripts/ - Hook scripts that emit events: use
cast_emit_eventfrom~/.claude/scripts/cast-events.sh - JSON output scripts: always emit valid JSON even on error (
{"error": "..."})
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ek33450505
- Source: ek33450505/claude-agent-team
- License: MIT
- Homepage: https://castframework.dev
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.