AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Mockplus Context

skill-myswallow-mockplus-context-mockplus-context · by MySwallow

|

No reviews yet
0 installs
6 views
0.0% view→install

Install

$ agentstack add skill-myswallow-mockplus-context-mockplus-context

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-myswallow-mockplus-context-mockplus-context)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Mockplus Context? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Mockplus Context (v0.5.0)

把 Mockplus develop URL 转换为结构化 YAML,LLM 直接消费。

启动时声明:"Using mockplus-context to extract from Mockplus."

何时触发

  • 用户给的输入是 https://app.mockplus.cn/app//develop/design/ 形式的 URL
  • 用户要"读 Mockplus 设计稿"、"按 Mockplus 还原 UI"、"导出 Mockplus 切图"
  • 任何后续要基于 Mockplus 数据生成代码(Vue / React / Flutter / 小程序)的前置步骤

不触发:

  • 输入是 Figma URL(用 figma-context MCP)
  • 输入只是一张孤立 PNG(让用户先找到对应 Mockplus 页面 URL)

前置条件(用户一次性配置 cookie)

python3 skills/mockplus-context/scripts/mockplus.py cookie set
# 浏览器(已登录 mockplus.cn)F12 → Application → Cookies → app.mockplus.cn
# 把全部 cookie 拼成一行粘贴,回车结束

Cookie 默认存到 ~/.config/mockplus/cookie,有效期约 30 天。401 时让用户 cookie set 重配。

LLM 工作流(收到 URL 时按这个顺序)

  1. 检查 cookie:mockplus cookie status,未配置则引导用户 cookie set
  2. 若 URL 不确定是 page(指向 group / 只有 APP_ID):mockplus tree 浏览,从树里挑出具体 page id
  3. 拿 YAML 数据:mockplus data --out page.yaml(默认 YAML)
  4. 扫 YAML 找切图:看 globalVars.stylestype: IMAGE 的 fill,收集 imageRef:
  5. 按需下切图:mockplus download --nodes , --out ./assets
  6. 进入下游(代码生成 / 对照还原等)

要视觉对照?加 --include-design 或直接 mockplus all 一站式拿齐。

命令速查

mockplus data  [--out PATH] [--format yaml|json] [--stats] [--refresh]
mockplus download  [--nodes all|h1,h2] [--out DIR] [--include-design]
mockplus all  []              # = data + download(all + design)
mockplus tree  [--format text|json] [--refresh]
mockplus cookie {set|test|status|clear|path}

> Mockplus API 物理约束:只能按整页(page) 拉数据。Group/sub-group 没有节点级 API,所以 data 只接受 page URL,group 浏览靠 tree

输出 YAML 速览(data 产物)

metadata:
  name: Sample Page
  pageId: pgA1bC2X3
  device: ios1x
  size: { width: 375, height: 812 }
  backgroundColor: '#f5f5f5'
  components:                          # SymbolInstance 反推
    /: { id, name, libraryName }

nodes:
  - id: 
    name: Submit Action
    type: TEXT                         # FRAME/TEXT/INSTANCE/RECTANGLE/ELLIPSE/VECTOR/IMAGE/SLICE
    layout: layout_000007              # 引用 globalVars.styles
    fills: fill_000001                 # 可选
    text: "Submit Action"
    textStyle: Body/16px/Semibold/Center Style   # 设计师命名
    children: [...]

globalVars:
  styles:
    fill_000003:                       # 切图填充
      - type: IMAGE
        imageRef: 2b417ea8...          # ← LLM 拿这个调 download
        scaleMode: FILL
    layout_000007:
      mode: none
      locationRelativeToParent: { x: 266, y: 737 }
      dimensions: { width: 80, height: 22 }
    Body/16px/Semibold/Center Style:
      fontFamily: PingFang SC
      fontWeight: 600
      fontSize: 16

_meta:
  unhandledFields: []                  # Mockplus schema 升级时这里会列字段

关键设计:

  • Token 复用:相同 fill/layout/effect 自动去重,节点上只放引用
  • 文字样式 key 用设计师命名(sharedStyle.name),保留语义
  • 切图节点 fills 数组里写 IMAGE fill,LLM 拿 imageRef 调 download

常见失败

| 现象 | 处理 | |---|---| | cookie 未配置 (exit 10) | mockplus cookie set | | API code != 0 (exit 21) | cookie 过期 → mockplus cookie set 重配 | | URL 指向 group,先用 tree 浏览 (exit 22) | URL 不是 page,先 tree 找正确 page id | | _meta.unhandledFields 非空 | Mockplus schema 升级了,反馈 issue | | 切图下载失败 | CDN 临时不通,重跑 download(已存在的会跳过) | | 中国境外节点超时 | img02.mockplus.cn 是华东 CDN,境外节点请挂回国代理 |

Cache 与隐私

  • 中间产物:~/.cache/mockplus//(可被 MOCKPLUS_CACHE_DIR 覆盖)
  • cookie 只读,不上传;~/.config/mockplus/cookie 自动 chmod 600
  • 用户切图产物在用户指定目录,不污染 git 仓库

进阶参考

  • references/examples.md — 端到端调用样例
  • references/troubleshooting.md — 完整错误码 + 诊断

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.