@zcy2nn/agent-forge 1.0.4 → 1.0.6

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/dist/tui.js +14 -0
  2. package/package.json +1 -1
package/dist/tui.js CHANGED
@@ -236,6 +236,20 @@ var plugin = {
236
236
  api.slots.register({
237
237
  order: 900,
238
238
  slots: {
239
+ home_prompt_right(_ctx, _props) {
240
+ return box({
241
+ flexDirection: "row",
242
+ alignItems: "center",
243
+ gap: 1
244
+ }, [
245
+ box({
246
+ paddingLeft: 1,
247
+ paddingRight: 1,
248
+ backgroundColor: api.theme.current.accent
249
+ }, [text({ fg: api.theme.current.background }, ["AGF"])]),
250
+ text({ fg: api.theme.current.textMuted }, [`v${version}`])
251
+ ]);
252
+ },
239
253
  sidebar_content(_ctx, _props) {
240
254
  return renderSidebar(snapshot, version, api.theme.current);
241
255
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zcy2nn/agent-forge",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "Lightweight agent orchestration plugin for OpenCode - a slimmed-down fork of oh-my-opencode",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",