- Migrated to CortexPrism v0.51.0 plugin API
- Renamed
ToolResult→ToolCallResultto match SDK types - Switched type imports from local
types.tstocortex/pluginsmodule - Updated
peerDependencies.cortexto>=0.51.0 - Standardized UI settings:
default→defaultValue,enum→optionsfor select fields - All code passes
deno fmtanddeno lintAll notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Initial project setup
- Initial release of example-plugin
hellocapability — Greet a personaddcapability — Add two numbersfetchDatacapability — Fetch data from external APIs
- N/A
- N/A
- N/A
- N/A
- N/A
When you make changes, add entries under [Unreleased] following these guidelines:
- Added for new features
- Changed for changes in existing functionality
- Deprecated for soon-to-be removed features
- Removed for now removed features
- Fixed for any bug fixes
- Security for vulnerability fixes
When you release a new version:
- Rename
[Unreleased]to[VERSION] — DATE(e.g.,[1.1.0] — 2026-06-20) - Add a new
[Unreleased]section at the top - Update version in
manifest.json - Commit and tag:
git tag v1.1.0
Example:
## [1.1.0] — 2026-06-20
### Added
- New `multiply` capability
### Fixed
- Timeout handling in `fetchData`
### Security
- Added input validation to prevent injection attacks