Hor1zonZzz
86b5a53e5d
refactor(rules): restructure into common + language-specific directories
...
* refactor(rules): restructure rules into common + language-specific directories
- Split 8 flat rule files into common/, typescript/, python/, golang/
- common/ contains language-agnostic principles (no code examples)
- typescript/ extracts TS/JS specifics (Zod, Playwright, Prettier hooks, etc.)
- python/ adds Python rules (PEP 8, pytest, black/ruff, bandit)
- golang/ adds Go rules (gofmt, table-driven tests, gosec, functional options)
- Replace deprecated ultrathink with extended thinking documentation
- Add README.md with installation guide and new-language template
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
* Fix installation commands for rules
Updated installation instructions to copy all rules to a single directory.
* docs: update README.md to reflect new rules directory structure
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
---------
Co-authored-by: Hor1zonZzz <Hor1zonZzz@users.noreply.github.com >
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com >
2026-02-05 05:58:06 -08:00
Affaan Mustafa
6d440c036d
feat: complete OpenCode plugin support with hooks, tools, and commands
...
Major OpenCode integration overhaul:
- llms.txt: Comprehensive OpenCode documentation for LLMs (642 lines)
- .opencode/plugins/ecc-hooks.ts: All Claude Code hooks translated to OpenCode's plugin system
- .opencode/tools/*.ts: 3 custom tools (run-tests, check-coverage, security-audit)
- .opencode/commands/*.md: All 24 commands in OpenCode format
- .opencode/package.json: npm package structure for opencode-ecc
- .opencode/index.ts: Main plugin entry point
- Delete incorrect LIMITATIONS.md (hooks ARE supported via plugins)
- Rewrite MIGRATION.md with correct hook event mapping
- Update README.md OpenCode section to show full feature parity
OpenCode has 20+ events vs Claude Code's 3 phases:
- PreToolUse → tool.execute.before
- PostToolUse → tool.execute.after
- Stop → session.idle
- SessionStart → session.created
- SessionEnd → session.deleted
- Plus: file.edited, file.watcher.updated, permission.asked, todo.updated
- 12 agents: Full parity
- 24 commands: Full parity (+1 from original 23)
- 16 skills: Full parity
- Hooks: OpenCode has MORE (20+ events vs 3 phases)
- Custom Tools: 3 native OpenCode tools
The OpenCode configuration can now be:
1. Used directly: cd everything-claude-code && opencode
2. Installed via npm: npm install opencode-ecc
2026-02-05 05:14:33 -08:00
Freakk
e7cb442843
feat: add Python/Django support and enhance READMEs ( #139 )
...
## Python Support
- **agents/python-reviewer.md**: Expert Python code review agent with PEP 8 compliance, type hints, security, and performance checks
- **commands/python-review.md**: Slash command for automated Python code review with ruff, mypy, pylint, black, bandit
- **skills/python-patterns/SKILL.md**: Python idioms, type hints, error handling, context managers, decorators, concurrency
- **skills/python-testing/SKILL.md**: pytest configuration, fixtures, parametrization, mocking, async testing, TDD methodology
## Django Support
- **skills/django-patterns/SKILL.md**: Django architecture, DRF patterns, project structure, QuerySets, serializers, ViewSets, service layer, caching
- **skills/django-security/SKILL.md**: Django security best practices, authentication, CSRF, SQL injection, XSS prevention, production settings
- **skills/django-tdd/SKILL.md**: Django testing with pytest-django, Factory Boy, model testing, API testing, integration testing
- **skills/django-verification/SKILL.md**: Pre-deployment verification loop including migrations, tests, security scans, performance checks
## Documentation Enhancements
- **Quick Start**: Added 3-step quick start guide to all READMEs (EN, zh-CN, zh-TW)
- **Beautification**: Added emoji icons for better visual hierarchy across all READMEs
- **.claude-plugin/plugin.json**: Added python-reviewer to agents list
All files follow project conventions with proper frontmatter, markdown formatting, and comprehensive code examples.
Co-authored-by: Freakz3z <freakk@FreakkdeMacBook-Air.local >
Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com >
2026-02-01 04:05:02 -08:00
Affaan Mustafa
c9ef02ba42
docs: add requirements section and hooks field warning
...
- Add minimum Claude Code version requirement (v2.1.0+)
- Document hooks auto-loading behavior to prevent flip-flop cycles
- Add flip-flop history table to PLUGIN_SCHEMA_NOTES.md
- Reference issues #29 , #52 , #103 that were caused by this confusion
- Explain that regression test now prevents reintroduction
This documentation should prevent future confusion about whether to
add/remove the hooks field from plugin.json.
2026-01-29 00:46:05 -08:00
Affaan Mustafa
0c53ad88b4
Revert "docs: update shorthand to shortform terminology"
...
This reverts commit 58a97c8a84 .
2026-01-29 00:11:11 -08:00
Dave Lin
c3430bdc8a
docs: add Traditional Chinese translation
...
Complete Traditional Chinese (zh-TW) translation of documentation
2026-01-28 23:06:29 -08:00
Violet
fbe2e56677
docs: add simplified Chinese README
...
Adds README.zh-CN.md with language switcher in main README
2026-01-28 23:06:26 -08:00
ZERUI CHEN
58a97c8a84
docs: update shorthand to shortform terminology
2026-01-28 23:05:02 -08:00
Affaan Mustafa
8894e1bced
docs: update README with skill-create and instinct commands
2026-01-27 04:01:06 -08:00
m0_56676577
384b255ff8
docs: add note about rules limitation in plugin installation
...
The Claude Code plugin system does not support distributing rules
via plugins. Added a note to Option 1 (Plugin Installation) section
explaining this limitation and providing manual installation steps.
Closes #88
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com >
2026-01-27 13:38:17 +08:00
Claude
75e1e46f3f
feat: add comprehensive Golang language support
...
Add Go-specific agents, skills, and commands for idiomatic Go development:
Agents:
- go-reviewer: Go code review for concurrency, error handling, security
- go-build-resolver: Fix Go build errors with minimal changes
Skills:
- golang-patterns: Idiomatic Go patterns, best practices, conventions
- golang-testing: TDD, table-driven tests, benchmarks, fuzzing
Commands:
- /go-review: Invoke Go code reviewer
- /go-test: Go TDD workflow with coverage
- /go-build: Fix Go build/vet/lint errors
Also updates README.md to document the new Go support.
2026-01-26 08:20:42 +00:00
Affaan Mustafa
5c63fa9006
feat: v1.1.0 release - session ID tracking, async hooks, new skills
...
- Add session ID to session filenames (Issue #62 )
- Add getSessionIdShort() helper for unique per-session tracking
- Add async hooks documentation with example
- Create iterative-retrieval skill for progressive context refinement
- Add continuous-learning-v2 skill with instinct-based learning
- Add ecc.tools ecosystem section to README
- Update skills list in README
All 67 tests passing.
2026-01-25 18:21:27 -08:00
Jeff Scott Ward
5670fcd34f
Fix plugin manifest validation errors ( #75 )
...
Fixes plugin manifest validation errors caused by explicit agents field and incorrect tools format. Fixes #74
2026-01-25 17:38:25 -08:00
zerx-lab
970f8bf884
feat: cross-platform support with Node.js scripts
...
- Rewrite all bash hooks to Node.js for Windows/macOS/Linux compatibility
- Add package manager auto-detection (npm, pnpm, yarn, bun)
- Add scripts/lib/ with cross-platform utilities
- Add /setup-pm command for package manager configuration
- Add comprehensive test suite (62 tests)
Co-authored-by: zerx-lab
2026-01-22 23:08:07 -08:00
Affaan Mustafa
0d438dd042
style: side-by-side guide layout matching profile README
2026-01-22 22:29:06 -08:00
Affaan Mustafa
7f4f622517
feat: add star history chart and minimal badge bar
2026-01-22 22:19:01 -08:00
Affaan Mustafa
5010f82c3e
feat: package as Claude Code plugin with marketplace distribution
...
- Add .claude-plugin/plugin.json manifest for direct installation
- Add .claude-plugin/marketplace.json for marketplace distribution
- Reorganize skills to proper skill-name/SKILL.md format
- Update hooks.json with relative paths for portability
- Add new skills: continuous-learning, strategic-compact, eval-harness, verification-loop
- Add new commands: checkpoint, eval, orchestrate, verify
- Update README with plugin installation instructions
Install via:
/plugin marketplace add affaan-m/everything-claude-code
/plugin install everything-claude-code@everything-claude-code
2026-01-22 04:16:49 -08:00
Affaan Mustafa
4491f15577
Clarify README description of the repository
2026-01-21 12:23:50 -08:00
Affaan Mustafa
e6440d32b8
docs: restructure README to flow shorthand → longform guides together
2026-01-21 12:05:58 -08:00
Affaan Mustafa
fa0928a3d7
Enhance README with update section and resources
...
Added update section with an image and a link to a guide.
2026-01-21 11:40:43 -08:00
Affaan Mustafa
3c1e7d9910
Clarify repository purpose and additional resources
...
Updated README to clarify repository purpose and resources.
2026-01-17 18:14:33 -08:00
Affaan Mustafa
62a80df941
Update README with image and guide link
2026-01-17 18:07:13 -08:00
Affaan Mustafa
6eefb41d61
Update README with guide reading reminder
...
Added a note to read the complete guide before configs.
2026-01-17 18:06:52 -08:00
Affaan Mustafa
d7cf890b58
Fix formatting in README.md for guide link
2026-01-17 18:06:40 -08:00
Affaan Mustafa
e57979c1e9
Update README with image and guide link
...
Added an image to the README and updated guide link.
2026-01-17 18:06:03 -08:00
Affaan Mustafa
45959c326e
Initial release: Complete Claude Code configuration collection
...
Battle-tested configs from 10+ months of daily Claude Code usage.
Won Anthropic x Forum Ventures hackathon building zenith.chat.
Includes:
- 9 specialized agents (planner, architect, tdd-guide, code-reviewer, etc.)
- 9 slash commands (tdd, plan, e2e, code-review, etc.)
- 8 rule files (security, coding-style, testing, git-workflow, etc.)
- 7 skills (coding-standards, backend-patterns, frontend-patterns, etc.)
- Hooks configuration (PreToolUse, PostToolUse, Stop)
- MCP server configurations (15 servers)
- Plugin/marketplace documentation
- Example configs (project CLAUDE.md, user CLAUDE.md, statusline)
Read the full guide: https://x.com/affaanmustafa/status/2012378465664745795
2026-01-17 17:49:33 -08:00