Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.2] - 2026-05-15

### Added

- `examples/showcase/netflix.yaml` and `examples/showcase/spotify.yaml`: two new hand-authored system-design flows joining the showcase set. Both ship inside the `@openhop/server` npm tarball and are seeded on first startup alongside the existing showcase flows.
- Pages playground sidebar: Netflix and Spotify pinned next to the existing showcase entries so visitors land on them directly from `https://naorsabag.github.io/openhop/`.

### Changed

- README "How it works": minor structural cleanup (HTML refactor, blank line after the heading) and a first-person agent-voice rewrite of the Why section. No package-level behavior change — repository docs only.
- `skills/openhop/SKILL.md`: trigger description broadened so the gate fires on architecture / idea / proposed-solution prompts in addition to systems and code. Ships with the CLI tarball via `prepack`.

## [0.3.1] - 2026-05-13

### Added
Expand Down Expand Up @@ -104,7 +116,8 @@ Initial public release.
- GitHub Actions CI: lint, format check, typecheck, build, test, coverage, npm audit, gitleaks, CodeQL.
- Issue and pull request templates; Dependabot configuration.

[Unreleased]: https://github.com/naorsabag/OpenHop/compare/v0.3.1...HEAD
[Unreleased]: https://github.com/naorsabag/OpenHop/compare/v0.3.2...HEAD
[0.3.2]: https://github.com/naorsabag/OpenHop/releases/tag/v0.3.2
[0.3.1]: https://github.com/naorsabag/OpenHop/releases/tag/v0.3.1
[0.3.0]: https://github.com/naorsabag/OpenHop/releases/tag/v0.3.0
[0.2.0]: https://github.com/naorsabag/OpenHop/releases/tag/v0.2.0
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openhop",
"version": "0.3.1",
"version": "0.3.2",
"description": "Animated data-flow diagrams your AI agent can write. CLI.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -46,8 +46,8 @@
"dependencies": {
"@fastify/http-proxy": "^11.4.4",
"@fastify/static": "^9.1.3",
"@openhop/server": "0.3.1",
"@openhop/web": "0.3.1",
"@openhop/server": "0.3.2",
"@openhop/web": "0.3.2",
"commander": "^12.0.0",
"fastify": "^5.0.0",
"yaml": "^2.8.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openhop/server",
"version": "0.3.1",
"version": "0.3.2",
"description": "OpenHop API server. Fastify app for storing and serving data-flow definitions.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openhop/web",
"version": "0.3.1",
"version": "0.3.2",
"description": "OpenHop web UI. Prebuilt static assets — animated data-flow renderer.",
"repository": {
"type": "git",
Expand Down
Loading