6 · Tools & workflowsCowork & Claude tools

Cowork & Claude tools

At a glance

  • Claude Code is the standard AI development tool at Shipsy, replacing Cursor.
  • Cowork sessions pair Claude with a human for real-time collaboration.
  • Shipsy maintains custom skills and plugins (codebase-navigator, agentfleet builder, bi-skill) that extend Claude’s knowledge of Shipsy systems.
  • This page covers setup, the skill library, and a starter prompt kit for CS tasks.

Why this matters

Claude Code is how you’ll navigate the codebase, debug agent issues, draft evals, and explore customer configurations without needing to be a full-stack engineer. Setup takes 15 minutes; the payoff is hours saved per week.

Setup (15 min)

Prerequisites

ToolWhy you need it
GitHub accountOrg access to shipsy repos
Claude Code licenseAsk your manager or IT
GitHub CLI (gh)Authenticates Claude Code with GitHub
DockerRequired for some local dev workflows

Steps

  1. Go to claude.ai/code and sign in.
  2. Connect your GitHub account.
  3. Install Claude Code CLI: follow setup docs.
  4. Clone the repo you want to explore: git clone https://github.com/shipsy/agent-platform.git
  5. Open it: cd agent-platform && claude

The repo ships with a .claude/CLAUDE.md that primes Claude with Shipsy-specific context.

Key skills & plugins

Shipsy maintains custom skills that give Claude deep knowledge of Shipsy systems. Always use the right skill before asking a broad question.

SkillWhat it doesWhen to use
codebase-navigatorKnows where every product area lives across all Shipsy repos”Which repo has the routing engine?”
agentfleetGuides you from a business use case to a complete CreateAgentRequest JSON”Build me an agent for WISMO”
bi-skillKnows BI datamarts, joins, field definitions, common SQL patterns”Show me all delayed orders in Mumbai”
slide-searchFinds and adapts sales decks for customers”Find a deck for a port customer”

Using a skill

> use the codebase-navigator skill to find where COD reconciliation lives
> use the agentfleet skill to build a WISMO agent for a B2C LSP

Starter prompt library for CS

Copy/paste these for common CS tasks:

Understanding a customer’s setup

> Walk me through how [agent name] is configured for [customer].
> What tools does it call, what models does it use, and where does
> it escalate?

Debugging an issue

> A customer says the agent is giving wrong tracking information.
> Where in the code does the agent fetch tracking data? Show me
> the tool call and the response parsing.

Drafting an eval

> Show me the eval format for [agent name]. Then draft 5 new
> eval scenarios covering: happy path, edge case, adversarial
> input, timeout, and language switch.

Exploring a new repo

> I'm new to this repo. Give me a 10-minute tour: where do
> agents live, where do tools live, where does the orchestrator
> live, and what's the single most important file to read first?

Building a dashboard query

> use the bi-skill. I need a dashboard showing all orders with
> 2+ failed delivery attempts in the last 7 days, grouped by
> carrier and city.

Cowork sessions

Cowork mode is a pair-programming setup where Claude and a human work on the same task in real time. Used at Shipsy for:

  • Complex agent feature development
  • Debugging cross-service issues
  • Onboarding new team members to unfamiliar codebases

To start a Cowork session, open Claude Code and invite a colleague via the collaboration feature.

Other useful tools

ToolWhat it’s for
GranolaAI meeting notes. Records and summarizes meetings automatically.
Slack botInternal Slack bot for quick lookups and notifications.
Notion AIDocument search and summarization across internal docs.

Anti-patterns

  • Don’t paste customer data into prompts. Use anonymized samples.
  • Don’t run bash from a Claude session against a production DB. Local sandbox or read-only replica only.
  • Don’t treat Claude’s summaries as source of truth. Always verify against the actual file.

Sources

  • Slack: #claude-code-cowork-codex — SOP and adoption discussions
  • Slack: #software-factory — engineering leadership on Claude Code as standard tool
  • See Querying the repo with Claude Code for a guided walkthrough

Changelog

  • 26 May 2026: Full content from Slack adoption discussions. Setup guide, skill library, and prompt kit added.