second-opinion
NewConsult GPT-5 Pro for alternative perspectives; supports context injection, web search, and configurable models
Summary
This skill lets you consult GPT-5 Pro for alternative perspectives on your code, architecture, or decisions.
- It supports context injection, web search, and configurable models, making it ideal for getting a second opinion without leaving Claude Code.
Overview
   <img src="assets/claude-icon.png" alt="Claude" height="18" style="margin-left: 6px; vertical-align: middle;">
Claude Code Plugins Marketplace by @alberduris.
This git repository is a Claude Code Marketplace; in other words, a way to distribute a collection of Plugins that augment Claude Code's capabilities via Commands, Skills, Agents, or Hooks.
Quick Understanding
Zero-bullshit definitions without AI slop so we all know what we're talking about.
Marketplace: A git repository with a `.claude-plugin/marketplace.json` file listing available Plugins.
Plugin: A packaged directory containing one or more of the following, plus `.claude-plugin/plugin.json` with metadata (name, version, author):
- •Skill: Directory with
SKILL.md+ supporting files (scripts, templates, docs). - •Command: Single
.mdfile. - •Agent: Isolated autonomous agent launched via Task tool; runs multi-turn conversation with tools (agent ↔ tools), returns final result. (Learn more)
- •Hook: Script triggered by events (file edits, tool calls, user prompt submission).
Invocation: Both Skills and Commands can be invoked 3 ways: manually (
/name), by Claude viaSkilltool, or auto-discovered by context. The only difference is structure. Usedisable-model-invocation: truein frontmatter if you want manual-only.
Quick Start
Standard Installation
Add the Marketplace and install Plugins through Claude Code:
# Add this Marketplace
/plugin marketplace add alberduris/claude-code-marketplace
# Install a Plugin
/plugin install second-opinionOne-Command Installation
Use the Claude Plugins CLI to add the Marketplace and install Plugins in one step:
claude plugins install alberduris/claude-code-marketplace second-opinionAvailable Plugins
| Plugin | Description |
|---|---|
| second-opinion | Consult GPT-5 Pro for alternative perspectives on technical decisions |
| langfuse-traces | Query Langfuse traces for debugging and observability |
| slack-reminders | Schedule future reminders via Slack notifications |
See each plugin's README for setup and usage instructions.
License
MIT
Install & Usage
/plugin marketplace add <org/repo>Add the configuration to /plugin install second-opinion@<marketplace>
/pluginUse Cases
Usage Examples
/second-opinion Review this function for edge cases: [paste code]
Ask GPT-5 Pro to suggest alternative approaches for this database schema design.
/second-opinion --search latest best practices for React state management and compare with my current approach.
Security Audits
Frequently Asked Questions
What is second-opinion?
This skill lets you consult GPT-5 Pro for alternative perspectives on your code, architecture, or decisions. It supports context injection, web search, and configurable models, making it ideal for getting a second opinion without leaving Claude Code.
How to install second-opinion?
To install second-opinion: add a marketplace (/plugin marketplace add <org/repo>), then add the config to /plugin install second-opinion@<marketplace>. Finally, /plugin in Claude Code.
What is second-opinion best for?
second-opinion is a plugin categorized under General. Created by alberduris.
What can I use second-opinion for?
second-opinion is useful for: Get an alternative code review from GPT-5 Pro on a pull request diff.; Compare architectural decisions between two approaches using an external AI model.; Validate a debugging hypothesis by asking GPT-5 Pro to analyze error logs.; Brainstorm alternative solutions for a complex algorithm implementation.; Check for potential security vulnerabilities in your code from a different AI perspective.; Obtain a second opinion on API design choices before finalizing..