用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Praveengovianalytics/SparkGen-AWS --skill sparkgen-chat命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Generate a new SparkGen-AWS project from the cookiecutter template
Develop and modify the SparkGen-AWS cookiecutter template — variables, hooks, files
Run cookiecutter matrix tests to verify template generates correctly across all variable combinations
正在显示 SKILL.md
基于 SOC 职业分类
| name | sparkgen-chat |
| description | Send a chat message to the running agent server and display the response |
| user_invokable | true |
| auto_invokable | false |
| arguments | <message> [--agent name] [--session id] [--max-iterations N] |
Send a chat message to the running SparkGen agent and display the full response.
Before sending:
curl -sf http://localhost:8000/health
/sparkgen-deploy local or make local.env (default: dev-local-key)Build and send the request:
curl -s -X POST http://localhost:8000/v1/chat \
-H "Content-Type: application/json" \
-H "X-API-Key: ${API_KEY:-dev-local-key}" \
-d '{
"message": "<user message>",
"agent_name": "<agent or empty for default>",
"session_id": "<session or auto-generated>",
"max_iterations": <N or 10>
}'
Parse and display the JSON response:
When --session is provided, the agent maintains conversation history. Use the same session ID for follow-up messages to test multi-turn behavior.
/sparkgen-chat "What tools do you have?"
/sparkgen-chat "Search for deployment docs" --agent researcher
/sparkgen-chat "Follow up on that" --session abc123
/sparkgen-debug generalcurl http://localhost:11434/api/tags)