一键导入
utilities
Use this skill for managing scheduled tasks, webhooks, configuration settings, and other utility operations on SELISE Blocks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use this skill for managing scheduled tasks, webhooks, configuration settings, and other utility operations on SELISE Blocks.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use this skill for deploying code, managing builds, monitoring services, and configuring runtime environments on SELISE Blocks.
Use this skill for creating, managing, and executing automated workflows with webhook/email triggers, AI agent nodes, HTTP request nodes, and email sending nodes on SELISE Blocks.
Use this skill for creating AI agents, setting up knowledge bases (RAG), configuring LLM models, building tools (API/MCP), managing conversations, streaming chat, or querying LLMs directly on SELISE Blocks. Note: this API uses snake_case throughout.
Use this skill for sending emails (template-based or ad-hoc), managing in-app notifications (send, read, mark-read), and creating/managing email templates on SELISE Blocks.
Use this skill for defining data schemas, querying/mutating data via GraphQL, uploading files (S3/DMS), managing access policies, setting field validations, migrating schemas, or configuring data sources on SELISE Blocks.
Use this skill for any request involving login, MFA setup, user creation, role/permission management, organization switching, SSO/OIDC configuration, session handling, password recovery, CAPTCHA, or access control on SELISE Blocks. Maps natural language intents to the correct flow or action and enforces security best practices.
| name | utilities |
| description | Use this skill for managing scheduled tasks, webhooks, configuration settings, and other utility operations on SELISE Blocks. |
| user-invocable | false |
| blocks-version | 1.0.5 |
Handles utility operations — scheduled tasks (cron jobs), webhook management, and project configuration settings for SELISE Blocks via the Utilities v1 API.
Covers three sub-domains: ScheduledTask (create, update, delete, and list cron-based tasks), Webhook (register and manage event-driven webhooks), and Config (read and update project configuration settings).
Example prompts that should route here:
Before executing any action or flow from this skill, read ../core/execution-context.md for the required supporting files, load order, and cross-domain orchestration rules.
Use this table to route user requests. Check flows/ first — if a flow covers the request, use it. For single-action requests, go directly to the action.
| User wants to... | Use |
|---|---|
| Create a scheduled task | flows/setup-scheduled-task-flow.md → actions/create-scheduled-task.md |
| List scheduled tasks | actions/get-scheduled-tasks.md |
| Update a scheduled task | actions/update-scheduled-task.md |
| Delete a scheduled task | actions/delete-scheduled-task.md |
| Create a webhook | flows/manage-webhooks-flow.md → actions/create-webhook.md |
| List webhooks | actions/get-webhooks.md |
| Delete a webhook | actions/delete-webhook.md |
| View project config | actions/get-config.md |
| Update project config | actions/update-config.md |
| Flow | File | Description |
|---|---|---|
| setup-scheduled-task-flow | flows/setup-scheduled-task-flow.md | Define and activate a cron-based scheduled task |
| manage-webhooks-flow | flows/manage-webhooks-flow.md | Register, configure, and test event-driven webhooks |
All endpoints are prefixed with: $API_BASE_URL/utilities/v1
| Action | File | Description |
|---|---|---|
| create-scheduled-task | actions/create-scheduled-task.md | Create a new scheduled task with cron expression |
| get-scheduled-tasks | actions/get-scheduled-tasks.md | List all scheduled tasks for the project |
| update-scheduled-task | actions/update-scheduled-task.md | Update an existing scheduled task (with taskId) |
| delete-scheduled-task | actions/delete-scheduled-task.md | Delete a scheduled task by ID |
| Action | File | Description |
|---|---|---|
| create-webhook | actions/create-webhook.md | Register a new webhook for specific events |
| get-webhooks | actions/get-webhooks.md | List all webhooks for the project |
| delete-webhook | actions/delete-webhook.md | Delete a webhook by ID |
| Action | File | Description |
|---|---|---|
| get-config | actions/get-config.md | Get all configuration settings for the project |
| update-config | actions/update-config.md | Update one or more configuration settings |