← 返回 Skills 市场
Inngest
作者
dwhite-oss
· GitHub ↗
· v1.0.0
· MIT-0
101
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install inngest
功能描述
Manage Inngest serverless background jobs and event-driven workflows via REST API. Use when asked to send events, trigger functions, list runs, cancel jobs,...
使用说明 (SKILL.md)
Inngest Skill
Base event ingestion URL: https://inn.gs/e/\x3CINNGEST_EVENT_KEY>
Management API base: https://api.inngest.com/v1
Auth
# Send an event (key in URL)
curl -X POST "https://inn.gs/e/$INNGEST_EVENT_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"app/user.signup","data":{"userId":"123"}}'
# Management API
curl -H "Authorization: Bearer $INNGEST_SIGNING_KEY" \
https://api.inngest.com/v1/runs
Common Operations
Send a single event:
curl -X POST "https://inn.gs/e/$INNGEST_EVENT_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"app/order.created","data":{"orderId":"ord_123","total":49.99},"user":{"id":"usr_456"}}'
Send a batch of events:
curl -X POST "https://inn.gs/e/$INNGEST_EVENT_KEY" \
-H "Content-Type: application/json" \
-d '[{"name":"app/email.sent","data":{"to":"[email protected]"}},{"name":"app/email.sent","data":{"to":"[email protected]"}}]'
List function runs:
curl -H "Authorization: Bearer $INNGEST_SIGNING_KEY" \
"https://api.inngest.com/v1/runs?limit=20&status=running"
Get a specific run:
curl -H "Authorization: Bearer $INNGEST_SIGNING_KEY" \
"https://api.inngest.com/v1/runs/$RUN_ID"
Cancel a function run:
curl -X DELETE \
-H "Authorization: Bearer $INNGEST_SIGNING_KEY" \
"https://api.inngest.com/v1/runs/$RUN_ID"
List all registered apps:
curl -H "Authorization: Bearer $INNGEST_SIGNING_KEY" \
"https://api.inngest.com/v1/apps"
Replay a failed run:
curl -X POST \
-H "Authorization: Bearer $INNGEST_SIGNING_KEY" \
"https://api.inngest.com/v1/runs/$RUN_ID/replay"
Tips
- Event names follow
domain/noun.verbconvention (e.g.app/user.created) - Batch up to 512 events per POST to reduce HTTP overhead
- The
user.idfield enables per-user throttle and concurrency controls - Filter runs by
status(running, completed, failed, cancelled) to keep responses lean
安全使用建议
This skill appears to be a simple curl-based Inngest helper and is otherwise coherent, but the SKILL.md requires two secrets (INNGEST_EVENT_KEY and INNGEST_SIGNING_KEY) while the registry metadata declares none. Before installing: (1) confirm the platform will let you provide and securely store both env vars; (2) treat INNGEST_SIGNING_KEY as a sensitive secret — only provide it if you trust the skill and platform; (3) verify network calls are limited to inn.gs and api.inngest.com and that you won't accidentally send sensitive data in event payloads; (4) ask the publisher or registry maintainer to update the skill metadata to declare the required env vars and mark the signing key as the primary credential so the platform can surface appropriate warnings and secure storage. If you cannot provide the signing key securely, do not install or run this skill.
功能分析
Type: OpenClaw Skill
Name: inngest
Version: 1.0.0
The skill bundle provides standard documentation and curl commands for interacting with the official Inngest API (api.inngest.com and inn.gs). It facilitates legitimate background job management and event ingestion using expected environment variables (INNGEST_EVENT_KEY, INNGEST_SIGNING_KEY) without any evidence of malicious intent, data exfiltration, or unauthorized execution.
能力评估
Purpose & Capability
Name/description match the SKILL.md: all examples are REST calls to inn.gs and api.inngest.com for sending events and managing runs. Behavior described in SKILL.md aligns with the stated purpose.
Instruction Scope
Instructions are limited to curl requests against inn.gs and api.inngest.com using two env vars and occasional $RUN_ID. They do not reference other files, system paths, or external endpoints beyond the Inngest domains.
Install Mechanism
This is an instruction-only skill with no install spec and no code files — nothing is written to disk and no external packages are fetched.
Credentials
The SKILL.md explicitly requires INNGEST_EVENT_KEY and INNGEST_SIGNING_KEY (sensitive secrets) but the registry metadata lists no required env vars or primary credential. Either the skill metadata is incomplete (likely) or the platform won't know to prompt for/store these secrets. Requesting signing keys is proportionate for this purpose, but the mismatch is an incoherence risk.
Persistence & Privilege
No special persistence or elevated privileges requested (always:false, no config paths, no modifications to other skills). Autonomous invocation is allowed by default but not combined with other red flags.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install inngest - 安装完成后,直接呼叫该 Skill 的名称或使用
/inngest触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
High-quality API skill by SkillPlexAI
元数据
常见问题
Inngest 是什么?
Manage Inngest serverless background jobs and event-driven workflows via REST API. Use when asked to send events, trigger functions, list runs, cancel jobs,... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 101 次。
如何安装 Inngest?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install inngest」即可一键安装,无需额外配置。
Inngest 是免费的吗?
是的,Inngest 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Inngest 支持哪些平台?
Inngest 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Inngest?
由 dwhite-oss(@dwhite-oss)开发并维护,当前版本 v1.0.0。
推荐 Skills