Skip to content

Releases: karup/opencode-jules

v0.5.9 — Example session in README

29 May 10:30

Choose a tag to compare

Added anonymized example session to README showing a real opencode-jules flow: user prompt → skill activation → jules_list_sources → jules_create → session result.

v0.5.8 — OpenCode REST plugin for Jules

29 May 10:15

Choose a tag to compare

Branding update

  • Renamed to OpenCode REST plugin to emphasize REST API + API key approach
  • Added comparison table vs @google/jules-mcp in README

Key differentiators

  • No MCP server required — just an API key in .env
  • All 9 REST API endpoints as opencode tools
  • Built-in skill (/opencode-jules) with help, setup, and workflow guidance

v0.5.6 — CI: build-only, manual publish

29 May 09:58

Choose a tag to compare

Removed publish-npm job from workflow. Publishing handled manually via npm publish.

v0.5.5 — Fix CI: remove missing npm test script

29 May 09:56

Choose a tag to compare

Removed npm test from the GitHub Actions workflow since no test script is defined in package.json.

v0.5.4 — Fix lockfile sync for CI

29 May 09:54

Choose a tag to compare

Fixed package-lock.json sync issue causing npm ci to fail in GitHub Actions.

v0.5.3 — Complete Jules REST API coverage + help system

29 May 09:52

Choose a tag to compare

What's new in 0.5.x

0.5.3

  • GitHub Actions workflow for npm publish

0.5.2

  • /opencode-jules help, /opencode-jules help setup, /opencode-jules help commands in SKILL.md

0.5.1

  • Updated SKILL.md & README with all 9 tools and skill path workaround

0.5.0

5 new tools — complete coverage of all Jules REST API endpoints:

  • jules_deleteDELETE /sessions/{id}
  • jules_messagePOST /sessions/{id}:sendMessage
  • jules_approvePOST /sessions/{id}:approvePlan
  • jules_activityGET /sessions/{id}/activities/{actId}
  • jules_get_sourceGET /sources/{id}

Fixes to existing tools:

  • jules_create: fix automationMode enum (remove invalid NONE)
  • jules_list: add pageToken support
  • jules_list_sources: add filter, pageToken support
  • jules_status: add pageToken, nextPageToken in output

0.4.1

  • Restore dotenv to load .env from project root at plugin init

0.4.0

  • Switch to tool() helper from @opencode-ai/plugin with Zod args
  • Replace dotenv env loading with shell.env hook
  • Default export matching Plugin type signature