Skip to content

Commit 8542dec

Browse files
committed
feat: add openhands repository adapter
1 parent a6d5046 commit 8542dec

15 files changed

Lines changed: 261 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## 0.27.0 - 2026-03-19
4+
5+
- added an `openhands-repo` adapter for OpenHands repository customizations
6+
- added official fixtures and roundtrip coverage for OpenHands scripts, skills, and microagents
7+
8+
## Unreleased
9+
10+
- made local `pytest` collection work reliably with the repository `src/` layout
11+
- added reusable CLI smoke tests for `adapters`, `profiles`, `bundle`, and `verify`
12+
- clarified contributor test commands so editable install is the only required setup step
13+
314
## 0.26.0 - 2026-03-15
415

516
- added in-session workflow history and recent download tracking to the local web UI

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ This project solves that with a portable canonical memory package plus adapter-b
3535
- validate canonical packages before import or publishing
3636
- scaffold new adapter integrations with a generated starter template
3737
- run a local web UI for interactive migration workflows
38+
- migrate OpenHands repository customizations, scripts, skills, and microagents
3839

3940
## Supported formats
4041

@@ -45,6 +46,7 @@ This project solves that with a portable canonical memory package plus adapter-b
4546
- `cursor-rules`
4647
- `claude-project`
4748
- `agents-md`
49+
- `openhands-repo`
4850

4951
## Quick start
5052

fixtures/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,5 @@ Available sample sets:
1616
- `agents-md/`: `AGENTS.md` plus `.agents/notes`
1717
- `cursor-rules/`: `.cursor/rules` instruction bundle
1818
- `claude-project/`: `CLAUDE.md` plus `.claude/memories`
19+
20+
- `openhands-repo/`: OpenHands repository customization sample with scripts, skills, and microagents
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Release Checklist
2+
3+
- bump version
4+
- run tests
5+
- publish release
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Repo Context
2+
3+
This repository ships a local-first memory bridge.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Testing Guide
2+
3+
Run unit tests before exporting bundles.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/usr/bin/env bash
2+
echo "running checks"
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/usr/bin/env bash
2+
echo "installing dependencies"

fixtures/openhands-repo/AGENTS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# OpenHands Instructions
2+
3+
Use small PRs and keep notes current.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "memory-migrate-plugin"
7-
version = "0.26.0"
7+
version = "0.27.0"
88
description = "Open-source toolkit for migrating memories across AI agent systems."
99
readme = "README.md"
1010
requires-python = ">=3.11"

0 commit comments

Comments
 (0)