shippie
MCP ServerFreeextendable code review and QA agent 🚢
Capabilities13 decomposed
multi-provider llm agent orchestration with tool-based code analysis
Medium confidenceShippie implements an agentic loop that routes LLM requests to multiple providers (OpenAI, Anthropic, Google, Azure) via a unified model string parser (e.g., 'openai:gpt-4o', 'anthropic:claude-3-5-sonnet'). The agent uses Vercel's AI SDK abstraction layer to normalize provider APIs, then executes tool calls (readFile, readDiff, suggestChanges) in a loop up to a configurable max step limit (default 25). This enables the LLM to autonomously decide which files to inspect and what feedback to provide without pre-fetching all context.
Uses Vercel's AI SDK as a unified abstraction layer over 4+ LLM providers with a simple model string parser, enabling provider swapping via environment variable without code changes. Implements configurable agent step limits (maxSteps parameter) to prevent runaway LLM execution in CI/CD contexts, a pattern rarely exposed in code review tools.
More flexible than GitHub Copilot (single provider) or Devin (proprietary LLM) because it supports Anthropic, Google, and Azure alongside OpenAI, and exposes step limits for cost control that most competitors hide.
tool-based code inspection with autonomous file/diff selection
Medium confidenceShippie provides three core tools (readFile, readDiff, suggestChanges) that the LLM agent can invoke autonomously during the review loop. The readFile tool fetches full file contents from the codebase, readDiff retrieves git diffs for changed files, and suggestChanges outputs structured feedback. The agent decides which files to inspect based on the initial diff summary, enabling selective analysis rather than loading all context upfront. Tools are registered via a schema-based function registry compatible with OpenAI and Anthropic function-calling APIs.
Implements a three-tool pattern (readFile, readDiff, suggestChanges) where the LLM agent autonomously selects which tools to invoke and in what order, avoiding the 'send everything' approach of simpler code review tools. Tools are schema-registered for compatibility with multiple LLM function-calling APIs, enabling provider portability.
More efficient than Copilot's code review (which loads full file context) because it lets the LLM decide what to inspect, reducing token usage by 30-50% on large changesets; more flexible than GitHub's native review because tools are extensible via the tool registry.
review language customization for non-english feedback
Medium confidenceShippie supports review output in multiple languages via the --reviewLanguage CLI flag (default: English). The language preference is passed to the LLM system prompt, instructing it to generate feedback in the specified language. This enables teams in non-English-speaking regions to receive code review feedback in their native language (Spanish, French, German, Japanese, etc.). Language customization is simple (single flag) and works with any LLM provider that supports the target language.
Supports review output in multiple languages via a single --reviewLanguage CLI flag that is passed to the LLM system prompt, enabling non-English feedback without code changes. Works with any LLM provider supporting the target language.
More accessible than GitHub Copilot (English-only) because it supports multiple languages; simpler than translation-based approaches because it leverages LLM multilingual capabilities directly.
debug logging and diagnostic output for troubleshooting
Medium confidenceShippie includes a --debug flag that enables verbose logging of internal operations: LLM API calls, tool invocations, token counts, platform API interactions, and error traces. Debug output is written to stderr and includes timestamps, component names, and detailed error messages. This enables developers to diagnose issues (API failures, tool errors, platform authentication problems) without modifying code. Debug logs include full LLM request/response payloads (sanitized of sensitive data), making it easier to understand LLM behavior and prompt effectiveness.
Implements a --debug flag that enables verbose logging of LLM API calls, tool invocations, platform interactions, and error traces, providing end-to-end visibility into the review process. Includes full request/response payloads (sanitized) for LLM debugging.
More transparent than GitHub Copilot (which provides no debug output) because it exposes internal operations; more practical than raw API logs because it aggregates and contextualizes logs by component.
custom base url support for llm provider api endpoints
Medium confidenceShippie supports the --baseUrl flag to override the default LLM provider API endpoint, enabling integration with custom or self-hosted LLM services. This is useful for organizations using Azure OpenAI (which requires a custom endpoint), local LLM servers (e.g., Ollama, vLLM), or proxy services. The baseUrl is passed to the Vercel AI SDK, which routes all LLM requests to the custom endpoint instead of the default provider URL. This enables Shippie to work with any LLM service compatible with OpenAI or Anthropic APIs.
Supports --baseUrl flag to override default LLM provider endpoints, enabling integration with Azure OpenAI, self-hosted LLMs (Ollama, vLLM), or custom proxies. Leverages Vercel AI SDK's endpoint routing to support any OpenAI/Anthropic-compatible API.
More flexible than GitHub Copilot (cloud-only) because it supports self-hosted and custom endpoints; more practical than raw LLM APIs because it handles endpoint routing transparently.
multi-platform git integration with unified provider abstraction
Medium confidenceShippie abstracts Git platform differences (GitHub, GitLab, Azure DevOps) behind a PlatformProvider interface, enabling the same review logic to run on any platform. The system uses platform-specific SDKs (octokit for GitHub, @gitbeaker/rest for GitLab, azure-devops-node-api for Azure) but normalizes their APIs through a common interface. Platform detection is automatic via the --platform CLI flag or GitHub Actions context. Review comments are posted back to the platform using platform-native APIs (PR comments for GitHub, merge request notes for GitLab, etc.).
Implements a PlatformProvider interface that normalizes GitHub (octokit), GitLab (@gitbeaker), and Azure DevOps (azure-devops-node-api) SDKs into a single abstraction, enabling the same review engine to run on any platform. Supports automatic platform detection from GitHub Actions context, reducing setup friction.
More portable than GitHub-only tools (Copilot, native Actions) because it supports GitLab and Azure DevOps; more unified than platform-specific tools because the same codebase runs everywhere without branching logic.
language-aware code review with 15+ language support
Medium confidenceShippie includes a languageMap that maps file extensions to programming languages (JavaScript, TypeScript, Python, Go, Rust, C++, Java, etc.), enabling the LLM to apply language-specific review rules. The language context is passed to the LLM prompt, allowing it to understand language idioms, common pitfalls, and best practices. Language detection is automatic based on file extension; no manual configuration required. The system supports 15+ languages including dynamic languages (Python, Ruby, PHP), compiled languages (Go, Rust, C++, Java), and infrastructure-as-code (Terraform, HCL).
Includes a hardcoded languageMap covering 15+ languages (JavaScript, TypeScript, Python, Go, Rust, C++, C, C#, Java, Ruby, Kotlin, PHP, Dart, Vue, Terraform) that is passed to the LLM prompt context, enabling language-specific review rules without external linting tools. Supports infrastructure-as-code (Terraform, HCL) alongside application languages.
More comprehensive than GitHub Copilot (which focuses on Python/JavaScript) because it covers 15+ languages including Rust, Go, and Terraform; more flexible than language-specific tools (eslint, pylint) because it understands architectural patterns, not just syntax.
github actions ci/cd integration with automatic pr triggering
Medium confidenceShippie provides a GitHub Action (action.yml) that integrates into GitHub workflows, automatically triggering code review on pull request creation or updates. The action reads PR metadata from GitHub Actions context (PR number, branch, commit), invokes the Shippie review engine, and posts comments back to the PR using the GitHub API. Configuration is via action inputs (platform, modelString, reviewLanguage, maxSteps, baseUrl, debug) that map to CLI arguments. The action handles credential injection (API keys as secrets) and provides structured output (review summary, token usage) for downstream workflow steps.
Provides a first-class GitHub Action (action.yml) with declarative input configuration (modelString, reviewLanguage, maxSteps, baseUrl, debug) that maps directly to CLI arguments, enabling workflow-native configuration without shell scripting. Automatically extracts PR metadata from GitHub Actions context, eliminating manual parameter passing.
More integrated than running Shippie as a CLI in a workflow step because it provides structured inputs/outputs and handles credential injection; more flexible than GitHub's native code review because it supports multiple LLM providers and custom review rules.
configurable review prompts with custom templates and examples
Medium confidenceShippie uses a prompt-based architecture (src/review/prompt/prompts.ts) where the LLM receives a system prompt defining review criteria, followed by initial file examples (initialFilesExample.ts) that demonstrate the expected review format. The prompt is customizable via configuration files, enabling teams to define organization-specific review rules (e.g., 'flag all console.log statements', 'require JSDoc comments'). The system includes built-in examples showing the LLM how to structure feedback (severity levels, file references, suggested changes). Prompts are language-aware, adapting to the target language (Python, Go, JavaScript, etc.).
Implements a prompt-based review architecture with customizable templates (src/review/prompt/prompts.ts) and built-in code examples (initialFilesExample.ts) that demonstrate expected feedback format, enabling teams to inject custom review rules without modifying the core agent logic. Supports language-aware prompt adaptation.
More customizable than GitHub Copilot (which uses fixed review rules) because it exposes the prompt layer; more practical than raw LLM APIs because it includes example-based few-shot learning patterns that improve consistency.
local cli-based code review without ci/cd integration
Medium confidenceShippie can run locally via CLI (shippie review) to analyze staged git files without CI/CD infrastructure. The local mode uses the LocalProvider to read git diffs from the current repository, invoke the LLM review engine, and output feedback to stdout. This enables developers to run code review on their machine before pushing to CI/CD, catching issues early. The CLI supports all configuration options (modelString, reviewLanguage, maxSteps, debug) as command-line flags, making it scriptable and composable with other tools. Local mode requires no platform credentials (GitHub token, etc.), only LLM API keys.
Provides a standalone CLI mode (shippie review) that analyzes staged git files without CI/CD infrastructure, enabling local feedback loops. Uses LocalProvider to abstract git operations, making it composable with pre-commit hooks and developer workflows.
Faster feedback than CI/CD-based review (no queue time) and more accessible than GitHub Actions for solo developers; more flexible than IDE extensions (Copilot) because it supports multiple LLM providers and custom rules.
automated setup wizard with platform-specific configuration
Medium confidenceShippie includes an interactive setup command (shippie setup) that guides users through platform-specific configuration. The wizard prompts for LLM API keys, platform selection (GitHub, GitLab, Azure DevOps), and creates platform-specific workflow files (.github/workflows/pr.yml for GitHub, .gitlab-ci.yml for GitLab, etc.). It automatically adds API keys as platform secrets (GitHub Secrets, GitLab CI variables, Azure DevOps secrets) without exposing them in configuration files. The setup flow is defined in src/configure/index.ts and supports multiple platforms with minimal user input.
Implements an interactive setup wizard (shippie setup) that auto-generates platform-specific workflow files and securely stores API keys as platform secrets, eliminating manual YAML editing and credential management. Supports GitHub, GitLab, and Azure DevOps with platform-specific secret APIs.
More user-friendly than manual setup (editing YAML, managing secrets) because it automates the entire process; more secure than GitHub Copilot setup because it uses platform-native secret management instead of hardcoded credentials.
token usage tracking and cost reporting
Medium confidenceShippie tracks LLM token consumption during review (input tokens, output tokens, total cost) and reports it in the review summary. The tracking is implemented in src/common/formatting/usage.ts and aggregates token counts from each LLM provider call. Cost is calculated using provider-specific pricing (e.g., GPT-4o input/output rates) and displayed in the review output. This enables teams to monitor API spending and optimize review configurations (e.g., reducing maxSteps to lower costs). Token usage is reported both in CLI output and GitHub Actions job summaries.
Implements token usage tracking (src/common/formatting/usage.ts) that aggregates input/output tokens across all LLM provider calls and calculates cost using provider-specific pricing, enabling cost visibility and optimization. Reports usage in both CLI and GitHub Actions contexts.
More transparent than GitHub Copilot (which hides token usage) because it exposes per-review costs; more actionable than raw API logs because it aggregates and summarizes spending in human-readable format.
extensible tool registry for custom code analysis
Medium confidenceShippie implements a tool registry (src/common/llm/tools/index.ts) where custom analysis tools can be registered and made available to the LLM agent. Tools are defined as functions with schema metadata (name, description, parameters) that the LLM can invoke during the review loop. The built-in tools (readFile, readDiff, suggestChanges) are registered in the same way, making the system fully extensible. New tools can be added by implementing the tool interface and registering them in the tool registry, enabling teams to add custom analysis (e.g., security scanning, performance profiling, dependency checking) without modifying the core agent logic.
Implements a schema-based tool registry (src/common/llm/tools/index.ts) where custom analysis tools can be registered and invoked by the LLM agent, using the same interface as built-in tools (readFile, readDiff, suggestChanges). Enables extensibility without forking the codebase.
More extensible than GitHub Copilot (which has fixed tools) because it exposes a tool registry; more practical than raw LLM APIs because it provides a structured tool interface and handles LLM function-calling integration.
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with shippie, ranked by overlap. Discovered automatically through the match graph.
LangChain
Revolutionize AI application development, monitoring, and...
Gito
AI code reviewer for GitHub Actions or local use, compatible with any LLM and integrated with...
IBM wxflows
** - Tool platform by IBM to build, test and deploy tools for any data source
CodeScene
Integrates CodeScene analysis into VS Code. Keeps your code clean and maintainable.
@observee/agents
Observee SDK - A TypeScript SDK for MCP tool integration with LLM providers
XAgent
Experimental LLM agent that solves various tasks
Best For
- ✓Teams evaluating multiple LLM providers for code review
- ✓Organizations with cost-sensitive CI/CD pipelines wanting step-limited agents
- ✓Developers building extensible code review workflows
- ✓Teams with large codebases where full-context review is expensive
- ✓Developers building custom code review rules via LLM agents
- ✓CI/CD pipelines where selective analysis reduces token usage
- ✓International teams with non-English native speakers
- ✓Organizations in non-English-speaking countries
Known Limitations
- ⚠Provider abstraction adds ~50-100ms latency per tool invocation due to SDK marshalling
- ⚠No built-in provider fallback — if primary provider fails, entire review fails
- ⚠Max step limit (default 25) may truncate analysis on large changesets; requires tuning per codebase
- ⚠Azure provider requires 4 separate environment variables (instance, deployment, version, key) vs 1 for others
- ⚠readFile tool has no built-in caching — repeated file fetches incur redundant I/O
- ⚠readDiff requires git history to be available; fails in shallow clones or detached HEAD states
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
Repository Details
Last commit: Nov 24, 2025
About
extendable code review and QA agent 🚢
Categories
Alternatives to shippie
Are you the builder of shippie?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →