OpenClaw Integration Guide
1. Introduction
informat is a system-level Skill designed for the Informat AI Intelligent Development Platform, supporting natural language invocation of Informat capabilities in OpenClaw or other AI agents, including:
- Data table creation and management
- Automation workflow configuration
- Dashboard building
- Workflow (BPMN) design
- Script execution
- Data read/write
Core capability: Let AI directly operate the low-code system
2. Download Skill
Please download the Skill file: informat-2.36.zip
shell
informat/
├── skill.yaml
├── tools/
│ ├── informat.md
│ └── references/
├── scripts/
│ ├── call.js
│ └── .env3. Connect to OpenClaw
Upload Skill
In the OpenClaw platform:
- Go to "Skills Management"
- Click "Upload Skill"
- Upload
informat.zip
Obtain Informat ApiKey
- Log in to the Informat platform
- Visit
{host}/workbench/account/apikey - Click "Create ApiKey" and set the expiration time
- Copy the generated ApiKey
Configure Environment Variables
Create or edit the .env file in the scripts/ directory with the following content:
bash
INFORMAT_HOST=<informat host>
INFORMAT_AGENT_TOKEN=<your-agent-token>| Parameter | Description |
|---|---|
| INFORMAT_HOST | Informat service address |
| INFORMAT_AGENT_TOKEN | Agent access credential |
4. Supported Capabilities Overview
The current Skill supports 119 system methods, with the following main capability modules:
| Module | Capability |
|---|---|
| Data Table | Table, field, and record management |
| Automation | Automation workflows |
| Workflow | BPMN processes |
| Dashboard | Charts and statistical analysis |
| API | Interface management |
| Script | JavaScript execution |
| Scheduled Tasks | Timed scheduling |
| Website | Page resource management |
| Internationalization | Multi-language support |
Use Cases
- AI automatically builds CRM / ERP systems
- Automatically generates business management systems
- Data analysis dashboard automation
- AI-driven low-code development platform
5. Example: Automatically Generate a System via Prompt
Below is a typical example: using natural language Prompt to drive OpenClaw + Informat to automatically build a complete project management system.
Prompt Input
text
# Project Management System (PMS)
## 1. Product Overview
**Objective**: Provide an end-to-end solution for managing the full lifecycle of software projects, including project planning, execution, tracking, and delivery.
---
## 2. Feature Structure
- Project Management
- Member Management
- Milestone Management
- Task Management
- Defect Tracking
- Progress and Data Analysis
---
## 3. Feature Modules
### 3.1 Project Management
- Create / Edit / Delete projects
- Project dashboard (progress, risks, defects)
### 3.2 Member Management
- Add / Remove members
- Assign roles
- Workload tracking
### 3.3 Milestone Management
- Define milestones
- Link tasks and defects
- Status tracking
### 3.4 Task Management
- Task creation and assignment
- Subtasks and dependencies
- Kanban / Gantt chart / Calendar view
- Time tracking
### 3.5 Defect Tracking
- Defect reporting / assignment / fixing / closing
- Severity and priority levels
- Defect statistical analysis
