yida-app

yida-app is a skill for Claude Code, Codex from openyida/openyida-openclaw-skill. It costs 92 tokens per session (3,810 once invoked), scanned A, original, MIT.

A complete workflow for building an app in 宜搭, a Chinese low-code application platform, from planning through publishing.

In plain words
What is it for?
Creating 宜搭 apps, small tools, and mini-programs, including their pages, forms, code, requirements documents, and releases.
Why use it?
It connects the separate steps of app creation, page building, data forms, coding, and deployment into one process.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is node .claude/skills/yida-create-app/scripts/create-app.js "<应用名称>" "[描述]".

Good fit Creating 宜搭 apps, small tools, and mini-programs, including their pages, forms, code, requirements documents, and releases.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/openyida/openyida-openclaw-skill
agentmods
npx agentmods add skills/openyida/openyida-openclaw-skill/yida-app

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for yida-app

README.md
[![agentmods](https://agentmods.dev/badge/skills/openyida/openyida-openclaw-skill/yida-app/github.svg)](https://agentmods.dev/skills/openyida/openyida-openclaw-skill/yida-app)
Your own site
<a href="https://agentmods.dev/skills/openyida/openyida-openclaw-skill/yida-app"><img src="https://agentmods.dev/badge/skills/openyida/openyida-openclaw-skill/yida-app/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for yida-app

Your own site · 80×15
<a href="https://agentmods.dev/skills/openyida/openyida-openclaw-skill/yida-app"><img src="https://agentmods.dev/badge/skills/openyida/openyida-openclaw-skill/yida-app.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,810 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00092 $0.03810
Opus 5 $0.00046 $0.01905
Sonnet 5 $0.00018 $0.00762
Haiku 4.5 $0.00009 $0.00381

Measured 8d ago against content hash 22082fb23846, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

yida-app scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/yida-app/SKILL.md · 386 lines

How it starts

The opening of the file, as written. The whole thing — 386 lines — stays where its author put it; the contents beside it link to each section on GitHub.

宜搭完整应用开发技能

概述

本技能描述如何从零到一完整搭建一个宜搭应用,涵盖从应用创建到代码发布的全流程。每个步骤均依赖对应的子技能完成。

何时使用

当以下场景发生时使用此技能:

  • 用户想要一句话生成完整的宜搭应用
  • 用户需要从头开始开发一个宜搭应用
  • 用户不了解宜搭开发流程,需要完整指导
  • 进行完整的宜搭应用开发项目

使用示例

示例 1:一句话生成应用

场景:用户说"帮我搭建一个生日祝福小游戏" 流程

  1. 调用 yida-create-app 创建应用
  2. 需求分析,写入 prd 文档
  3. 调用 yida-create-page 创建自定义页面
  4. 如需存储数据,调用 yida-create-form-page 创建表单
  5. 调用 yida-custom-page 编写页面代码
  6. 调用 yida-publish-page 发布页面

完整开发流程

创建应用
    ↓
需求分析 → 创建 prd 文档(prd/<项目名>.md)
    ↓
创建自定义页面
    ↓
(如需存储数据)创建表单 → 将字段描述信息写入 prd 文档
    ↓
调用 yida-custom-page 技能编写页面代码(src/<name>.js)
    ↓
自动调用 yida-publish-page 技能发布代码

💡 登录态说明:各脚本会自动读取项目根目录的 .cache/cookies.json若 Cookie 不存在或已失效,脚本会报错退出,此时必须先调用 yida-login skill 完成交互式扫码登录(agent 用 browser 工具打开页面截图发给用户扫码),再重新执行后续步骤。严禁直接告知用户去自己打开浏览器扫码。


步骤详解

⚠️ 前置强制规则(必须遵守)

在开始任何宜搭应用开发前,必须先执行以下检查

⚠️ corpId 一致性检查(关键步骤)

在执行创建页面前,必须检查 prd 文档中的 corpId 与当前登录态的 corpId 是否一致

  1. 读取 prd 文档中的应用配置,获取已记录的 corpId
  2. 读取 .cache/cookies.json,获取当前登录态的 corpId
  3. 对比两个 corpId
    • 如果一致:继续执行创建页面
    • 如果不一致或 prd 中无 corpId:提示用户选择处理方式

corpId 不一致时的处理选项

场景 建议操作
prd 中有 corpId,但与当前登录态不一致 询问用户:是重新登录到 prd 中的组织,还是在当前组织新建应用?
prd 中无 corpId 直接新建应用

决策流程

检查 prd.corpId vs Cookie.corpId
    │
    ├── 一致 → 继续创建页面
    │
    └── 不一致
        │
        ├── 用户选择"重新登录" → 执行 yida-logout → 重新扫码登录到正确组织
        │
        └── 用户选择"新建应用" → 回到 Step 1 创建新应用(会自动覆盖 prd 配置)

Step 1:创建应用

调用 yida-create-app 技能创建宜搭应用,获取 appType

node .claude/skills/yida-create-app/scripts/create-app.js "<应用名称>" "[描述]"

输出appType(如 APP_XXXXXX),用 markdown 记录到 prd 文件夹下文档备用。

详见 yida-create-app 技能文档。


Step 2:创建自定义页面

创建页面命令

确认 corpId 一致后,调用 yida-create-page 技能:

node .claude/skills/yida-create-page/scripts/create-page.js "<appType>" "<页面名称>"

输出pageId(如 FORM-XXXXXX),记录到 prd 文档备用。

详见 yida-create-page 技能文档。


Step 3:需求分析 → 写入 prd 文档

Read the full file on GitHub · 386 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 386 lines · 92 tokens per session scan A 22082fb23846

Subscribe to this mod's changes

yida-app is a skill published in the GitHub repository openyida/openyida-openclaw-skill (5 stars, last pushed 5mo ago), licensed MIT. It adds 92 tokens to every session and 3,810 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

visual-ralph

Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ralph with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.

Yeachan-Heo/oh-my-codex · 50 tokens

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

repro-admin

Reproduce an EmDash admin UI bug. Attach a container, start the demo dev server, drive the admin with agent-browser using the dev-bypass session, and capture the reproduction as screenshots plus a replayable transcript.

emdash-cms/emdash · 48 tokens

create-site

Creates a new Power Pages code site (SPA) using React, Angular, Vue, or Astro. Guides through the full process from initial concept to deployed site: requirements discovery, scaffolding, component planning, design, implementation, validation, and deployment. Use when the user wants to create, build, or scaffold a new…

microsoft/power-platform-skills · 73 tokens

prototype-web

A clickable, high-fidelity web product prototype with navigation, a hero section, feature cards, steps, social proof, and optional pricing. It is designed to resemble a finished landing page while remaining a prototype.

nexu-io/html-anything · 24 tokens

menu-transitions-rtl

Animate react-horizontal-scrolling-menu scrolling and build right-to-left menus: noPolyfill defaults to true since v8, so transitionDuration (default 500), a custom-easing-function transitionBehavior, and per-call ScrollOptions { duration, boundary } on scrollToItem/scrollNext/scrollPrev are silently ignored unless…

asmyshlyaev177/react-horizontal-scrolling-menu · 137 tokens