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
16 changes: 0 additions & 16 deletions .changeset/pr-22.md

This file was deleted.

2 changes: 2 additions & 0 deletions pkg/action-kit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @flowlib/action-kit

## 0.0.10

## 0.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkg/action-kit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flowlib/action-kit",
"version": "0.0.9",
"version": "0.0.10",
"description": "Framework-agnostic type kit for defining Flowlib actions (flow nodes + agent tools)",
"keywords": [
"actions",
Expand Down
7 changes: 7 additions & 0 deletions pkg/actions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @flowlib/actions

## 0.0.10

### Patch Changes

- Updated dependencies []:
- @flowlib/action-kit@0.0.10

## 0.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkg/actions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flowlib/actions",
"version": "0.0.9",
"version": "0.0.10",
"description": "Built-in provider actions for Flowlib flows (Gmail, Slack, GitHub, etc.)",
"keywords": [
"actions",
Expand Down
10 changes: 10 additions & 0 deletions pkg/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @flowlib/cli

## 0.0.10

### Patch Changes

- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22))

- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]:
- @flowlib/core@0.0.10
- @flowlib/db@0.0.10

## 0.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkg/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flowlib/cli",
"version": "0.0.9",
"version": "0.0.10",
"description": "CLI for managing Flowlib database schemas, migrations, and project setup",
"keywords": [
"cli",
Expand Down
19 changes: 16 additions & 3 deletions pkg/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @flowlib/core

## 0.0.10

### Patch Changes

- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22))

- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]:
- @flowlib/db@0.0.10
- @flowlib/sdk@0.0.10
- @flowlib/action-kit@0.0.10
- @flowlib/actions@0.0.10
- @flowlib/layouts@0.0.10

## 0.0.9

### Patch Changes
Expand Down Expand Up @@ -38,13 +51,13 @@

```ts
const telemetryPlugin: FlowlibPluginDefinition = {
id: 'agent-telemetry',
id: "agent-telemetry",
backend: {
id: 'agent-telemetry',
id: "agent-telemetry",
hooks: {
afterAgentToolExecute: async (ctx) => {
recordEvent({
metric: 'agent_tool_call',
metric: "agent_tool_call",
tool: ctx.toolName,
ok: ctx.success,
flowRunId: ctx.flowRunId,
Expand Down
2 changes: 1 addition & 1 deletion pkg/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flowlib/core",
"version": "0.0.9",
"version": "0.0.10",
"description": "Framework-agnostic core package for Flowlib workflow execution engine",
"keywords": [
"automation",
Expand Down
9 changes: 9 additions & 0 deletions pkg/db/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @flowlib/db

## 0.0.10

### Patch Changes

- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22))

- Updated dependencies []:
- @flowlib/action-kit@0.0.10

## 0.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkg/db/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flowlib/db",
"version": "0.0.9",
"version": "0.0.10",
"description": "Drizzle schemas + schema-merger + schema-generator for Flowlib core. Lightweight package consumable from any JS runtime (Node, Workers, edge) without pulling in the @flowlib/core executor.",
"keywords": [
"drizzle",
Expand Down
10 changes: 10 additions & 0 deletions pkg/express/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @flowlib/express

## 0.0.10

### Patch Changes

- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22))

- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]:
- @flowlib/core@0.0.10
- @flowlib/http@0.0.10

## 0.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkg/express/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flowlib/express",
"version": "0.0.9",
"version": "0.0.10",
"description": "Express.js integration package for Flowlib Core",
"keywords": [
"api",
Expand Down
7 changes: 7 additions & 0 deletions pkg/flowlib/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# flowlib-cli

## 0.0.10

### Patch Changes

- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]:
- @flowlib/cli@0.0.10

## 0.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkg/flowlib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flowlib-cli",
"version": "0.0.9",
"version": "0.0.10",
"description": "CLI for managing Flowlib workflow projects. Thin wrapper around @flowlib/cli.",
"keywords": [
"automation",
Expand Down
9 changes: 9 additions & 0 deletions pkg/http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @flowlib/http

## 0.0.10

### Patch Changes

- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22))

- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]:
- @flowlib/core@0.0.10

## 0.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkg/http/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flowlib/http",
"version": "0.0.9",
"version": "0.0.10",
"description": "Framework-agnostic HTTP route registry shared by Flowlib's Express, NestJS, and Next.js adapters. Walk `allFirstPartyEndpoints` to build a custom adapter (Hono, Fastify, etc.) without re-implementing route logic.",
"keywords": [
"adapter",
Expand Down
2 changes: 2 additions & 0 deletions pkg/layouts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @flowlib/layouts

## 0.0.10

## 0.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkg/layouts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flowlib/layouts",
"version": "0.0.9",
"version": "0.0.10",
"description": "Shared layout utilities for Flowlib graph positioning",
"keywords": [
"dagre",
Expand Down
10 changes: 10 additions & 0 deletions pkg/nestjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @flowlib/nestjs

## 0.0.10

### Patch Changes

- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]:
- @flowlib/core@0.0.10
- @flowlib/db@0.0.10
- @flowlib/http@0.0.10
- @flowlib/action-kit@0.0.10

## 0.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkg/nestjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flowlib/nestjs",
"version": "0.0.9",
"version": "0.0.10",
"private": false,
"description": "A NestJS module for executing Flowlib workflows with batch processing capabilities",
"keywords": [
Expand Down
8 changes: 8 additions & 0 deletions pkg/nextjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @flowlib/nextjs

## 0.0.10

### Patch Changes

- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]:
- @flowlib/core@0.0.10
- @flowlib/http@0.0.10

## 0.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkg/nextjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flowlib/nextjs",
"version": "0.0.9",
"version": "0.0.10",
"description": "Next.js integration for Flowlib",
"keywords": [
"api",
Expand Down
13 changes: 13 additions & 0 deletions pkg/plugins/agents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @flowlib/agents

## 0.0.10

### Patch Changes

- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22))

- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]:
- @flowlib/core@0.0.10
- @flowlib/db@0.0.10
- @flowlib/ui@0.0.10
- @flowlib/action-kit@0.0.10
- @flowlib/actions@0.0.10

## 0.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkg/plugins/agents/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flowlib/agents",
"version": "0.0.9",
"version": "0.0.10",
"description": "Code-editing AI agents plugin for Flowlib — Claude Code, opencode, raw-LLM providers; Cloudflare Sandbox workspaces; durable-object-backed sessions",
"keywords": [
"agents",
Expand Down
11 changes: 11 additions & 0 deletions pkg/plugins/auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @flowlib/user-auth

## 0.0.10

### Patch Changes

- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22))

- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]:
- @flowlib/core@0.0.10
- @flowlib/db@0.0.10
- @flowlib/ui@0.0.10

## 0.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkg/plugins/auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flowlib/user-auth",
"version": "0.0.9",
"version": "0.0.10",
"description": "Better Auth plugin for Flowlib — adds user authentication, session management, identity resolution, and auth UI components",
"keywords": [
"auth",
Expand Down
8 changes: 8 additions & 0 deletions pkg/plugins/cloudflare-agents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @flowlib/cloudflare-agents

## 0.0.10

### Patch Changes

- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]:
- @flowlib/core@0.0.10
- @flowlib/primitives@0.0.10

## 0.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkg/plugins/cloudflare-agents/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flowlib/cloudflare-agents",
"version": "0.0.9",
"version": "0.0.10",
"description": "Compile Flowlib flows to Cloudflare Agents & Workflows — deploy visual flows as durable, globally-distributed Workers",
"license": "MIT",
"author": "robase <team@flowlib.dev>",
Expand Down
10 changes: 10 additions & 0 deletions pkg/plugins/mcp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @flowlib/mcp

## 0.0.10

### Patch Changes

- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22))

- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]:
- @flowlib/core@0.0.10
- @flowlib/sdk@0.0.10

## 0.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkg/plugins/mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flowlib/mcp",
"version": "0.0.9",
"version": "0.0.10",
"description": "MCP (Model Context Protocol) plugin for Flowlib — exposes flow building, editing, execution, and debugging as MCP tools for Claude Desktop, VS Code Copilot, and other MCP clients",
"keywords": [
"ai-agent",
Expand Down
12 changes: 12 additions & 0 deletions pkg/plugins/rbac/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @flowlib/rbac

## 0.0.10

### Patch Changes

- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22))

- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]:
- @flowlib/core@0.0.10
- @flowlib/db@0.0.10
- @flowlib/ui@0.0.10
- @flowlib/user-auth@0.0.10

## 0.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkg/plugins/rbac/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flowlib/rbac",
"version": "0.0.9",
"version": "0.0.10",
"description": "RBAC plugin for Flowlib — adds role-based access control UI, flow sharing, and permission management. Requires @flowlib/user-auth.",
"homepage": "https://flowlib.dev",
"bugs": {
Expand Down
Loading
Loading