@prevalentware/opencode-goal-plugin 0.1.15 → 0.1.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +25 -2
  2. package/package.json +10 -2
package/README.md CHANGED
@@ -1,8 +1,20 @@
1
1
  # OpenCode Goal Plugin
2
2
 
3
- Codex-style long-running goal mode for OpenCode.
3
+ [![npm version](https://img.shields.io/npm/v/@prevalentware/opencode-goal-plugin.svg)](https://www.npmjs.com/package/@prevalentware/opencode-goal-plugin)
4
+ [![GitHub repository](https://img.shields.io/badge/GitHub-prevalentWare%2Fopencode--goal--plugin-blue?logo=github)](https://github.com/prevalentWare/opencode-goal-plugin)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
4
6
 
5
- This plugin adds:
7
+ OpenCode Goal Plugin adds Codex-style long-running goal mode to OpenCode. It gives AI coding agents a `/goal` slash command, persistent goal state, completion evidence, idle continuation, and a terminal UI goal indicator so an OpenCode session can keep working toward one explicit objective until it is complete, blocked, or cleared.
8
+
9
+ If you are searching for an OpenCode goal plugin, goal mode for OpenCode, or a way to keep an OpenCode AI coding agent focused on a long-running task, this package is the npm plugin for that workflow.
10
+
11
+ Links:
12
+
13
+ - npm package: [`@prevalentware/opencode-goal-plugin`](https://www.npmjs.com/package/@prevalentware/opencode-goal-plugin)
14
+ - GitHub repository: [`prevalentWare/opencode-goal-plugin`](https://github.com/prevalentWare/opencode-goal-plugin)
15
+ - OpenCode plugin command: `opencode plugin @prevalentware/opencode-goal-plugin`
16
+
17
+ The OpenCode Goal Plugin adds:
6
18
 
7
19
  - `/goal <objective>` as an OpenCode command for TUI, desktop, and web.
8
20
  - A sidebar goal indicator with status, elapsed time, and objective.
@@ -12,6 +24,17 @@ This plugin adds:
12
24
  - Optional automatic continuation on `session.idle`.
13
25
  - Compaction context so active goals are preserved when OpenCode summarizes a long session.
14
26
 
27
+ ## Why Use This OpenCode Goal Plugin?
28
+
29
+ Use this plugin when you want OpenCode to behave more like a goal-driven coding agent instead of a one-prompt assistant. A goal stays visible, survives session compaction, can continue automatically when the session becomes idle, and can only be closed with explicit evidence or a concrete blocker.
30
+
31
+ Common use cases:
32
+
33
+ - Keep an OpenCode agent focused during long refactors, migrations, reviews, or test-fixing sessions.
34
+ - Track one explicit objective across TUI, desktop, and web OpenCode surfaces.
35
+ - Require completion evidence before a goal is marked done.
36
+ - Preserve the current goal when OpenCode summarizes or compacts a long conversation.
37
+
15
38
  ## Install
16
39
 
17
40
  Install locally for the current OpenCode project:
package/package.json CHANGED
@@ -1,11 +1,19 @@
1
1
  {
2
2
  "name": "@prevalentware/opencode-goal-plugin",
3
- "version": "0.1.15",
4
- "description": "Codex-style long-running goal mode for OpenCode.",
3
+ "version": "0.1.16",
4
+ "description": "OpenCode goal plugin that adds Codex-style long-running goal mode, /goal commands, persistence, and TUI status for AI coding agents.",
5
5
  "keywords": [
6
6
  "opencode",
7
7
  "opencode-plugin",
8
+ "opencode goal plugin",
9
+ "opencode goal mode",
10
+ "opencode ai",
8
11
  "goal",
12
+ "goal-mode",
13
+ "slash-command",
14
+ "coding-agent",
15
+ "ai-agent",
16
+ "developer-tools",
9
17
  "agent",
10
18
  "tui"
11
19
  ],