
Bananatape
- 16 installs
- 178 repo stars
- Updated July 14, 2026
- nomadamas/bananatape
Helps with ai & agent building tasks.
About
bananatape is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- bananatape
- AI & Agent Building
- AI-coding skill
Bananatape by the numbers
- 16 all-time installs (skills.sh)
- Ranked #11,068 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/nomadamas/bananatape --skill bananatapeAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 16 |
|---|---|
| repo stars | ★ 178 |
| Last updated | July 14, 2026 |
| Repository | nomadamas/bananatape ↗ |
What it does
Helps with ai & agent building tasks.
Files
BananaTape
BananaTape is a local-first browser editor for AI image generation and editing. Use this skill when an agent needs to run BananaTape for a user, create a project, launch the editor, or perform a smoke test.
Requirements
- Node.js 22+
- BananaTape CLI:
npm install -g bananatapeornpx bananatape ... - A provider setup:
- OpenAI:
OPENAI_API_KEYin the environment - codex: Codex CLI already signed in with
~/.codex/auth.json - Optional project location override:
BANANATAPE_PROJECTS_DIR=/path/to/projects
Do not print, commit, or ask the user to paste secret API keys into files. Do not edit ~/.codex/auth.json; ask the user to sign in with Codex CLI if it is missing.
CLI
bananatape create <name> [--dir <parent>]
bananatape list
bananatape launch <project> [--port <port>] [--no-open] [--rebuild]
bananatape open <project>
bananatape status [project]
bananatape stop <project|--all>
bananatape delete <project> [--delete-files]Notes:
launchandopenare aliases.- Projects are local folders; by default they live under
~/Documents/BananaTape Projects/. - Multiple projects can run at once on different ports.
- Use
--no-openfor agent smoke tests or headless checks. deleteunregisters a project by default;--delete-filesalso removes the project folder.
Basic agent usage
# Install if needed
npm install -g bananatape
# Optional deterministic test location
export BANANATAPE_PROJECTS_DIR="$PWD/.bananatape-projects"
# Configure one provider before launch
export OPENAI_API_KEY="<user-provided-key>"
# or verify Codex auth exists:
# test -f "$HOME/.codex/auth.json"
bananatape create "Agent Smoke Test"
bananatape launch agent-smoke-test --no-open --port 45991
bananatape status agent-smoke-test
# Optional readiness check
curl --fail --silent --show-error http://127.0.0.1:45991/api/projects/current
# Clean up when done
bananatape stop agent-smoke-testFor normal user-facing use, omit --no-open so BananaTape opens in the user's browser.