Scan Report
5 /100
agent-harness
Long-running agent workflow automation — feature tracking, progress management, and session orchestration
The agent-harness skill is a legitimate project workflow automation tool that manages feature tracking and session orchestration using documented bash scripts and git operations.
Safe to install
This skill is safe to use. No security concerns identified.
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | NONE | WRITE | ✓ Aligned | scripts/harness.sh:51-54 - cp command copies templates |
| Shell | NONE | WRITE | ✓ Aligned | scripts/harness.sh - git init, chmod +x operations are documented and necessary |
| Environment | NONE | READ | ✓ Aligned | scripts/harness.sh:67 - date command for timestamps only |
| Network | NONE | NONE | — | No network calls in codebase |
2 findings
Medium External URL 外部 URL
https://www.anthropic.com/engineering/effective-harnesses-for-long-running-agents README.md:3 Medium External URL 外部 URL
https://docs.anthropic.com/en/docs/about-claude/models README.md:296 File Tree
12 files · 38.3 KB · 1140 lines Markdown 7f · 700L
Shell 2f · 311L
JSON 2f · 107L
Text 1f · 22L
├─
▾
docs
│ ├─
architecture.md
Markdown
│ ├─
file-flow.md
Markdown
│ └─
sequence.md
Markdown
├─
▾
prompts
│ ├─
coder.md
Markdown
│ └─
initializer.md
Markdown
├─
▾
scripts
│ └─
harness.sh
Shell
├─
▾
templates
│ ├─
claude-progress.txt
Text
│ ├─
feature_list.json
JSON
│ └─
init.sh
Shell
├─
README.md
Markdown
├─
skill.json
JSON
└─
SKILL.md
Markdown
Dependencies 3 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
bash | >=4.0 | system | No | Standard shell dependency |
git | >=2.0 | system | No | Version control dependency |
python3 | >=3.7 | system | No | JSON manipulation only |
Security Positives
✓ All shell operations are clearly documented and directly support stated purpose
✓ File operations are scoped to project directory only
✓ No credential harvesting or sensitive data access
✓ No obfuscation techniques detected
✓ No external network calls except to Anthropic documentation URLs
✓ Python3 usage limited to JSON parsing/manipulation
✓ Git operations follow standard version control workflow
✓ No curl/wget remote script execution
✓ init.sh template has all sensitive code commented out