opencode-bonfire 0.9.6 → 0.9.8
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.
- package/README.md +9 -1
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# opencode-bonfire
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="https://raw.githubusercontent.com/vieko/bonfire/main/bonfire.gif" alt="Bonfire" width="256">
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
*A plugin that maintains a living context document—read at session start, updated at session end. Pick up exactly where you left off.*
|
|
4
8
|
|
|
5
9
|
## Installation
|
|
6
10
|
|
|
@@ -71,3 +75,7 @@ Bonfire uses the same `.bonfire/` directory format as the Claude Code version. Y
|
|
|
71
75
|
|
|
72
76
|
- [GitHub](https://github.com/vieko/bonfire)
|
|
73
77
|
- [Blog post](https://vieko.dev/bonfire)
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
Bonfire animation by [Jon Romero Ruiz](https://x.com/jonroru).
|
package/package.json
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-bonfire",
|
|
3
|
-
"version": "0.9.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.9.8",
|
|
4
|
+
"description": "OpenCode forgets everything between sessions. Bonfire remembers.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"opencode-bonfire": "./dist/cli.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
|
-
"copy-files": "rm -rf files && mkdir -p files && cp -r
|
|
10
|
+
"copy-files": "rm -rf files && mkdir -p files && cp -r ../../opencode/agent ../../opencode/command ../../opencode/plugin ../../opencode/skill ../../opencode/tool ../../opencode/opencode.json ../../opencode/package.json files/",
|
|
11
11
|
"build": "bun run copy-files && bun build src/cli.ts --outdir dist --target node",
|
|
12
12
|
"prepublishOnly": "bun run build"
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
15
|
"dist",
|
|
16
|
-
"files"
|
|
16
|
+
"files",
|
|
17
|
+
"README.md"
|
|
17
18
|
],
|
|
18
19
|
"keywords": [
|
|
19
20
|
"opencode",
|