Skip to content

Commit 4b76a70

Browse files
committed
🐛 fix(agentmemory): correct default port for AgentMemory from 3111 to 3113
- Bump version to 1.3.1 across package.json, migrations, and index.html - Update CHANGELOG for 1.3.1 patch release
1 parent 90a269f commit 4b76a70

6 files changed

Lines changed: 16 additions & 8 deletions

File tree

.opencode/plugins/agentmemory-capture.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Plugin } from "@opencode-ai/plugin";
22

3-
const API = process.env.AGENTMEMORY_URL || "http://localhost:3111";
3+
const API = process.env.AGENTMEMORY_URL || "http://localhost:3113";
44
const FILE_TOOLS = new Set(["Read", "Write", "Edit", "Glob", "Grep"]);
55
const FILE_KEYS = ["filePath", "file_path", "path", "file", "pattern"];
66
const MAX_STASHED_FILES = 20;

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
---
99

10+
## [1.3.1] - 2026-06-21
11+
12+
### Changed
13+
14+
- `.opencode/plugins/agentmemory-capture.ts`: fix wrong default port for agentmemory
15+
16+
---
17+
1018
## [1.3.0] - 2026-06-20
1119

1220
### Added

bin/migrations/001_initial_setup.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Migration 001: Initial Setup
3-
* Version: 1.3.0
3+
* Version: 1.3.1
44
*
55
* Establishes the migration system foundation:
66
* - Ensures .kit-version file exists in target .opencode/
@@ -20,7 +20,7 @@
2020
* @param {object} opts.path - Node path module
2121
*/
2222
export default {
23-
version: '1.3.0',
23+
version: '1.3.1',
2424
description:
2525
'Initialize migration system — establish .kit-version tracking and validate config structure',
2626

@@ -36,7 +36,7 @@ export default {
3636
// Ensure .kit-version file exists
3737
const versionFile = path.join(opencodeDir, '.kit-version');
3838
if (!fs.existsSync(versionFile)) {
39-
fs.writeFileSync(versionFile, '1.3.0\n', 'utf-8');
39+
fs.writeFileSync(versionFile, '1.3.1\n', 'utf-8');
4040
}
4141

4242
// Validate config has agent and permission fields

bin/migrations/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"001_initial_setup.mjs": {
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "Initialize migration system — establish .kit-version tracking and validate config structure"
55
}
66
}

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2714,7 +2714,7 @@ <h5 class="footer-col-title">Resources</h5>
27142714
delay: 3200,
27152715
},
27162716
{
2717-
text: '<span style="color: var(--success)"> \u2713</span> <span style="color: var(--text-muted)">Agent Kit v1.3.0 installed!</span>',
2717+
text: '<span style="color: var(--success)"> \u2713</span> <span style="color: var(--text-muted)">Agent Kit v1.3.1 installed!</span>',
27182718
delay: 4200,
27192719
},
27202720
];
@@ -2755,7 +2755,7 @@ <h5 class="footer-col-title">Resources</h5>
27552755
} else {
27562756
// Show final state for reduced motion
27572757
termBody.innerHTML =
2758-
'<span class="terminal-preview-prompt">$</span> npx opencode-agent-kit init<br><span style="color: var(--success)"> \u2713</span> <span style="color: var(--text-muted)">Agent Kit v1.3.0 installed!</span>';
2758+
'<span class="terminal-preview-prompt">$</span> npx opencode-agent-kit init<br><span style="color: var(--success)"> \u2713</span> <span style="color: var(--text-muted)">Agent Kit v1.3.1 installed!</span>';
27592759
}
27602760
}
27612761

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "opencode-agent-kit",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "Multi-stack OpenCode agent toolkit — 33+ specialized AI agents, 200+ skills, 46 commands, 8 MCP servers (Nuxt, React, Node.js, Laravel, CI3, Android, Flutter, DevOps, SEO, SonarQube, and more)",
55
"type": "module",
66
"bin": {

0 commit comments

Comments
 (0)