AIDotNet
from GitHub
数据与AI
Process, transform, analyze, and report on CSV and JSON data files. Use when the user needs to filter rows, join datasets, compute aggregates, convert formats, deduplicate, or generate summary reports from tabular data. Works with any CSV, TSV, or JSON Lines file.
DoiiarX
from GitHub
工具与效率
JSON flat view, schema inference, and edit tool. ⚠️ CRITICAL: ALWAYS use jstool for JSON files - NEVER use read/edit/cat on *.json! Use when the user provides JSON data in ANY form and wants to explore its structure, infer its schema, modify fields, or edit configuration files.
HuangYuChuh
from GitHub
开发与编程
- 📁 asset/
- 📁 data/
- 📁 docs/
- 📄 .gitignore
- 📄 config.example.json
- 📄 LICENSE
Generate images utilizing ComfyUI's powerful node-based workflow capabilities. Supports dynamically loading multiple pre-configured generation workflows from different instances and their corresponding parameter mappings, converting natural language into parameters, driving local or remote ComfyUI services, and ultimately returning the images to the target client. **Use this Skill when:** (1) The user requests to "generate an image", "draw a picture", or "execute a ComfyUI workflow". (2) The user has specific stylistic, character, or scene requirements for image generation. --- # ComfyUI Agent SKILL ## Core Execution Specification As an OpenClaw Agent equipped with the ComfyUI skill, your objective is to translate the user's conversational requests into strict, structured parameters and hand them over to the underlying Python scripts to execute workflows across multi-server environments. ### Step 0: AI-Native Workflow Auto-Configuration (Optional) If the user provides you with a new ComfyUI workflow JSON (API format) and asks you to "configure it" or "add it": 1. Check the existing server configurations or default to `local`. 2. Save the provided JSON file to `./data/<server_id>/workflows/<new_workflow_id>.json`. 3. Analyze the JSON structure (look for `inputs` inside node definitions, e.g., `KSampler`'s `seed`, `CLIPTextEncode`'s `text` for positive/negative prompts, `EmptyLatentImage` for width/height). 4. Automatically generate a schema mapping file and save it to `./data/<server_id>/schemas/<new_workflow_id>.json`. The schema format must follow: ```json { "workflow_id": "<new_workflow_id>", "server_id": "<server_id>", "description": "Auto-configured by OpenClaw", "enabled": true, "parameters": { "prompt": { "node_id": "3", "field": "text", "required": true, "type": "string", "description": "Positive prompt" } // Add other sensible parameters that the user might want to tweak } } ``` 5. Tell the user that the new workflow on the specific server is successfully co
bug-ops
from GitHub
工具与效率
Validate, format, and convert YAML/JSON files using fast-yaml (fy) tool. Triggers on: 'validate yaml', 'format yaml', 'lint yaml', 'check yaml syntax', 'convert yaml to json', 'convert json to yaml', 'yaml formatter', 'fix yaml formatting', 'json to yaml'. Supports bidirectional YAML ↔ JSON conversion, YAML 1.2.2 spec with parallel processing for batch operations.