Skip to content

Commit 13f4a48

Browse files
fix: fixed various links and configs
1 parent 7b3de35 commit 13f4a48

3 files changed

Lines changed: 47 additions & 48 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,22 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and
88

99
## 1.1.0 (2026-04-14)
1010

11-
1211
### Features
1312

14-
* add configurable MemPalace session mining ([ab97ce1](https://github.com/DEVtheOPS/opencode-plugin-mempalace/commit/ab97ce1a99632984be644d8094cb8a31f1dc8ab6))
15-
* add MemPalace OpenCode plugin v0.2.0 ([e428133](https://github.com/DEVtheOPS/opencode-plugin-mempalace/commit/e4281336a82c71809dc9103d89e9ae26a4fc2df1))
13+
* Add configurable MemPalace session mining ([ab97ce1](https://github.com/DEVtheOPS/opencode-plugin-mempalace/commit/ab97ce1a99632984be644d8094cb8a31f1dc8ab6))
1614

17-
## [Unreleased]
15+
## 1.0.0 (2026-04-13)
1816

1917
### Features
2018

21-
- Initial release of `@devtheops/opencode-plugin-mempalace`
19+
* Initial release of `@devtheops/opencode-plugin-mempalace`
2220

23-
## [0.2.0] - 2026-04-13
21+
## 0.2.0 (2026-04-13)
2422

2523
### Added
2624

27-
- Initial OpenCode server plugin package for MemPalace
28-
- Automatic `mempalace` Python package installation on plugin startup
29-
- Runtime injection of the MemPalace MCP server, commands, and bundled skill
30-
- GitHub Actions for CI, release-please, npm publishing, and `/opencode` GitHub automation
31-
- Community health files including issue templates, PR template, contributing guide, and security policy
25+
* Initial OpenCode server plugin package for MemPalace
26+
* Automatic `mempalace` Python package installation on plugin startup
27+
* Runtime injection of the MemPalace MCP server, commands, and bundled skill
28+
* GitHub Actions for CI, release-please, npm publishing, and `/opencode` GitHub automation
29+
* Community health files including issue templates, PR template, contributing guide, and security policy

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@
22

33
[![npm version](https://img.shields.io/npm/v/@devtheops/opencode-plugin-mempalace.svg)](https://www.npmjs.com/package/@devtheops/opencode-plugin-mempalace)
44
[![npm downloads](https://img.shields.io/npm/dm/@devtheops/opencode-plugin-mempalace.svg)](https://www.npmjs.com/package/@devtheops/opencode-plugin-mempalace)
5-
[![GitHub stars](https://img.shields.io/github/stars/DEVtheOPS/opencode-mempalace.svg)](https://github.com/DEVtheOPS/opencode-mempalace/stargazers)
6-
[![Build status](https://img.shields.io/github/actions/workflow/status/DEVtheOPS/opencode-mempalace/release-please.yml?branch=main)](https://github.com/DEVtheOPS/opencode-mempalace/actions/workflows/release-please.yml)
7-
[![License](https://img.shields.io/npm/l/@devtheops/opencode-plugin-mempalace.svg)](https://github.com/DEVtheOPS/opencode-mempalace/blob/main/LICENSE)
5+
[![GitHub stars](https://img.shields.io/github/stars/DEVtheOPS/opencode-plugin-mempalace.svg)](https://github.com/DEVtheOPS/opencode-plugin-mempalace/stargazers)
6+
[![Build status](https://img.shields.io/github/actions/workflow/status/DEVtheOPS/opencode-plugin-mempalace/release-please.yml?branch=main)](https://github.com/DEVtheOPS/opencode-plugin-mempalace/actions/workflows/release-please.yml)
7+
[![License](https://img.shields.io/npm/l/@devtheops/opencode-plugin-mempalace.svg)](https://github.com/DEVtheOPS/opencode-plugin-mempalace/blob/main/LICENSE)
88

99
An [OpenCode](https://opencode.ai) server plugin that integrates [MemPalace](https://github.com/MemPalace/mempalace) without vendoring the MemPalace application code.
1010

11-
- [Installation](#installation)
12-
- [Requirements](#requirements)
13-
- [What It Adds](#what-it-adds)
14-
- [Runtime Behavior](#runtime-behavior)
15-
- [Development](#development)
11+
- [opencode-plugin-mempalace](#opencode-plugin-mempalace)
12+
- [Installation](#installation)
13+
- [Requirements](#requirements)
14+
- [What It Adds](#what-it-adds)
15+
- [Runtime Behavior](#runtime-behavior)
16+
- [Development](#development)
1617

1718
The plugin:
1819

package.json

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,27 @@
11
{
2-
"name": "@devtheops/opencode-plugin-mempalace",
3-
"version": "1.1.0",
4-
"description": "MemPalace plugin for OpenCode. Installs the Python package, registers the MCP server, and injects commands and a bundled skill.",
5-
"type": "module",
62
"author": "DEVtheOPS",
7-
"license": "MIT",
8-
"homepage": "https://github.com/DEVtheOPS/opencode-mempalace#readme",
9-
"repository": {
10-
"type": "git",
11-
"url": "https://github.com/DEVtheOPS/opencode-mempalace.git"
12-
},
133
"bugs": {
14-
"url": "https://github.com/DEVtheOPS/opencode-mempalace/issues"
4+
"url": "https://github.com/DEVtheOPS/opencode-plugin-mempalace/issues"
155
},
6+
"dependencies": {
7+
"@opencode-ai/plugin": "^1.2.23",
8+
"@opencode-ai/sdk": "^1.2.23",
9+
"typescript": "^5.9.3"
10+
},
11+
"description": "MemPalace plugin for OpenCode. Installs the Python package, registers the MCP server, and injects commands and a bundled skill.",
12+
"devDependencies": {
13+
"@types/bun": "latest",
14+
"@types/node": "^25.6.0"
15+
},
16+
"exports": {
17+
".": "./src/index.ts",
18+
"./server": "./src/index.ts"
19+
},
20+
"files": [
21+
"src/",
22+
"skills/"
23+
],
24+
"homepage": "https://github.com/DEVtheOPS/opencode-plugin-mempalace#readme",
1625
"keywords": [
1726
"opencode",
1827
"plugin",
@@ -21,33 +30,24 @@
2130
"mcp",
2231
"python"
2332
],
33+
"license": "MIT",
2434
"main": "./src/index.ts",
2535
"module": "./src/index.ts",
26-
"exports": {
27-
".": "./src/index.ts",
28-
"./server": "./src/index.ts"
29-
},
30-
"files": [
31-
"src/",
32-
"skills/"
36+
"name": "@devtheops/opencode-plugin-mempalace",
37+
"oc-plugin": [
38+
"server"
3339
],
3440
"publishConfig": {
3541
"access": "public"
3642
},
37-
"dependencies": {
38-
"@opencode-ai/plugin": "^1.2.23",
39-
"@opencode-ai/sdk": "^1.2.23",
40-
"typescript": "^5.9.3"
41-
},
42-
"devDependencies": {
43-
"@types/bun": "latest",
44-
"@types/node": "^25.6.0"
43+
"repository": {
44+
"type": "git",
45+
"url": "https://github.com/DEVtheOPS/opencode-plugin-mempalace.git"
4546
},
4647
"scripts": {
4748
"test": "bun test",
4849
"typecheck": "tsc --noEmit"
4950
},
50-
"oc-plugin": [
51-
"server"
52-
]
51+
"type": "module",
52+
"version": "1.1.0"
5353
}

0 commit comments

Comments
 (0)