inkwell-agent-sandboxes-and-software-factory: Command for Claude Code

.claude/commands/install.md

install is a command for Claude Code from disler/inkwell-agent-sandboxes-and-software-factory. It costs 41 tokens per session (1,548 once invoked), scanned C, original, MIT.

An interactive setup command for Factory In A Box, a software-development toolchain built around the Super Simple Software Factory. It checks required tools, installs dependencies, verifies environment settings, and runs a preflight check without starting servers.

In plain words
What is it for?
Preparing the Inkwell app and its development environment, checking Git and Bun, optionally checking Python and Just, validating the .env file, and testing the sandbox mount setup.
Why use it?
New contributors may not know which tools, dependencies, settings, or optional credentials are needed. The command separates the requirements for running the full agent loop from those needed only to inspect the app locally.

Command for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths; mentions Claude Code.

This is disler/inkwell-agent-sandboxes-and-software-factory's own configuration. It tells Claude Code how to work on inkwell-agent-sandboxes-and-software-factory itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything inkwell-agent-sandboxes-and-software-factory configures →

Reuse

Borrowing it

Nothing to install: this file belongs to disler/inkwell-agent-sandboxes-and-software-factory. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/disler/inkwell-agent-sandboxes-and-software-factory/main/.claude/commands/install.md
Clone the repo
git clone --depth 1 https://github.com/disler/inkwell-agent-sandboxes-and-software-factory

Made for: Claude Code.

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 install

README.md
[![agentmods](https://agentmods.dev/badge/commands/disler/inkwell-agent-sandboxes-and-software-factory/install/github.svg)](https://agentmods.dev/commands/disler/inkwell-agent-sandboxes-and-software-factory/install)
Your own site
<a href="https://agentmods.dev/commands/disler/inkwell-agent-sandboxes-and-software-factory/install"><img src="https://agentmods.dev/badge/commands/disler/inkwell-agent-sandboxes-and-software-factory/install/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 install

Your own site · 80×15
<a href="https://agentmods.dev/commands/disler/inkwell-agent-sandboxes-and-software-factory/install"><img src="https://agentmods.dev/badge/commands/disler/inkwell-agent-sandboxes-and-software-factory/install.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,548 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 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.00041 $0.01548
Opus 5 $0.00020 $0.00774
Sonnet 5 $0.00008 $0.00310
Haiku 4.5 $0.00004 $0.00155

Measured 11d ago against content hash 42a4350980c4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade C, and why

install scanned grade C with 2 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 11d 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.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

- `bun` — serves Inkwell (:4501) and the visualizer. Auto-install: `curl -fsSL https://bun.sh/install | bash`

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- `bun` — serves Inkwell (:4501) and the visualizer. Auto-install: `curl -fsSL https://bun.sh/install | bash`
.claude/commands/install.md · 95 lines

How it starts

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

Install Factory In A Box

Purpose

Set up this repo for development: the Inkwell app, the Super Simple Software Factory (the ADW engine this repo runs), and the host-only sandbox mount system. This checks the toolchain, installs app dependencies, verifies .env, and runs the sbx preflight, without starting any servers. It is an interactive, agentic process: ask the user when a choice is needed.

Two audiences, and the install serves both:

  • Run the loop (mount throwaway VMs and let agents ship code): needs the full toolchain plus an exe.dev account and an OpenRouter provisioning key.
  • Read and observe (understand the system, run the app and tests locally): needs only git, bun, and optionally uv + just. The exe.dev account and provisioning key are not required.

Gate hard on the read-and-observe core. Treat the mount-only credentials as a warning, not a failure, so an observer is never blocked.

Variables

SOURCE_REPO: the directory this command runs from (repo root) ENV_FILE: .env (copied from .env.sample; gitignored) APP_DIR: apps/inkwell VIZ_DIR: .claude/skills/sssf/apps/visualizer CONFIG_DIR: adws/adw_sssf_config/ (five model rosters)

Instructions

  • Run every check via Bash with command -v — do not assume anything is installed.
  • Show a status line immediately after each check (ok / warn / fail).
  • Auto-install what has a clean CDN installer (bun, just); ask before anything heavier.
  • Never read or print API key values — only confirm a variable is set and non-empty.
  • Never start a server or long-running process. just inkwell test is allowed (it exits); just inkwell run / just obs ui / just sbx mount are NOT part of install.
  • Never run just sbx mount or any lifecycle phase here — mounting spends money and creates a billable VM. That is a deliberate post-install action.

Workflow

Step 1 — Check Prerequisites

Foundational (gate — stop and guide if missing):

Read the full file on GitHub · 95 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. 11d ago First seen · 95 lines · 41 tokens per session scan C 42a4350980c4

Subscribe to this mod's changes

install is a command published in the GitHub repository disler/inkwell-agent-sandboxes-and-software-factory (154 stars, last pushed 1mo ago), licensed MIT. It adds 41 tokens to every session and 1,548 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.