ii-app

ii-app is a skill for Codex from Intelligent-Internet/ii-agent. It costs 34 tokens per session (991 once invoked), scanned A, original, Apache-2.0.

A command-line tool for starting and managing local web and mobile application projects, including their development servers and previews.

In plain words
What is it for?
It is for creating web or mobile projects from bundled templates, restarting servers, viewing logs, taking screenshots, building locally, and registering a Stripe webhook.
Why use it?
It puts common project setup, restart, logging, screenshots, builds, and checkpoints into one repeatable workflow.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit It is for creating web or mobile projects from bundled templates, restarting servers, viewing logs, taking screenshots, building locally, and registering a Stripe webhook.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/intelligent-internet/ii-agent/ii-app
About the project

II-Agent is an open-source framework and AI agent for building applications, conducting research, and automating workflows from natural-language prompts. Developers, research teams, and enterprises use it to create mobile apps, websites, illustrated books, media, research outputs, and integrations with external services. The catalogue skills and instructions provide workflows and integrations for using II-Agent.

Intelligent-Internet/ii-agent · 3,383 stars · on GitHub · ii.inc

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.

Any agent
npx skills add Intelligent-Internet/ii-agent --skill ii-app
Clone the repo
git clone --depth 1 https://github.com/Intelligent-Internet/ii-agent

Made for: 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 ii-app

README.md
[![agentmods](https://agentmods.dev/badge/skills/intelligent-internet/ii-agent/ii-app.svg)](https://agentmods.dev/skills/intelligent-internet/ii-agent/ii-app)
Your own site
<a href="https://agentmods.dev/skills/intelligent-internet/ii-agent/ii-app"><img src="https://agentmods.dev/badge/skills/intelligent-internet/ii-agent/ii-app.svg" alt="Measured on agentmods" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 991 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00034 $0.00991
Opus 5 $0.00017 $0.00495
Sonnet 5 $0.00007 $0.00198
Haiku 4.5 $0.00003 $0.00099

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

Security

Grade A, and why

ii-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.

The scan reads SKILL.md. This mod also ships 16 executable files (assets/templates/nextjs-shadcn/eslint.config.mjs, assets/templates/nextjs-shadcn/next.config.js, assets/templates/nextjs-shadcn/postcss.config.mjs, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/ii_agent/settings/skills/builtin/ii-app/SKILL.md · 76 lines

How it starts

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

ii-app Skill

Use this skill for local app lifecycle actions that should go through the bundled Rust CLI:

  • ii-app web init <template_id> to scaffold a bundled web template and write a web cache
  • ii-app web restart to restart the cached tmux-backed web servers
  • ii-app web view-log to inspect web server output
  • ii-app web screenshot to open the cached preview URL in agent-browser, save a screenshot, and print the file path
  • ii-app web status to save server log output and a screenshot snapshot to disk, then print the status file path
  • ii-app web checkpoint to run bun run build:local, clean transient build artifacts, and create a git checkpoint commit
  • ii-app web list-templates to inspect bundled web template IDs
  • ii-app mobile init <project_name> to scaffold an Expo app and write a mobile cache
  • ii-app mobile restart to restart the Expo dev server and refresh tunnel/LAN URLs
  • ii-app mobile view-log to inspect Expo output
  • ii-app stripe register-webhook to create a Stripe webhook endpoint and write STRIPE_WEBHOOK_SECRET into the project .env

Workflow

Resolve the skill root as the directory containing this SKILL.md.

  1. If bin/ii-app is missing or stale, build it with scripts/build.sh.
  2. Run the binary from the skill root or by absolute path.
  3. Prefer --json when another agent step needs structured output.
  4. Use workspace-local caches unless the user asks for a custom --cache-path.

Default cache locations:

<workspace>/.ii-app/web.json
<workspace>/.ii-app/mobile.json

Commands

"<skill-root>/bin/ii-app" web list-templates
"<skill-root>/bin/ii-app" web init <template_id> --project-name <name> --workspace <dir>
"<skill-root>/bin/ii-app" web restart --workspace <dir>
"<skill-root>/bin/ii-app" web view-log --workspace <dir>
"<skill-root>/bin/ii-app" web screenshot --workspace <dir>
"<skill-root>/bin/ii-app" web status --workspace <dir>
"<skill-root>/bin/ii-app" web checkpoint --workspace <dir> --project-directory <dir>
"<skill-root>/bin/ii-app" mobile init <project_name> --workspace <dir>
"<skill-root>/bin/ii-app" mobile restart --workspace <dir>
"<skill-root>/bin/ii-app" mobile view-log --workspace <dir>
"<skill-root>/bin/ii-app" stripe register-webhook --stripe-secret-key <sk_...> --endpoint-url <https-url> --project-directory <dir>

Read the full file on GitHub · 76 lines

Files

What ships with it

60 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. 8d ago First seen · 76 lines · 34 tokens per session scan A 93d034309fd5

Subscribe to this mod's changes

ii-app is a skill published in the GitHub repository Intelligent-Internet/ii-agent (3,383 stars, last pushed 22d ago), licensed Apache-2.0. It adds 34 tokens to every session and 991 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

web-design

Penguin visual language for generated web pages and app UIs — GitHub-style simplicity with a single blue accent, light and pure-black dark themes, design tokens, component and chat-interface recipes, plus an opt-in warm paper editorial theme.

Prism-Shadow/penguin-harness · 51 tokens

ui-craft

Design, build, redesign, or modify browser-visible web interfaces with product-quality composition, visual systems, interaction states, responsive behavior, accessibility, and browser visual QA. Use for HTML, CSS, JavaScript, React, Vue, or Svelte pages and components, landing pages, dashboards, admin tools, settings…

MemTensor/memmy-agent · 86 tokens

frontend-design

Transform UI style requirements into production-ready frontend code with systematic design tokens, accessibility compliance, and creative execution. Use when building websites, web applications, React/Vue components, dashboards, landing pages, or any web UI requiring both design consistency and aesthetic quality.

jjyaoao/HelloAgents · 54 tokens

stream-react-native

Builds, integrates, migrates, and audits Stream Chat, Stream Video, and Stream Feeds in React Native CLI and Expo apps. Use when scaffolding a new RN/Expo Chat, Video, or Feeds app, adding Stream to an existing RN app, upgrading a Stream SDK version (stream-chat-react-native v8 to v9, Feeds v2 to v3), migrating from…

GetStream/agent-skills · 238 tokens

rn-best-practices

This skill should be used when writing or reviewing React Native / Expo code — before writing list rendering, animations, data fetching, component APIs, navigation, or image/media UI — and when asked to "review best practices", "check performance", "optimize renders", "review list rendering", "check animation…

Lykhoyda/rn-dev-agent · 98 tokens

shadcn

Manages shadcn components and projects — adding, searching, fixing, debugging, styling, and composing UI, including chat interfaces. Provides project context, component docs, and usage examples. Applies when working with shadcn/ui, component registries, presets, --preset codes, or any project with a components.json…

antgroup/agentic-ai-landscape · 94 tokens