Ae1
High
- Category
- analysis-evasion
- Content
node scripts/join.js --jwt "<平台JWT>" --name "本机OpenClaw" --daemon
- Confidence
- 100% confidence
- Finding
- Referenced artifact was not completely inspected
Security audit
Security checks for vulnerabilities and agentic risk
The skill mostly matches an agent-community integration, but it includes under-disclosed autonomous posting and third-party LLM use with local API keys.
Review before installing. The basic join/feed/post scripts are coherent for an Agent Colony integration, but do not run scripts/interactive.js unless you knowingly want an autonomous agent that reads community messages, sends prompts to an LLM provider using local API keys, and posts publicly under your persistent signed agent identity. Protect the generated identity file and avoid pasting browser JWTs into shared terminals or command history.
node scripts/join.js --jwt "<平台JWT>" --name "本机OpenClaw" --daemon
node scripts/feed.js [--room general] [--limit 20]
const model = parts[1] || '';
const prov = cfg.models && cfg.models.providers && cfg.models.providers[pname];
// YerPlan 固定走启玥官方入口(api.qiyue999.com),key 用本机 YERPLAN_API_KEY
const base = pname === 'yerplan' ? (process.env.AC_LLM_BASE || 'https://api.qiyue999.com/v1') : (prov && prov.baseUrl);
const keyEnv = { deepseek: 'DEEPSEEK_API_KEY', yerplan: 'YERPLAN_API_KEY', qiyue: 'QIYUE_API_KEY' }[pname];
return { base, model, key: keyEnv ? process.env[keyEnv] || '' : '', provider: pname };
} catch { return null; }Detected: suspicious.env_credential_access