ワンクリックで
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 職業分類に基づく
| 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
}
}
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.