{"id":32696345,"url":"https://github.com/cyperx84/claude-code-skills","last_synced_at":"2025-11-01T19:02:23.248Z","repository":{"id":321687044,"uuid":"1086802306","full_name":"cyperx84/claude-code-skills","owner":"cyperx84","description":"Claude Code skills collection for better decision-making and problem-solving. Features mental models, cognitive frameworks, and structured thinking tools.","archived":false,"fork":false,"pushed_at":"2025-10-30T23:37:31.000Z","size":210,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-31T01:22:21.602Z","etag":null,"topics":["ai-tools","claude-code","cognitive-frameworks","decision-making","mental-models","problem-solving","skills","thinking-tools"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cyperx84.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-30T23:36:32.000Z","updated_at":"2025-10-30T23:37:34.000Z","dependencies_parsed_at":"2025-10-31T01:33:16.677Z","dependency_job_id":null,"html_url":"https://github.com/cyperx84/claude-code-skills","commit_stats":null,"previous_names":["cyperx84/claude-code-skills"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/cyperx84/claude-code-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyperx84%2Fclaude-code-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyperx84%2Fclaude-code-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyperx84%2Fclaude-code-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyperx84%2Fclaude-code-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cyperx84","download_url":"https://codeload.github.com/cyperx84/claude-code-skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyperx84%2Fclaude-code-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":282188968,"owners_count":26628981,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-01T02:00:06.759Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-tools","claude-code","cognitive-frameworks","decision-making","mental-models","problem-solving","skills","thinking-tools"],"created_at":"2025-11-01T19:00:51.365Z","updated_at":"2025-11-01T19:02:23.243Z","avatar_url":"https://github.com/cyperx84.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Claude Code Skills Collection\n\nA curated collection of Claude Code skills designed to enhance your workflow with structured thinking frameworks, cognitive tools, and domain expertise.\n\n## Overview\n\nThis repository contains production-ready Claude Code skills that you can use to augment your development workflow, decision-making, and problem-solving capabilities. Each skill is battle-tested, well-documented, and includes comprehensive examples.\n\n## Available Skills\n\n### 🧠 Mental Models (v1.0.0)\n\nApply Charlie Munger's \"latticework of mental models\" to any problem using 98 cognitive frameworks from multiple disciplines.\n\n**What it does**:\n- **Quick-Apply Mode** (1-2 min): Instantly apply a specific model to your current context\n- **Deep-Analysis Mode** (10-15 min): Comprehensive multi-model analysis with full synthesis\n- **Discovery Mode** (30 sec): Search and browse 98 models by keywords\n- **Interactive Mode** (2-3 min): Guided model selection through Q\u0026A\n\n**Use cases**:\n- Code architecture decisions\n- Product strategy and prioritization\n- Career and personal decisions\n- Team dynamics and management\n- Bias detection and risk assessment\n\n**[→ View Mental Models Documentation](./mental-models/)**\n\n## Quick Start\n\n### Installation\n\nClone this repository:\n```bash\ngit clone https://github.com/cyperx84/claude-code-skills.git\ncd claude-code-skills\n```\n\n### Using a Skill\n\n#### Option 1: Local (Project-Specific)\n\nUse skills directly from the repository when working in this directory. Claude Code will automatically detect skills in `.skill/` directories.\n\n```bash\ncd mental-models\n# Skill is now available in this context\n```\n\n#### Option 2: Global Installation\n\nMake a skill available across all projects by symlinking to your global Claude Code skills directory:\n\n```bash\n# Install mental-models globally\nln -s $(pwd)/mental-models/.skill ~/.claude/skills/mental-models\n\n# Or copy instead of symlink\ncp -r mental-models/.skill ~/.claude/skills/mental-models\n```\n\n### Example Usage\n\n```\n# Mental Models skill\n\"Apply bottlenecks model to our CI/CD pipeline\"\n\n\"/mental-models - Should I accept this job offer?\"\n\n\"What mental models help with scaling systems?\"\n```\n\n## Repository Structure\n\n```\nclaude-code-skills/\n├── README.md                    # This file\n├── LICENSE                      # MIT License\n├── CONTRIBUTING.md              # Contribution guidelines\n├── docs/                        # Cross-skill documentation\n│   ├── use-cases.md            # Real-world applications catalog\n│   ├── skill-template.md       # Template for creating new skills\n│   └── mental-models-guide.md  # Deep dive guide\n├── .github/                     # GitHub templates\n│   ├── ISSUE_TEMPLATE/\n│   └── PULL_REQUEST_TEMPLATE.md\n└── mental-models/               # Mental models skill\n    ├── README.md\n    ├── .skill/                  # Skill definition\n    ├── Mental_Models/           # 98 model files\n    ├── WorkSpace/               # Analysis artifacts\n    └── ...\n```\n\n## Documentation\n\n- **[Use Cases](./docs/use-cases.md)**: 27 real-world examples across domains\n- **[Skill Template](./docs/skill-template.md)**: Guide for creating new skills\n- **[Mental Models Guide](./docs/mental-models-guide.md)**: Comprehensive mental models documentation\n\n## Creating Your Own Skills\n\nWant to create a new skill? We've made it easy:\n\n1. **Read the template**: Check out [docs/skill-template.md](./docs/skill-template.md)\n2. **Create directory structure**: Use the template as guide\n3. **Write SKILL.md**: Define your skill's behavior\n4. **Add examples**: Show real usage patterns\n5. **Document thoroughly**: README with installation and usage\n6. **Test**: Verify all modes work correctly\n7. **Submit PR**: Share with the community!\n\nSee [CONTRIBUTING.md](./CONTRIBUTING.md) for detailed guidelines.\n\n## Features\n\n### Why Use These Skills?\n\n- **Production-Ready**: Battle-tested in real workflows\n- **Well-Documented**: Comprehensive guides and examples\n- **Multiple Modes**: Quick application and deep analysis\n- **Context-Aware**: Works with code, decisions, planning, any workflow\n- **Extensible**: Easy to create new skills using templates\n\n### Design Philosophy\n\n1. **Quick + Deep**: Support both rapid insights and comprehensive analysis\n2. **Discoverable**: Easy to find relevant tools for your problem\n3. **Structured**: Systematic frameworks, not ad-hoc advice\n4. **Evidence-Based**: Grounded in data and real-world examples\n5. **Latticework**: Multiple perspectives reveal deeper insights\n\n## Use Cases\n\nSkills in this collection have been used for:\n\n- **Software Engineering**: Architecture decisions, debugging, code review, system design\n- **Product Management**: Feature prioritization, roadmap planning, competitive analysis\n- **Business Strategy**: Market entry, pricing, resource allocation, risk assessment\n- **Personal Development**: Career decisions, learning strategy, habit formation\n- **Team Management**: Hiring, conflict resolution, performance feedback\n- **Content Creation**: Writing structure, argumentation, technical documentation\n\n[→ See 27 detailed use cases](./docs/use-cases.md)\n\n## Requirements\n\n- **Claude Code**: Latest version recommended\n- **Git**: For cloning and updates\n- **Python 3**: (Optional) For mental-models index regeneration\n\n## Contributing\n\nContributions welcome! We're especially interested in:\n\n- New skills for different domains\n- Additional use cases and examples\n- Improvements to existing skills\n- Bug reports and fixes\n- Documentation enhancements\n\nSee [CONTRIBUTING.md](./CONTRIBUTING.md) for guidelines.\n\n## Roadmap\n\n### Planned Skills\n\n- **Code Review Assistant**: Structured code review with bias detection\n- **Architecture Patterns**: Design pattern recommendations with trade-off analysis\n- **Learning Path Generator**: Personalized learning roadmaps based on goals\n- **Decision Journal**: Track decisions and outcomes over time\n- **Bias Detector**: Real-time cognitive bias identification\n\nWant to help build these? Check out [CONTRIBUTING.md](./CONTRIBUTING.md)!\n\n## License\n\nMIT License - see [LICENSE](./LICENSE) for details.\n\n## Support\n\n- **Issues**: [GitHub Issues](https://github.com/cyperx84/claude-code-skills/issues)\n- **Discussions**: [GitHub Discussions](https://github.com/cyperx84/claude-code-skills/discussions)\n- **Documentation**: [docs/](./docs/)\n\n## Acknowledgments\n\n- **Mental Models**: Inspired by Charlie Munger's latticework approach and Farnam Street's work\n- **Claude Code**: Built for Anthropic's Claude Code tool\n\n## Changelog\n\n### v1.0.0 (2025-10-31)\n- Initial release with Mental Models skill\n- 98 cognitive frameworks across 8 categories\n- 4 operational modes (Quick-Apply, Deep-Analysis, Discovery, Interactive)\n- Comprehensive documentation and 27 use cases\n- Skill creation template and guidelines\n\n---\n\n**Start thinking better today.** Choose a skill above and enhance your workflow.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcyperx84%2Fclaude-code-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcyperx84%2Fclaude-code-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcyperx84%2Fclaude-code-skills/lists"}