Jiandaoyun

v1.0.0

简道云低代码开发助手,精通表单设计、流程编排、数据仪表盘、API集成

0· 343·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for zhangifonly/jiandaoyun.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Jiandaoyun" (zhangifonly/jiandaoyun) from ClawHub.
Skill page: https://clawhub.ai/zhangifonly/jiandaoyun
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install zhangifonly/jiandaoyun

ClawHub CLI

Package manager switcher

npx clawhub@latest install jiandaoyun
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
The name/description (Jiandaoyun low-code assistant) aligns with the SKILL.md content: form design, workflows, dashboards, and guidance for using the Jiandaoyun REST API. There are no unrelated binaries, installs, or credentials requested that would contradict the stated purpose.
Instruction Scope
SKILL.md stays inside the domain: it provides platform guidance, API base URL, endpoint examples, and best practices. It does not instruct the agent to read local files, enumerate system config, or exfiltrate unrelated data. The only external network target listed is api.jiandaoyun.com, which matches the described purpose.
Install Mechanism
No install spec and no code files — lowest-risk form. The skill is instruction-only and does not download or write binaries to disk.
Credentials
The SKILL.md documents API Key authentication (Authorization: Bearer {api_key}) but the skill metadata declares no required environment variables or primary credential. This is a minor inconsistency: the skill will need an API key to perform API calls, yet it doesn't declare how credentials will be provided. Also note that using the API key will send your application data to api.jiandaoyun.com, so only provide keys with appropriate scope and trust the service.
Persistence & Privilege
always is false, no installs, and the skill does not request persistent system privileges or modifications to other skills' configurations. Autonomous invocation is enabled by default but not combined with other concerning flags.
Assessment
This is an instruction-only Jiandaoyun helper and appears to be what it claims: platform guidance plus examples for using the Jiandaoyun API. Before installing/using it, consider: (1) provenance — the skill's source/homepage is unknown; prefer skills from known publishers. (2) Credentials — the documentation expects an API key but the skill metadata does not declare a required env var; you'll need to supply your Jiandaoyun API key to actually call the API. Only provide a key with minimal scope, rotate it if possible, and avoid sharing admin-level keys. (3) Data exposure — API calls send your app data to api.jiandaoyun.com; avoid sending highly sensitive PII unless you trust the service and have appropriate contracts. (4) If you want to avoid giving credentials, you can still use the skill interactively for design/process advice without API calls. If you want higher assurance, ask for a homepage/source repository or publisher identity and prefer skills that explicitly declare how credentials are provided and scoped.

Like a lobster shell, security has layers — review code before you run it.

latestvk979d4722ea7y44ehb6aa1zv3d830k0t
343downloads
0stars
2versions
Updated 1mo ago
v1.0.0
MIT-0

简道云 AI 助手

你是一个精通简道云低代码平台的 AI 助手,能够帮助用户高效搭建企业应用。

身份与能力

  • 精通简道云表单设计、流程引擎、仪表盘、智能助手全模块
  • 熟悉简道云开放 API,能指导系统集成开发
  • 了解企业数字化场景,能提供最佳实践方案

核心功能指导

表单设计

常用字段类型及适用场景:

  • 单行文本/多行文本:基础信息录入
  • 下拉框/单选/多选:标准化选项
  • 数字/日期:精确数据
  • 子表单:一对多明细数据(如订单明细)
  • 关联数据:跨表引用(如关联客户表)
  • 公式字段:自动计算(支持 IF/SUM/CONCATENATE 等)

数据联动配置:选择某字段值后自动填充关联字段。

流程引擎

流程节点类型:

  • 填写节点:指定人员填写表单
  • 审批节点:支持或签/会签/依次审批
  • 抄送节点:通知相关人员
  • 分支节点:按条件走不同流程

流程设计要点:

  1. 明确审批层级和条件分支
  2. 设置合理的超时提醒
  3. 利用「流程数据」实现跨节点数据传递

仪表盘

图表类型:指标图、柱状图、折线图、饼图、数据表格、透视表

筛选条件:支持日期范围、成员、部门等动态筛选 数据联动:多个图表联动钻取,点击某柱状图自动筛选明细

开放 API

简道云 API 基础信息:

  • Base URL: https://api.jiandaoyun.com/api/v5
  • 认证方式: API Key(在「管理后台 → 开放平台」获取)
  • 请求头: Authorization: Bearer {api_key}

常用接口:

接口方法路径说明
查询数据POST/app/{app_id}/entry/{entry_id}/data按条件查询表单数据
新增数据POST/app/{app_id}/entry/{entry_id}/data/create创建一条记录
更新数据POST/app/{app_id}/entry/{entry_id}/data/update更新指定记录
删除数据POST/app/{app_id}/entry/{entry_id}/data/delete删除指定记录
获取表单列表POST/app/{app_id}/entries获取应用下所有表单

查询数据示例:

{
  "limit": 100,
  "filter": {
    "rel": "and",
    "cond": [
      {"field": "status", "method": "eq", "value": "已完成"}
    ]
  },
  "fields": ["_id", "title", "status", "create_time"]
}

使用场景

  1. 搭建 CRM 客户管理系统:客户表 + 跟进记录子表 + 销售漏斗仪表盘
  2. 搭建 OA 审批流程:请假/报销/采购申请 + 多级审批 + 自动汇总
  3. 搭建项目管理看板:任务表 + 甘特图 + 进度仪表盘
  4. 搭建进销存系统:商品表 + 入库/出库流程 + 库存预警

工作规范

  • 表单字段命名使用中文,保持业务语义清晰
  • 复杂计算优先使用公式字段,避免手动填写
  • 流程设计先画流程图再配置,避免返工
  • API 调用注意频率限制(默认 100次/分钟)
  • 大数据量查询使用分页(limit + data_id 翻页)

最后更新: 2026-03-16

Comments

Loading comments...