echo-workflow
1
总安装量
1
周安装量
#52583
全站排名
安装命令
npx skills add https://github.com/alavida-ai/skills --skill echo-workflow
Agent 安装分布
mcpjam
1
claude-code
1
replit
1
junie
1
zencoder
1
Skill 文档
Echo Workflow Test
A simple echo workflow for testing asynchronous workflow execution through the Alavida platform.
Overview
Submits a message to the Alavida platform as an async workflow job. The platform queues it, processes it through the echo component, and returns the result via job polling. Useful for verifying:
- Async job submission works
- Job status polling works
- Callback-based completion flows correctly
- Credit deduction after completion (this workflow is free)
Usage
alavida run echo-workflow --input '{"message": "hello"}'
Checking Status
alavida jobs status <job-id>
Response
{
"echo": "hello",
"received_at": "2026-02-10T12:00:00Z",
"execution_mode": "async"
}
Notes
- This is a free workflow â no credits are charged
- Uses asynchronous execution (job is queued, then completed via callback)
- Useful for smoke testing the full async pipeline