gitextract_y6epgpcg/ ├── .claude-plugin/ │ ├── marketplace.json │ └── plugin.json ├── .codebuddy-plugin/ │ ├── marketplace.json │ └── plugin.json ├── .codex/ │ └── INSTALL.md ├── .github/ │ └── workflows/ │ └── release.yml ├── .gitignore ├── README.ja.md ├── README.md ├── README.zh-CN.md ├── agents/ │ ├── cto-p10.md │ ├── senior-engineer-p7.md │ └── tech-lead-p9.md ├── codebuddy/ │ ├── pua/ │ │ └── SKILL.md │ ├── pua-en/ │ │ └── SKILL.md │ └── pua-ja/ │ └── SKILL.md ├── codex/ │ ├── pua/ │ │ └── SKILL.md │ ├── pua-en/ │ │ └── SKILL.md │ └── pua-ja/ │ └── SKILL.md ├── commands/ │ ├── loop.md │ ├── p10.md │ ├── p7.md │ ├── p9.md │ ├── pro.md │ ├── pua.md │ └── yes.md ├── cursor/ │ └── rules/ │ ├── pua-en.mdc │ ├── pua-ja.mdc │ └── pua.mdc ├── evals/ │ ├── run-trigger-test.sh │ ├── test-behavior.sh │ ├── test-helpers.sh │ └── trigger-prompts/ │ ├── should-not-trigger.txt │ └── should-trigger.txt ├── hooks/ │ ├── hooks.json │ ├── pua-loop-hook.sh │ ├── sanitize-session.sh │ ├── session-restore.sh │ └── stop-feedback.sh ├── kiro/ │ └── steering/ │ ├── pua-en.md │ ├── pua-ja.md │ └── pua.md ├── landing/ │ ├── .gitignore │ ├── README.md │ ├── components.json │ ├── eslint.config.js │ ├── functions/ │ │ └── api/ │ │ ├── _session.ts │ │ ├── auth/ │ │ │ ├── callback.ts │ │ │ ├── github.ts │ │ │ └── logout.ts │ │ ├── feedback.ts │ │ ├── leaderboard.ts │ │ ├── me.ts │ │ └── upload.ts │ ├── index.html │ ├── migrations/ │ │ ├── 0001_init.sql │ │ └── 0002_create_feedback.sql │ ├── package.json │ ├── src/ │ │ ├── App.tsx │ │ ├── i18n.ts │ │ ├── index.css │ │ └── pages/ │ │ └── Contribute.tsx │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── vite.config.ts │ ├── vitest.config.ts │ └── wrangler.toml ├── landing.html ├── plugin.json ├── scripts/ │ └── setup-pua-loop.sh ├── skills/ │ ├── loop/ │ │ └── SKILL.md │ ├── p10/ │ │ └── SKILL.md │ ├── p7/ │ │ └── SKILL.md │ ├── p9/ │ │ └── SKILL.md │ ├── pro/ │ │ └── SKILL.md │ ├── pua/ │ │ ├── SKILL.md │ │ └── references/ │ │ ├── agent-team.md │ │ ├── display-protocol.md │ │ ├── evolution-protocol.md │ │ ├── flavors.md │ │ ├── p10-protocol.md │ │ ├── p7-protocol.md │ │ ├── p9-protocol.md │ │ ├── platform.md │ │ └── survey.md │ ├── pua-en/ │ │ └── SKILL.md │ ├── pua-ja/ │ │ └── SKILL.md │ └── yes/ │ └── SKILL.md └── vscode/ ├── copilot-instructions-en.md ├── copilot-instructions-ja.md ├── copilot-instructions.md ├── instructions/ │ ├── pua-en.instructions.md │ ├── pua-ja.instructions.md │ └── pua.instructions.md └── prompts/ ├── pua-en.prompt.md ├── pua-ja.prompt.md └── pua.prompt.md