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
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
"ignore": ["agentcrumbs-docs"]
}
3 changes: 1 addition & 2 deletions .github/workflows/changesets-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ on:
- main
paths:
- ".changeset/**"
- "src/**"
- "package.json"
- "packages/**"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ jobs:

- name: Create git tags
run: |
VERSION=$(node -p "require('./package.json').version")
VERSION=$(node -p "require('./packages/agentcrumbs/package.json').version")
git tag "v${VERSION}"
git push origin "v${VERSION}"
1 change: 1 addition & 0 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
},
"devDependencies": {
"@types/mdx": "^2.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"typescript": "^5.7.0"
Expand Down
73 changes: 8 additions & 65 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,71 +1,14 @@
{
"name": "agentcrumbs",
"version": "0.1.0",
"description": "Debug tracing for agents. Drop crumbs, follow the trail.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./test": {
"import": "./dist/sinks/memory.js",
"types": "./dist/sinks/memory.d.ts"
}
},
"bin": {
"agentcrumbs": "./dist/cli/index.js",
"intent": "./bin/intent.js"
},
"files": [
"dist",
"skills",
"bin",
"!skills/_artifacts"
],
"repository": {
"type": "git",
"url": "https://github.com/triggerdotdev/agentcrumbs.git"
},
"homepage": "https://agentcrumbs.dev",
"bugs": {
"url": "https://github.com/triggerdotdev/agentcrumbs/issues"
},
"intent": {
"version": 1,
"repo": "triggerdotdev/agentcrumbs",
"docs": "https://docs.agentcrumbs.dev"
},
"private": true,
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"typecheck": "tsc --noEmit",
"build": "pnpm -F agentcrumbs build",
"test": "pnpm -F agentcrumbs test",
"typecheck": "pnpm -F agentcrumbs typecheck",
"changeset": "changeset",
"docs:dev": "pnpm -F agentcrumbs-docs dev",
"docs:build": "pnpm -F agentcrumbs-docs build",
"changeset": "changeset"
"docs:build": "pnpm -F agentcrumbs-docs build"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@types/node": "^25.3.3",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"keywords": [
"debug",
"tracing",
"agents",
"ai",
"logging",
"observability",
"claude",
"cursor",
"copilot"
]
"@changesets/cli": "^2.27.0"
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
68 changes: 68 additions & 0 deletions packages/agentcrumbs/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{
"name": "agentcrumbs",
"version": "0.1.0",
"description": "Debug tracing for agents. Drop crumbs, follow the trail.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./test": {
"import": "./dist/sinks/memory.js",
"types": "./dist/sinks/memory.d.ts"
}
},
"bin": {
"agentcrumbs": "./dist/cli/index.js",
"intent": "./bin/intent.js"
},
"files": [
"dist",
"skills",
"bin",
"!skills/_artifacts"
],
"repository": {
"type": "git",
"url": "https://github.com/triggerdotdev/agentcrumbs.git",
"directory": "packages/agentcrumbs"
},
"homepage": "https://agentcrumbs.dev",
"bugs": {
"url": "https://github.com/triggerdotdev/agentcrumbs/issues"
},
"intent": {
"version": 1,
"repo": "triggerdotdev/agentcrumbs",
"docs": "https://docs.agentcrumbs.dev"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^25.3.3",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"keywords": [
"debug",
"tracing",
"agents",
"ai",
"logging",
"observability",
"claude",
"cursor",
"copilot"
]
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
57 changes: 45 additions & 12 deletions pnpm-lock.yaml

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

1 change: 1 addition & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
packages:
- "packages/*"
- "docs"