Overview
Set up the basic repository structure following the ocdc pattern.
Tasks
File Structure
opencode-ntfy/
├── .github/
│ └── workflows/
│ ├── test.yml
│ └── release.yml
├── plugin/
│ ├── index.js
│ ├── notifier.js
│ ├── callback.js
│ ├── hostname.js
│ └── tokens.js
├── test/
│ └── run_tests.bash
├── install.sh
├── README.md
├── LICENSE
└── CONTRIBUTING.md
Acceptance Criteria
- Repository has all scaffolding files
- CI runs on PRs
- Release workflow triggers on tags
Overview
Set up the basic repository structure following the
ocdcpattern.Tasks
.github/workflows/test.ymlfor CI.github/workflows/release.ymlfor tagged releasesplugin/directory structureinstall.shfor curl-pipe-bash installationFile Structure
Acceptance Criteria