Home / balabalabalading / huuuuuuho-skills · skills/Ardot-skills-nonofficial/ardot-create-new-file/SKILL.md · GitHub

ardot-create-new-file skillA

ardot-create-new-file is agent-read markdown (skill) from balabalabalading/huuuuuuho-skills: **强制性前置条件** — 每次调用 `create_new_page` 工具之前,必须先调用此技能。 未经加载此技能,绝不能直接调用 `create_new_page`。 当用户想要在 Ardot 设计文件中创建新页面时触发。 关键词:在 Ardot 上下文中的"创建新页面"、"添加页面"、"新画布"。.

Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.

What the file says

# ardot-create-new-file — 创建新 Ardot 页面

处理 Ardot 设计文件中的页面创建。轻量级前置技能,确保正确的页面 ID 追踪和编辑器状态管理。

## 工作流程

### 第一步:确定页面名称和位置

根据用户意图决定描述性页面名称:
- `"Components"` — 用于可复用组件库
- `"Light Mode"` / `"Dark Mode"` — 用于特定主题的页面
- `"Screens"` — 用于设计原型
- 如果新页面需要出现在特定现有页面之后,使用 `leftPageId`

### 第二步:调用 create_new_page

```json
create_new_page({
  "name": "Components",
  "select": false
})
```

**默认使用 `select: false`** — 这会创建页面但不切换编辑器焦点,允许你继续在当前页面工作。

仅当你需要立即切换到新页面进行后续操作时,才使用 `select: true`。

### 第三步:记录返回的 pageId

响应包含新页面的 ID。**立即保存** — 这是后续跨页面写入和交接时最可靠的 pageId 来源。

```
响应示例:pageId = "3:1672"
```

使用此 pageId 进行:
- 跨页面 `I("3:1672", {...})` 操作
- `M("nodeId", "3:1672")` 将节点移动到此页面
- `batch_read({parentId: "3:1672"})` 读取此页面内容

## 重要说明

- **pageId 发现受限**:不带 nodeIds 的 `batch_read({})` 只返回当前上下文的内容,不能作为全文件页面枚举依据。
- **在创建时记录页面 ID** — 这是最可靠的交接方式;必要时也可以读取已知 pageId 或已知节点 ID。
- **`select: true`**(默认值)会将编辑器切换到新页面。如果你正在跨多个页面构建,这可能会中断你的工作流程。
- **`leftPageId`** 允许在特定兄弟页面之后插入新页面,有助于维护页面顺序。

## 跨页面操作参考

一旦你记录了页面 ID:

| 操作 | 方法 | 示例 |
|------|------|------|
| 在特定页面创建 | `I("pageId", {...})` | `I("3:1672", {type: "FRAME", ...})` |
| 移动节点到页面 | `M("nodeId", "pageId")` | `M("3:544", "3:1672")` |
…

Read the whole file at its exact version.

How to install

Latest version
mdr add balabalabalading/huuuuuuho-skills/ardot-create-new-file@git:20260701.bfeff65
Exact content
mdr add balabalabalading/huuuuuuho-skills/ardot-create-new-file@sha256:e60fe69fed1c9dad

Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.

Badge

mdr badge

[![mdr](https://markdownregistry.com/badge/art_x3zha4zo6tzy7jhb.svg)](https://markdownregistry.com/a/art_x3zha4zo6tzy7jhb)

1 badge views in 30 days

Versions

versioncommittedcommitsizeaudit
git:20260701.bfeff65 latest2026-07-01 bfeff65 2,748 BA view · diff
git:20260610.fe5ae6d2026-06-10 fe5ae6d 2,589 BA view · diff
git:20260520.0488b942026-05-20 0488b94 2,758 BA view

Audit of the latest version

A  17 of 17 checks passed. Deterministic, no model, same answer every run.
  • pass: Frontmatter block present
  • pass: Frontmatter declares a name
  • pass: Frontmatter declares a description
  • pass: Size between 200 bytes and 200 KB (2748 bytes)
  • pass: No zero-width or bidi control characters
  • pass: No instruction hidden inside an HTML comment
  • pass: No link to an exfiltration or paste host
  • pass: No credential-shaped string
  • pass: No instruction to send local credentials anywhere
  • pass: No text hidden with inline styles
  • pass: No prompt-injection phrasing
  • pass: No curl or wget piped into a shell
  • pass: No recursive delete of root, home or parent
  • pass: No instruction to read or print local credentials
  • pass: No base64 blob over 200 characters
  • pass: No link to a raw IP address
  • pass: No script tag

Source

GitHub

balabalabalading/huuuuuuho-skills · 117 stars · license MIT · pushed 2026-09-22 · branch main

API

GET https://markdownregistry.com/api/v1/artifacts/art_x3zha4zo6tzy7jhb
GET https://markdownregistry.com/api/v1/resolve?ref=balabalabalading/huuuuuuho-skills/ardot-create-new-file
GET https://markdownregistry.com/api/v1/blob/e60fe69fed1c9dad006691c1540947e4fb8aa4a78c5e6d2cfb05d67dfbe4f1f2

Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.

More from balabalabalading/huuuuuuho-skills

ardot-generate-design skill
balabalabalading/huuuuuuho-skills · skills/Ardot-skills-nonofficial/ardot-generate-design/SKILL.md · 在 Ardot 中从头构建完整页面、屏幕或多区块 UI 布局时,将此技能与 ardot-use 配合使用。 通过 6 步工作流程编排多个 MCP 工具:初始化 → 样式系统 → 变量 → 骨架 → 逐区块构建 → 验证。 触发条件:"在…
git:20260610.fe5ae6d · audit A · 117 stars
ardot-generate-library skill
balabalabalading/huuuuuuho-skills · skills/Ardot-skills-nonofficial/ardot-generate-library/SKILL.md · 在 Ardot 中构建可复用组件库或设计系统时使用此技能。 涵盖从变量/设计令牌创建到使用正确变量绑定构建组件的完整工作流程, 直至最终验证。 触发条件:"创建组件库"、"构建设计系统"、 "制作可复用按钮"、"创建 UI…
git:20260610.fe5ae6d · audit A · 117 stars
ardot-style-guide skill
balabalabalading/huuuuuuho-skills · skills/Ardot-skills-nonofficial/ardot-style-guide/SKILL.md · 从头设计或为 Ardot 项目应用视觉主题时使用此技能。 涵盖 `search_style_guide` → `build_style_guide`…
git:20260610.fe5ae6d · audit A · 117 stars
ardot-use skill
balabalabalading/huuuuuuho-skills · skills/Ardot-skills-nonofficial/ardot-use/SKILL.md · **强制性前置条件** — 每次调用 `batch_edit` 工具之前,必须先调用此技能。 未经加载此技能,绝不能直接调用 `batch_edit`。 当用户想要在 Ardot 设计文件中创建、更新、移动或删除节点时触发…
git:20260810.87aeda7 · audit A · 117 stars
article2ticktick skill
balabalabalading/huuuuuuho-skills · skills/article2ticktick/SKILL.md · 将技术周报中的文章整理为滴答清单(TickTick)待办事项,同时支持单篇文章直接添加。当用户提供周报 markdown 文档、要求将周报文章添加到滴答清单,或提及"技术周报"、"文章汇总"、"添加到滴答"等关键词时,使用此技能;当用户分享…
git:20260520.0488b94 · audit A · 117 stars
logging-session skill
balabalabalading/huuuuuuho-skills · skills/logging-session/SKILL.md · Record and query AI conversation logs — what users asked, how it was solved, and the result. Use when users want to…
git:20260610.52c2bf1 · audit A · 117 stars
mp-article-writor skill
balabalabalading/huuuuuuho-skills · skills/mp-article-writor/SKILL.md · 微信公众号文章创作。当用户想把软件更新、产品新闻、工具测评、工作流探索、个人实践或生活感悟等素材整理成公众号文章时使用。即使用户只是说「帮我写篇文章」「整理成推文」「发公众号」,也应当触发此技能。
git:20260922.acfca29 · audit B · 117 stars

Every file in balabalabalading/huuuuuuho-skills

Browse by kind, by grade A, or by owner.