一键导入
deployment-smoke-test
Run basic functionality tests on deployed agents to verify A2A communication and basic operations.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run basic functionality tests on deployed agents to verify A2A communication and basic operations.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Manages Redis cache TTLs for AgeMem working memory, calculating expiration times based on memory type, importance, access patterns, and Ebbinghaus decay.
Reviews and organizes memories, promoting episodic to semantic storage, archiving outdated information, and maintaining memory health. Use periodically or when memory optimization is needed.
Manages memory lifecycle operations including promotion from episodic to semantic, archiving outdated memories, and maintaining memory state transitions per AgeMem policy.
Discovers and maintains relationships between memories across tiers (episodic, semantic, procedural), enabling unified retrieval and knowledge graph navigation.
Calculates and assigns importance scores to memories based on content analysis, user signals, access patterns, and emotional salience. Use when adding new memories or re-evaluating existing ones.
Send agent-to-agent (A2A) messages via Redis pub/sub with optional ACP WebSocket delivery. Use when agents need to communicate, broadcast to the triad, or check agent health. Compatible with the npm OpenClaw gateway.
| name | deployment-smoke-test |
| description | Run basic functionality tests on deployed agents to verify A2A communication and basic operations. |
Runs basic functionality tests on the deployment.
node skills/deployment-smoke-test/test.js
Returns JSON with test results and pass/fail status.
{
"timestamp": "2024-01-15T10:30:00Z",
"overall": "passed",
"tests": {
"agent_ping": {
"status": "passed",
"details": {
"steward": "responded",
"alpha": "responded",
...
}
},
"a2a_message": {
"status": "passed",
"details": "Message delivered from steward to alpha"
},
...
},
"summary": {
"total": 5,
"passed": 5,
"failed": 0
}
}