Firm Acp Bridge
Analysis
This instruction-only skill is openly aimed at ACP reliability, but it asks the agent to persist session keys, spread provider API keys into autonomous sessions, and schedule host-level cron jobs outside the sandbox.
Findings (5)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
**Solution :** Planifier sur la session `main` (accès hôte) via `fleet_cron_schedule`.
The skill explicitly routes scheduled tasks to the main host-access session to avoid sandbox cron restrictions. This exposes host-level command scheduling rather than keeping execution inside an isolated session.
"tool": "fleet_cron_schedule", "args": { "command": "node scripts/daily-report.js", "schedule": "0 9 * * 1-5", "session": "main" }The artifact describes creating recurring autonomous work on the main session. Recurring scheduled execution is persistent behavior that can continue after the original user interaction.
requires:\n - mcp-openclaw-extensions >= 2.0.0\n - "@agentclientprotocol/sdk >= 0.14.0"
The skill references external dependencies and tools with lower-bound version requirements, while the submitted package contains no code or install spec for reviewing those implementations.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
acp_session_persist — persiste run_id → gateway_session_key sur disque (C4)
The skill directs storage of gateway session keys on disk. These keys may act as delegated session authority, and the artifact does not specify storage path, file permissions, encryption, or user-controlled cleanup beyond stale-session purging.
"env_vars": { "ANTHROPIC_API_KEY": "<your_key>", "OPENCLAW_MODEL": "claude-3-5-sonnet-20241022" }The skill instructs injecting provider credentials into non-main or spawned autonomous sessions. Although this is related to the stated purpose, it expands where API keys are available and includes broad allowed names such as CUSTOM_*.
