Trusted — Risk Score 0/100
Last scan:1 day ago Rescan
0 /100
auto-iteration
安全的自动任务迭代和优化系统
Clean, self-contained iteration agent using only Python standard library with proper tool whitelisting, sandboxed eval, and no undeclared sensitive behavior.
Skill Nameauto-iteration
Duration29.8s
Enginepi
Safe to install
No action needed. The skill is safe to use.
ResourceDeclaredInferredStatusEvidence
Filesystem READ,WRITE READ,WRITE ✓ Aligned _tool_read and _tool_write implemented with safety checks (size limit, path rest…
Shell NONE NONE No shell/subprocess calls in code; SecurityValidator blocks dangerous operations
Network NONE NONE No network calls; _tool_search returns static mock data
Environment NONE NONE No os.environ access; only Path.home() used for local DB path
Database NONE WRITE ✓ Aligned Creates/updates ~/.ai_iteration_log.db SQLite database for task logs; minor sinc…

File Tree

4 files · 20.2 KB · 717 lines
Python 1f · 511L Markdown 1f · 163L Shell 1f · 35L Text 1f · 8L
├─ 🔧 install.sh Shell 35L · 805 B
├─ 🐍 iteration_agent.py Python 511L · 15.1 KB
├─ 📄 requirements.txt Text 8L · 278 B
└─ 📝 SKILL.md Markdown 163L · 4.0 KB

Security Positives

✓ Only uses Python standard library — no external dependencies or supply chain risk
✓ Tool whitelist enforced: only search, read, write, calculate, validate, analyze are allowed
✓ eval() sandboxed with empty __builtins__ dict and regex input validation (digits, whitespace, basic operators only)
✓ File write restricted to current working directory via is_relative_to check
✓ File read has 1MB size limit and 1KB output truncation
✓ Dangerous operations blacklist present (rm -rf, drop table, shutdown, etc.)
✓ No credential harvesting, no environment variable iteration, no sensitive path access (~/.ssh, ~/.aws, .env)
✓ No network requests, no external IP connections, no data exfiltration
✓ No obfuscation, no base64 execution, no curl|bash patterns
✓ No persistence mechanisms (no cron, no startup hooks)
✓ Install script is minimal and transparent (only creates run.sh launcher)