Install
$ agentstack add skill-lightjunction-lightjunction-python-code-standards ✓ 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 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.
About
Python Code Standards
Apply this skill when editing, reviewing, or creating Python code. Keep changes small, typed, testable, and aligned with the local project structure.
Workflow
- Inspect the existing Python package layout,
pyproject.toml, tests, and
current toolchain before changing files.
- Load
references/python-code-standards.mdbefore making non-trivial Python
edits or reviewing Python code.
- Prefer existing local patterns when they are stricter than the reference.
When local patterns conflict with the reference, keep behavior stable and call out the tradeoff.
- Add or update focused pytest coverage for new behavior and regressions.
- Run the narrowest useful validation first, then broader checks when the
change affects shared behavior.
Required Defaults
- Use Python 3.13+ conventions when project constraints allow it.
- Use
uvfor environment and dependency workflows. - Use
ruff formatfor formatting andruff checkfor linting. - Use
ty checkormypy --strictfor type checking when configured. - Use
pytestfor tests. - Add complete type annotations for all new code.
- Add docstrings for modules, classes, and public functions.
Validation
Prefer commands already defined by the project. When no project command exists, use these direct checks where applicable:
ruff format
ruff check
ty check
pytest
If ty is not configured or unavailable, use:
mypy --strict src/
Report any check that could not be run and why.
Reference Files
references/python-code-standards.md- Detailed Python organization,
typing, imports, docstrings, exceptions, functions, classes, async, testing, tooling, and prohibited-pattern rules.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: LIghtJUNction
- Source: LIghtJUNction/lightjunction
- License: MIT
- Homepage: https://lightjunction.github.io/lightjunction/
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.