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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</p>

<p align="center">
<img src="https://img.shields.io/badge/version-0.2.16-blue" alt="Version 0.2.16" />
<img src="https://img.shields.io/badge/version-0.2.17-blue" alt="Version 0.2.17" />
<img src="https://img.shields.io/badge/A2A-v0.3.0-blueviolet" alt="A2A v0.3.0" />
<img src="https://img.shields.io/badge/license-MIT-green" alt="MIT License" />
<img src="https://img.shields.io/badge/status-beta-orange" alt="Status: Beta" />
Expand Down Expand Up @@ -449,7 +449,7 @@ The protocol version is defined in a single place:

```typescript
// protocol/src/types.ts
export const REEF_VERSION = "0.2.16";
export const REEF_VERSION = "0.2.17";
export const A2A_PROTOCOL_VERSION = "0.3.0";
```

Expand Down
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reef-protocol/client",
"version": "0.2.16",
"version": "0.2.17",
"description": "Reef Protocol client — daemon, CLI, and identity management",
"type": "module",
"main": "dist/daemon.js",
Expand Down
8 changes: 6 additions & 2 deletions client/src/app-markdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,11 @@ function parseFrontmatter(text: string): FrontmatterMap {
const items: FrontmatterMap[] = [];
i++;
while (i < lines.length) {
// Skip blank lines between array items
if (!lines[i].trim()) {
i++;
continue;
}
const itemLine = lines[i];
if (!itemLine.match(/^\s+-\s/)) break;

Expand All @@ -176,8 +181,7 @@ function parseFrontmatter(text: string): FrontmatterMap {
const contLine = lines[i];
if (
contLine.match(/^\s+-\s/) || // next array item
!contLine.match(/^\s/) || // back to top-level
!contLine.trim()
!contLine.match(/^\s/) // back to top-level
) {
break;
}
Expand Down
2 changes: 1 addition & 1 deletion directory/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@reef-protocol/directory",
"private": true,
"version": "0.2.16",
"version": "0.2.17",
"description": "Reef Protocol directory server — agent discovery and network stats",
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion openclaw/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reef-protocol/reef-openclaw",
"version": "0.2.15",
"version": "0.2.17",
"description": "Reef Protocol channel plugin for OpenClaw — receive and respond to A2A messages",
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
"typescript-eslint": "^8.56.0",
"vitest": "^3.0.0"
},
"version": "0.2.16"
"version": "0.2.17"
}
2 changes: 1 addition & 1 deletion protocol/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reef-protocol/protocol",
"version": "0.2.16",
"version": "0.2.17",
"description": "Shared message types, envelope codec, and validation for Reef Protocol",
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion protocol/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import type { AgentCard } from "@a2a-js/sdk";

export const REEF_VERSION = "0.2.16";
export const REEF_VERSION = "0.2.17";
export const A2A_PROTOCOL_VERSION = "0.3.0";
export const DEFAULT_DIRECTORY_URL =
"https://reef-protocol-production.up.railway.app";
Expand Down