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
5 changes: 5 additions & 0 deletions .changeset/initial-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"agentcrumbs": minor
---

Initial release. Debug tracing for AI agents with zero overhead when disabled, strip-before-merge workflow, HTTP collector, CLI tools, and @tanstack/intent skills.
10 changes: 8 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Release

on:
workflow_dispatch:
pull_request:
types:
- closed
Expand All @@ -15,8 +16,13 @@ jobs:
release:
if: >
github.repository == 'triggerdotdev/agentcrumbs' &&
github.event.pull_request.merged == true &&
github.event.pull_request.head.ref == 'changeset-release/main'
(
github.event_name == 'workflow_dispatch' ||
(
github.event.pull_request.merged == true &&
github.event.pull_request.head.ref == 'changeset-release/main'
)
)
name: Publish to npm
runs-on: ubuntu-latest
environment: npm-publish
Expand Down