install-shipbook

install-shipbook is a skill for Claude Code from ShipBook/shipbook-mcp. It costs 62 tokens per session (2,495 once invoked), scanned A, original, MIT.

An integration workflow for adding Shipbook, an app logging service, to a software project. It detects the project's platform, installs the matching software package, and configures logging.

In plain words
What is it for?
Use it to add Shipbook to iOS, Android, Flutter, React Native, browser, or Node.js projects; configure startup and log levels; connect Crashlytics; and optionally record API calls.
Why use it?
It gathers the platform-specific installation and setup work in one workflow, including connecting existing loggers and Crashlytics when present. It also checks the resulting logs for problems.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the shipbook plugin — 5 skills, 1 MCP server shipped together

Good fit Use it to add Shipbook to iOS, Android, Flutter, React Native, browser, or Node.js projects; configure startup and log levels; connect Crashlytics; and optionally record API calls.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/shipbook/shipbook-mcp/install-shipbook
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 ShipBook/shipbook-mcp --skill install-shipbook
Clone the repo
git clone --depth 1 https://github.com/ShipBook/shipbook-mcp

Made for: Claude Code.

Or install shipbook, the plugin that ships this one along with the rest of its 5 skills, 1 MCP server.

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-shipbook

README.md
[![agentmods](https://agentmods.dev/badge/skills/shipbook/shipbook-mcp/install-shipbook/github.svg)](https://agentmods.dev/skills/shipbook/shipbook-mcp/install-shipbook)
Your own site
<a href="https://agentmods.dev/skills/shipbook/shipbook-mcp/install-shipbook"><img src="https://agentmods.dev/badge/skills/shipbook/shipbook-mcp/install-shipbook/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-shipbook

Your own site · 80×15
<a href="https://agentmods.dev/skills/shipbook/shipbook-mcp/install-shipbook"><img src="https://agentmods.dev/badge/skills/shipbook/shipbook-mcp/install-shipbook.svg" alt="Reviewed on agentmods" width="80" 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,495 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.
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.00062 $0.02495
Opus 5 $0.00031 $0.01247
Sonnet 5 $0.00012 $0.00499
Haiku 4.5 $0.00006 $0.00249

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

Security

Grade A, and why

install-shipbook 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 10d 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.

skills/install-shipbook/SKILL.md · 279 lines

How it starts

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

Install Shipbook

A full integration assistant for adding the Shipbook SDK to a project.

Steps

1. Detect or ask platform

Scan the project to detect the platform:

  • Podfile or .xcodeprojiOS
  • build.gradle or build.gradle.ktsAndroid
  • pubspec.yamlFlutter
  • react-native in package.json dependencies → React Native
  • package.json with browser/web framework (react, vue, angular, svelte) → Browser
  • package.json with node/express/nestjs/fastify → Node.js

If ambiguous, ask the user which platform.

2. Install SDK package

iOS (Swift Package Manager): Add the package dependency https://github.com/ShipBook/ShipBookSDK-iOS.git via Xcode or Package.swift.

Android (Gradle): Add to build.gradle dependencies:

implementation 'io.shipbook:shipbooksdk:1.+'

Flutter:

flutter pub add shipbook_flutter

React Native:

npm install @shipbook/react-native

Browser:

npm install @shipbook/browser

Node.js:

npm install @shipbook/node

3. Get or create app credentials

Call get-account-apps to list the user's apps (returns name, appId, platform, key, integration).

  • If matching apps exist, ask the user which one to use
  • If no apps exist or the user wants a new one, call create-app with a name to create one
  • Use the returned appId and key to auto-populate the initialization code

4. Initialize the SDK

Add the import at the top of the file (with the other imports) and the start() call at the correct initialization point per platform:

iOS — import at top, start() in AppDelegate.application(_:didFinishLaunchingWithOptions:):

// top of file
import ShipBookSDK

// in didFinishLaunchingWithOptions
ShipBook.start(appId:"APP_ID", appKey:"APP_KEY")

Android — import at top, start() in Application.onCreate():

// top of file
import io.shipbook.shipbooksdk.ShipBook;

// in onCreate()
ShipBook.start(this, "APP_ID", "APP_KEY");

Read the full file on GitHub · 279 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. 10d ago First seen · 279 lines · 62 tokens per session scan A 0e164f525c9d

Subscribe to this mod's changes

install-shipbook is a skill published in the GitHub repository ShipBook/shipbook-mcp (2 stars, last pushed 4mo ago), licensed MIT. It adds 62 tokens to every session and 2,495 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.

Related

Other skills, from other repositories

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

systematic-debugging

Use when debugging a failing test, build error, or runtime issue that isn't immediately obvious. Guides a 4-phase root cause analysis instead of random fix attempts.

open-metadata/OpenMetadata · 37 tokens

diagnose

Trace from a reproduced symptom to the source code that causes it. Pin the specific file and approximate line, rate confidence in the cause and clarity of the fix independently, and always propose a concrete fix.

emdash-cms/emdash · 43 tokens

repro-admin

Reproduce an EmDash admin UI bug. Attach a container, start the demo dev server, drive the admin with agent-browser using the dev-bypass session, and capture the reproduction as screenshots plus a replayable transcript.

emdash-cms/emdash · 48 tokens

log-error-digest

Analyze log files to troubleshoot errors, identify peak error periods, and produce error clustering, frequency statistics, and time distribution reports. Supports JSON, syslog, and Nginx formats with automatic detection. Use when a user uploads a .log file and asks to analyze errors, find patterns, debug issues, or…

zebbern/claude-code-guide · 71 tokens

byted-util-volcengine-detect-retry

An orchestration workflow for Volcengine Cloud Detect, a service that checks websites or network endpoints from test locations.

bytedance/agentkit-samples · 101 tokens