Brandedflow shell
install
source · Clone the upstream repo
git clone https://github.com/JenCW/brandedflow
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/JenCW/brandedflow "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.cursor/skills-cursor/shell" ~/.claude/skills/jencw-brandedflow-shell && rm -rf "$T"
manifest:
.cursor/skills-cursor/shell/SKILL.mdsource content
Run Shell Commands
Use this skill only when the user explicitly invokes
/shell.
Behavior
- Treat all user text after the
invocation as the literal shell command to run./shell - Execute that command immediately with the terminal tool.
- Do not rewrite, explain, or "improve" the command before running it.
- Do not inspect the repository first unless the command itself requires repository context.
- If the user invokes
without any following text, ask them which command to run./shell
Response
- Run the command first.
- Then briefly report the exit status and any important stdout or stderr.