wireframe

wireframe is a skill for Claude Code, Codex from ishida-supsys/oretachi. It costs 62 tokens per session (2,185 once invoked), scanned A, original, MIT.

A template for an interactive React wireframe, a rough screen design used to plan an interface. It can show several screens, their transitions, and where data fields connect to the interface.

In plain words
What is it for?
Use it to present desktop layouts, preview multiple screens, show data bindings, and map clickable screen transitions.
Why use it?
It makes screen structure and movement between screens easier to inspect before building the finished interface.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/ishida-supsys/oretachi/wireframe
Any agent
npx skills add ishida-supsys/oretachi --skill wireframe
Clone the repo
git clone --depth 1 https://github.com/ishida-supsys/oretachi

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 wireframe

README.md
[![agentmods](https://agentmods.dev/badge/skills/ishida-supsys/oretachi/wireframe.svg)](https://agentmods.dev/skills/ishida-supsys/oretachi/wireframe)
Your own site
<a href="https://agentmods.dev/skills/ishida-supsys/oretachi/wireframe"><img src="https://agentmods.dev/badge/skills/ishida-supsys/oretachi/wireframe.svg" alt="Measured on agentmods" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,185 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00062 $0.02185
Opus 5 $0.00031 $0.01092
Sonnet 5 $0.00012 $0.00437
Haiku 4.5 $0.00006 $0.00218

Measured 4d ago against content hash f988eba15831, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

wireframe 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 4d 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.

src-tauri/skills/wireframe/SKILL.md · 158 lines

How it starts

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

wireframe スキル

インタラクティブな React ワイヤーフレームアーティファクトをテンプレートから作成する。

機能:

  • タブ切り替えによる複数画面プレビュー(デスクトップ全画面レイアウト)
  • W コンポーネントによるエンティティバインディング表示(ホバー or 「パラメータ表示」ボタンで常時表示)
  • 画面遷移 SVG 図(クリックで対応タブにジャンプ)
  • Catppuccin Mocha ダークテーマのタブバー

引数

$ARGUMENTS: <artifact-id> [--repo <repo>] [--branch <branch>]
  • artifact-id(必須): 作成するアーティファクトID(例: my-app-wireframe
  • --repo / --branch(任意): 保存先ワークツリーを明示したい場合のみ、両方セットで指定

ワークフロー

Step 1: パラメータ確定

引数を解析する。保存先ワークツリーは、artifact 系ツールに project_dir(現在の作業ディレクトリ)を渡して解決させるのが既定。HOME タブやリポジトリルートは git ワークツリーではないため git branch --show-current が使えず、--repo/--branch では特定できない。

--repo--branch が両方明示された場合のみ、project_dir の代わりにそれを渡す。--repo だけ与えられた場合は git branch --show-current でブランチを補う。

Step 2: テンプレートを読み込む

このスキルディレクトリの templates/ フォルダにある以下のファイルを Read で読み込む:

ファイル アーティファクトモジュール カスタマイズ要否
templates/entry-point.jsx エントリポイント(content) // CUSTOMIZE: コメント箇所のみ変更
templates/components--W.jsx components/W EC エンティティカラーマップのみ変更
templates/components--layout.jsx components/layout そのまま利用
templates/components--primitives.jsx components/primitives そのまま利用
templates/screens--OverviewScreen.example.jsx ※スキーマ参照用 新規生成
templates/screens--screen.example.jsx ※スキーマ参照用 新規生成

Step 3: 画面・ドメイン分析

ユーザー要件(補足ヒアリング or コードベース調査)から以下を特定する:

画面一覧: 各画面について定義する:

  • key: タブキー(kebab-case、例: task-list
  • label: タブ表示名(例: Task List
  • type: list | detail | form | auth | overview(常に1つ含む)
  • 表示フィールドとエンティティバインディング(例: Task.title, Task.status
  • アクションボタンとサービスメソッドバインディング(例: TaskService.createTask(title, dueDate)
  • ナビゲーション先(どのタブキーに遷移するか)

エンティティ一覧:

  • エンティティ名(例: User, Task)と所属カテゴリ
  • 主要フィールド(W コンポーネントの f prop で参照するもの)
  • サービスクラス(例: TaskService, UserService)も同様に定義

画面遷移グラフ:

  • { from, to, label, isBack } のリスト
  • isBack: true は戻り方向(破線表示)

Step 4: エンティティカラーマップ定義

components/WEC オブジェクトを定義する。エンティティ名 → Catppuccin Mocha 色の対応を作成。

Read the full file on GitHub · 158 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 4d ago First seen · 158 lines · 62 tokens per session scan A f988eba15831

Subscribe to this mod's changes

wireframe is a skill published in the GitHub repository ishida-supsys/oretachi (2 stars, last pushed today), licensed MIT. It adds 62 tokens to every session and 2,185 once invoked, about $0.0003 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.