gitextract_chnom6f9/ ├── .claude-plugin/ │ ├── marketplace.json │ └── plugin.json ├── .gitignore ├── LICENSE ├── README.ko.md ├── README.md └── plugins/ ├── agent-council/ │ ├── .claude-plugin/ │ │ └── plugin.json │ ├── AGENTS.md │ ├── CLAUDE.md │ ├── README.ko.md │ ├── README.md │ ├── SKILL.md │ ├── bin/ │ │ └── install.js │ ├── council.config.yaml │ ├── package.json │ ├── scripts/ │ │ ├── council-job-worker.js │ │ ├── council-job.js │ │ ├── council-job.sh │ │ └── council.sh │ └── skills/ │ └── agent-council/ │ ├── SKILL.md │ ├── references/ │ │ ├── config.md │ │ ├── examples.md │ │ ├── host-ui.md │ │ ├── overview.md │ │ ├── requirements.md │ │ └── safety.md │ └── scripts/ │ ├── council-job-worker.js │ ├── council-job.js │ ├── council-job.sh │ └── council.sh ├── clarify/ │ ├── .claude-plugin/ │ │ └── plugin.json │ └── skills/ │ ├── metamedium/ │ │ ├── SKILL.md │ │ └── references/ │ │ └── alan-kay-quotes.md │ ├── unknown/ │ │ ├── SKILL.md │ │ └── references/ │ │ ├── playbook-template.md │ │ └── question-design.md │ └── vague/ │ └── SKILL.md ├── dev/ │ ├── .claude-plugin/ │ │ └── plugin.json │ ├── CLAUDE.md │ ├── agents/ │ │ ├── codebase-explorer.md │ │ ├── decision-synthesizer.md │ │ ├── docs-researcher.md │ │ └── tradeoff-analyzer.md │ └── skills/ │ ├── dev-scan/ │ │ └── SKILL.md │ └── tech-decision/ │ ├── SKILL.md │ └── references/ │ ├── evaluation-criteria.md │ └── report-template.md ├── doubt/ │ ├── .claude-plugin/ │ │ └── plugin.json │ ├── README.md │ └── hooks/ │ ├── hooks.json │ └── scripts/ │ ├── doubt-detector.sh │ └── doubt-validator.sh ├── fetch-tweet/ │ ├── .claude-plugin/ │ │ └── plugin.json │ ├── README.md │ └── skills/ │ └── fetch-tweet/ │ ├── SKILL.md │ └── scripts/ │ └── fetch_tweet.py ├── gmail/ │ ├── .claude-plugin/ │ │ └── plugin.json │ ├── README.md │ └── skills/ │ └── gmail/ │ ├── .gitignore │ ├── SKILL.md │ ├── accounts.yaml.example │ ├── assets/ │ │ ├── accounts.default.yaml │ │ ├── email-templates.md │ │ └── signatures.md │ ├── pyproject.toml │ ├── references/ │ │ ├── cli-usage.md │ │ ├── search-queries.md │ │ └── setup-guide.md │ └── scripts/ │ ├── core/ │ │ ├── __init__.py │ │ ├── batch_processor.py │ │ ├── cache_manager.py │ │ ├── quota_manager.py │ │ └── retry_handler.py │ ├── gmail_client.py │ ├── list_messages.py │ ├── manage_labels.py │ ├── read_message.py │ ├── send_message.py │ └── setup_auth.py ├── google-calendar/ │ ├── .claude-plugin/ │ │ └── plugin.json │ ├── README.md │ └── skills/ │ └── google-calendar/ │ ├── SKILL.md │ ├── examples/ │ │ ├── parallel-fetch.md │ │ └── quick-query.md │ ├── pyproject.toml │ └── scripts/ │ ├── calendar_client.py │ ├── fetch_events.py │ ├── manage_events.py │ └── setup_auth.py ├── interactive-review/ │ ├── .claude-plugin/ │ │ └── plugin.json │ ├── .mcp.json │ ├── CLAUDE.md │ ├── README.md │ ├── mcp-server/ │ │ ├── requirements.txt │ │ ├── server.py │ │ └── web_ui.py │ └── skills/ │ └── review/ │ └── SKILL.md ├── kakaotalk/ │ ├── .claude-plugin/ │ │ └── plugin.json │ ├── README.md │ ├── scripts/ │ │ ├── kakao_read.py │ │ └── kakao_send.py │ └── skills/ │ └── kakaotalk/ │ └── SKILL.md ├── podcast/ │ ├── .claude-plugin/ │ │ └── plugin.json │ ├── README.md │ └── skills/ │ └── podcast/ │ ├── SKILL.md │ └── scripts/ │ ├── convert_mp4.py │ ├── generate_tts.py │ └── upload_youtube.py ├── say-summary/ │ ├── .claude-plugin/ │ │ └── plugin.json │ ├── README.md │ ├── hooks/ │ │ └── hooks.json │ ├── requirements.txt │ └── scripts/ │ ├── say-summary.py │ └── setup.sh ├── session-wrap/ │ ├── .claude-plugin/ │ │ └── plugin.json │ ├── README.md │ ├── agents/ │ │ ├── automation-scout.md │ │ ├── doc-updater.md │ │ ├── duplicate-checker.md │ │ ├── followup-suggester.md │ │ └── learning-extractor.md │ ├── commands/ │ │ └── wrap.md │ └── skills/ │ ├── history-insight/ │ │ ├── SKILL.md │ │ ├── references/ │ │ │ └── session-file-format.md │ │ └── scripts/ │ │ └── extract-session.sh │ ├── session-analyzer/ │ │ ├── SKILL.md │ │ ├── references/ │ │ │ ├── analysis-patterns.md │ │ │ └── common-issues.md │ │ └── scripts/ │ │ ├── extract-hook-events.sh │ │ ├── extract-subagent-calls.sh │ │ └── find-session-files.sh │ └── session-wrap/ │ ├── SKILL.md │ └── references/ │ └── multi-agent-patterns.md ├── team-assemble/ │ ├── .claude-plugin/ │ │ └── plugin.json │ ├── README.md │ └── skills/ │ └── team-assemble/ │ ├── SKILL.md │ └── references/ │ ├── agents.md │ ├── enable-agent-teams.md │ ├── examples.md │ └── prompt-templates.md └── youtube-digest/ ├── .claude-plugin/ │ └── plugin.json ├── README.md └── skills/ └── youtube-digest/ ├── SKILL.md ├── references/ │ ├── deep-research.md │ └── quiz-patterns.md └── scripts/ ├── extract_metadata.sh └── extract_transcript.sh