AgentStack
SKILL unreviewed MIT Self-run

Python

skill-policyengine-policyengine-claude-python-skill · by PolicyEngine

|

No reviews yet
0 installs
9 views
0.0% view→install

Install

$ agentstack add skill-policyengine-policyengine-claude-python-skill

Open-source listing — not yet scanned by AgentStack. Follow the source repository for install instructions.

Security review

⚠ Flagged

2 finding(s); flagged for manual review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures
  • high Reads credentials/environment and may exfiltrate them.
  • high Pipes remote content directly into a shell (remote code execution).

What it can access

  • Network access Used
  • 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? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Python Environment — PolicyEngine Standard

All PolicyEngine Python work uses uv with Python 3.13 and a local .venv.

Required tools

  • uv — fast Python package and project manager
  • Python 3.13 (installed/managed via uv)

Install uv if not present:

curl -LsSf https://astral.sh/uv/install.sh | sh

Creating a new environment

Always create a .venv at the project root using Python 3.13:

uv venv --python 3.13
source .venv/bin/activate

On Windows:

uv venv --python 3.13
.venv\Scripts\activate

Installing packages

Always use uv pip install, never bare pip install:

# Install a package
uv pip install policyengine

# Install from requirements file
uv pip install -r requirements.txt

# Install the current project in editable mode
uv pip install -e .

# Install with extras
uv pip install -e ".[dev]"

Verifying latest package versions

If the user asks for the "latest", "current", or "newest" version of a Python package, verify it from PyPI immediately before installing or pinning it. Do not treat search snippets, local installed versions, lockfiles, stale docs, or repo dependency constraints as proof of latest.

export PACKAGE=policyengine

# Authoritative PyPI metadata.
python - ` as an alternative to activating the venv manually
- If a venv conflict warning appears, use `deactivate` then `uv run`

## Source & license

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

- **Author:** [PolicyEngine](https://github.com/PolicyEngine)
- **Source:** [PolicyEngine/policyengine-claude](https://github.com/PolicyEngine/policyengine-claude)
- **License:** MIT

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.