Skip to content

Commit 0d75f2d

Browse files
committed
Release v1.1.0
- Inject .env variables into process.env at plugin init (Phase 1) - Add shell-env-usage skill document - Add AGENTS.md, GitHub Actions publish workflow - Move source from plugins/ to src/
1 parent 7dc2a10 commit 0d75f2d

3 files changed

Lines changed: 13 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## 1.1.0
4+
5+
- Inject `.env` variables into `process.env` at plugin init time (Phase 1)
6+
- Downstream plugins can now read `.env` values via `process.env.KEY`
7+
- Eliminates the need for each plugin to implement its own `.env` parsing
8+
- Add `shell-env-usage` skill document
9+
- Add `AGENTS.md` with build commands and code style guidelines
10+
- Add GitHub Actions workflow for automated npm publishing on tag push
11+
- Move source code from `plugins/` to `src/` to avoid opencode-link symlinker collision
12+
- Extract `loadEnvFile()` helper function (DRY)
13+
314
## 1.0.0
415

516
- Initial release

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@techdivision/opencode-plugin-shell-env",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "OpenCode Plugin - Shell environment loader for .env variables",
55
"type": "module",
66
"main": "src/shell-env.ts",

plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"name": "shell-env",
33
"description": "Shell environment loader - loads .env variables into OpenCode shell and MCP processes",
44
"category": "optional",
5-
"version": "1.0.0"
5+
"version": "1.1.0"
66
}

0 commit comments

Comments
 (0)