VincentHHY

Big Picture — Productivity skill for Claude Code

Productivity community

Answers you can judge and act on without reading code — Claude Code plugins that keep implementation detail below a marked line.

How to install Big Picture

This entry records only its repository, not the path inside it, so there is no exact command to give. Open VincentHHY/big-picture and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Big Picture does

Answers you can judge and act on without reading code — Claude Code plugins that keep implementation detail below a marked line. Off by default, armed one session at a time.

Alternatives in Productivity

  • Epic Decompose — Break an epic into task children without creating task branches 243.5k ★
  • Ccplugins — Claude Code Plugins that actually save time 2.7k ★
  • Chief — CLI that wraps Claude Code in a loop 396 ★

README

Big Picture

Claude Code plugins that keep the code out of the answer — so you can judge it and decide.

[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE) [![Claude Code](https://img.shields.io/badge/Claude%20Code-plugin-8A63D2)](https://claude.com/claude-code) [![Measured](https://img.shields.io/badge/measured-55%20sessions-brightgreen)](evals/)

First plugin: **decision-layer** — off by default, armed one session at a time.

See the difference

SOMEONE ASKED

“The release goes out tonight. The build now fails on the server
but works on my laptop. What should we do?”

  what they pasted in
Exception in thread "main" java.lang.NoSuchMethodError: 'void com.google.common.base.Preconditions.checkArgument(boolean, java.lang.String, java.lang.Object)'
	at org.apache.hadoop.conf.Configuration.set(Configuration.java:1357)
	at com.acme.ingest.SinkFactory.build(SinkFactory.java:88)
	at com.acme.ingest.Main.main(Main.java:41)

$ mvn dependency:tree -Dincludes=com.google.guava
[INFO] com.acme:ingest:jar:7.4.0
[INFO] +- com.acme:acme-storage:jar:3.2.0:compile
[INFO] |  \- com.google.guava:guava:jar:19.0:compile
[INFO] +- org.apache.hadoop:hadoop-common:jar:3.3.6:compile
[INFO] |  \- com.google.guava:guava:jar:27.0-jre:compile  (omitted for conflict with 19.0)
[INFO] \- com.acme:acme-metrics:jar:1.9.4:compile
[INFO]    \- com.google.guava:guava:jar:32.1.3-jre:compile (omitted for conflict with 19.0)
[WARNING] Used undeclared dependencies found: com.google.guava:guava:jar:19.0

**↓   answered twice   ↓**

Without decision-layer With decision-layer

🔎 **Root cause: two versions of Guava are fighting, and the wrong one won.**

Three different things in your project