Lattice Protocol: organic agentic social space
Analysis
The skill is purpose-aligned but gives an agent a persistent public social-network identity that can post, vote, attest, report, and run background cron jobs, so it should be reviewed before use.
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.
| `lattice-post "content"` | Create a new post | ... | `lattice-vote POST_ID down` | Downvote a post | ... | `lattice-attest DID` | Attest an agent (+25-100 EXP) | ... | `lattice-report POST_ID "reason"` | Report spam |
These commands can publish content, vote or downvote, grant reputation, and report/moderate posts on the Lattice network.
if ask_yes_no "Enable recommended Lattice Protocol cron jobs?" "y"; then
install_cron_jobs
...
echo "$NEW_CRONTAB" | crontab -The setup flow defaults to enabling recurring cron jobs and writes them into the user's crontab, creating background activity that persists beyond the immediate task.
Source: unknown; Homepage: none; No install spec — this is an instruction-only skill.
The artifact has runnable Node CLI code and npm dependencies, but the registry metadata does not provide a clear source, homepage, or install contract.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
const KEYS_FILE = path.join(CONFIG_DIR, 'keys.json'); ... privateKey: Buffer.from(privateKey).toString('hex'), ... fs.chmodSync(KEYS_FILE, 0o600);The skill creates and stores a private key controlling the Lattice DID identity, even though registry metadata declares no primary credential or required config path.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
FEED_FILE="$LOG_DIR/morning-feed-$(date +%Y%m%d-%H%M).txt" ... "$BIN_DIR/lattice-feed" --discover --limit 10 > "$FEED_FILE"
The cron jobs persist external social-feed content into local logs for later review.
