You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add comprehensive PineScript language support
Add TradingView PineScript integration with:
- Enhanced project detection with version and type classification
- Interactive configuration wizard (/pine-setup)
- Syntax validation command (/pine-validate)
- Base command runner for PineScript commands
- Tool detection and recommendations
- Comprehensive documentation (PINESCRIPT-INTEGRATION.md)
- Example projects (basic indicator, trading strategy)
- Updated README, INTEGRATION-GUIDE, and CHANGELOG
Features implemented:
- PineScript v4/v5/v6 version detection
- Project type classification (indicator/strategy/library)
- Configuration schema with backtesting and alert options
- Validation with auto-fix suggestions
- Command pattern following established Python integration
Target audience: Experienced TradingView developers
Documentation: Separate PINESCRIPT-INTEGRATION.md with examples
Examples: Both simple and complex trading strategies
@@ -19,24 +28,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
19
28
- npm package configuration
20
29
21
30
### Changed
31
+
22
32
- All `~/.claude/` paths → `~/.opencode/`
23
33
- All `CLAUDE_*` environment variables → `OPENCODE_*`
24
34
- Plugin configuration updated for opencode compatibility
25
35
- Enhanced cross-platform compatibility
26
36
- Improved documentation and examples
27
37
28
38
### Fixed
39
+
29
40
- Fixed date handling in test suite
30
41
- Improved error handling in hook scripts
31
42
- Enhanced file path handling for Windows compatibility
32
43
33
44
### Removed
45
+
34
46
- Claude Code specific configurations
35
47
- Deprecated file references
36
48
37
49
## [1.0.0] - 2026-01-25
38
50
39
51
### Major Changes
52
+
40
53
- Initial release of everything-opencode
41
54
- Complete conversion from everything-claude-code repository
42
55
- Full compatibility with opencode AI coding agent
@@ -51,6 +64,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
51
64
- Detailed documentation
52
65
53
66
### Added
67
+
54
68
-**New optimization skills**:
55
69
1. LSP integration optimizations
56
70
2. Multi-provider model configurations
@@ -63,40 +77,46 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
63
77
-**npm package**: Ready for distribution via npm
64
78
65
79
### Changed
80
+
66
81
-**Path updates**: All references updated from Claude Code to opencode
67
82
-**Environment variables**: Complete migration to opencode naming convention
68
83
-**Configuration files**: Updated for opencode plugin system compatibility
69
84
-**Documentation**: Enhanced README, CONTRIBUTING, and AGENTS.md files
70
85
-**Test suite**: Expanded and improved for better coverage
71
86
72
87
### Technical Details
88
+
73
89
-**Platform support**: Windows, macOS, Linux
74
90
-**Node.js version**: >=14.0.0
75
91
-**Test coverage**: 62 comprehensive tests
76
92
-**Code quality**: Follows opencode best practices
77
93
-**Performance**: Optimized for opencode integration
78
94
79
95
### Migration Notes
96
+
80
97
- Users migrating from everything-claude-code should follow the MIGRATION.md guide
81
98
- All original functionality preserved and enhanced
82
99
- New opencode-specific features added
83
100
- Backward compatibility maintained where possible
84
101
85
102
### Known Issues
103
+
86
104
- None reported in initial release
87
105
88
106
### Security
107
+
89
108
- No known security vulnerabilities
90
109
- Follows security best practices for AI coding agents
91
110
- Environment variable handling improved
92
111
- File system operations secured
93
112
94
113
### Performance
114
+
95
115
- Optimized for fast execution with opencode
96
116
- Efficient memory usage
97
117
- Minimal overhead for hook execution
98
118
- Fast test execution times
99
119
100
120
---
101
121
102
-
**Note**: This is the initial release of everything-opencode. Future releases will include additional features, improvements, and bug fixes based on community feedback and opencode evolution.
122
+
**Note**: This is the initial release of everything-opencode. Future releases will include additional features, improvements, and bug fixes based on community feedback and opencode evolution.
0 commit comments