一键导入
events
Event API helper for create/get/list/update operations against the AI Agents events API. Requires DATALAYER_API_KEY.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Event API helper for create/get/list/update operations against the AI Agents events API. Requires DATALAYER_API_KEY.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Web crawling and extraction scripts for HTML pages, JS-rendered pages, links, tables, robots policy, and site crawling.
GitHub API scripts for repository discovery and inspection. Use this skill when listing your repos, inspecting one repo, or listing issues/PRs. Requires GITHUB_TOKEN.
PDF form-processing toolkit for checking fillable forms, extracting form field metadata, validating bounding boxes, converting pages to images, and filling forms.
Summarize text from a file or inline input. Use for concise summaries and key-point extraction.
| name | events |
| description | Event API helper for create/get/list/update operations against the AI Agents events API. Requires DATALAYER_API_KEY. |
| license | Proprietary. LICENSE.txt has complete terms |
| version | 1.0.0 |
| tags | ["events","orchestration","scheduling"] |
| author | Datalayer |
DATALAYER_API_KEY (required)DATALAYER_AI_AGENTS_URL (optional, default https://prod1.datalayer.run)run_skill_script with:
skill_name: eventsscript_name: eventargs[0].args for required positional items (for example, event_id).kwargs for optional and named flags.script_name: eventSubcommands and parameters:
createargs: ["create"]kwargs: agent_id, titlekwargs: kind, status, payload, metadatapayload and metadata must be JSON object strings.getargs: ["get", "<event_id>"]kwargs: nonelistargs: ["list"]kwargs: agent_id, kind, status, limit, offsetupdateargs: ["update", "<event_id>"]kwargs: title, kind, status, payload, metadatapayload and metadata must be JSON object strings.run_skill_script Examples{
"skill_name": "events",
"script_name": "event",
"args": ["create"],
"kwargs": {
"agent_id": "data-acquisition",
"title": "New dataset",
"kind": "dataset_ingested",
"payload": "{\"dataset\":\"imerg\"}"
}
}
{
"skill_name": "events",
"script_name": "event",
"args": ["update", "evt_123"],
"kwargs": {
"status": "completed"
}
}
python agent_skills/skills/events/scripts/event.py create --agent-id data-acquisition --title "New dataset" --kind dataset_ingested --payload '{"dataset":"imerg"}'
python agent_skills/skills/events/scripts/event.py get evt_123
python agent_skills/skills/events/scripts/event.py list --agent-id data-acquisition --status pending --limit 20
python agent_skills/skills/events/scripts/event.py update evt_123 --status completed