Merge pull request #697 from transitive-bullshit/chore/build-simplifying

Build + package improvements
pull/699/head
Travis Fischer 2025-03-18 21:48:30 +08:00 zatwierdzone przez GitHub
commit d8ef6a79d9
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
109 zmienionych plików z 1559 dodań i 5326 usunięć

27
.github/workflows/release.yml vendored 100644
Wyświetl plik

@ -0,0 +1,27 @@
name: Release
on:
push:
branches:
- main
tags:
- 'v*'
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm
- run: pnpm dlx changelogithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Wyświetl plik

@ -1 +0,0 @@
npm run precommit

Wyświetl plik

@ -10,10 +10,10 @@
"dependencies": {
"@agentic/ai-sdk": "workspace:*",
"@agentic/weather": "workspace:*",
"@ai-sdk/openai": "^1.2.5",
"ai": "^4.1.61",
"openai": "^4.87.3",
"zod": "^3.24.2"
"@ai-sdk/openai": "catalog:",
"ai": "catalog:",
"openai": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -15,8 +15,8 @@
"@agentic/serper": "workspace:*",
"@agentic/stdlib": "workspace:*",
"@agentic/weather": "workspace:*",
"@dexaai/dexter": "^4.1.1",
"zod": "^3.24.2"
"@dexaai/dexter": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -10,9 +10,9 @@
"dependencies": {
"@agentic/genkit": "workspace:*",
"@agentic/stdlib": "workspace:*",
"genkit": "^1.0.4",
"genkitx-openai": "^0.16.0",
"zod": "^3.24.2"
"genkit": "catalog:",
"genkitx-openai": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -10,10 +10,10 @@
"dependencies": {
"@agentic/langchain": "workspace:*",
"@agentic/stdlib": "workspace:*",
"@langchain/core": "^0.3.13",
"@langchain/openai": "0.4.4",
"langchain": "^0.3.3",
"zod": "^3.24.2"
"@langchain/core": "catalog:",
"@langchain/openai": "catalog:",
"langchain": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -11,8 +11,8 @@
"@agentic/core": "workspace:*",
"@agentic/llamaindex": "workspace:*",
"@agentic/stdlib": "workspace:*",
"llamaindex": "^0.9.2",
"zod": "^3.24.2"
"llamaindex": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -10,9 +10,9 @@
"dependencies": {
"@agentic/mastra": "workspace:*",
"@agentic/weather": "workspace:*",
"@ai-sdk/openai": "^1.2.5",
"@mastra/core": "^0.6.0",
"zod": "^3.24.2"
"@ai-sdk/openai": "catalog:",
"@mastra/core": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -10,8 +10,8 @@
"dependencies": {
"@agentic/core": "workspace:*",
"@agentic/stdlib": "workspace:*",
"openai": "^4.87.3",
"zod": "^3.24.2"
"openai": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -10,8 +10,8 @@
"dependencies": {
"@agentic/core": "workspace:*",
"@agentic/stdlib": "workspace:*",
"restore-cursor": "^5.1.0",
"zod": "^3.24.2"
"restore-cursor": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -7,7 +7,7 @@
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic.git"
},
"packageManager": "pnpm@10.6.3",
"packageManager": "pnpm@10.6.4",
"engines": {
"node": ">=18"
},
@ -17,47 +17,47 @@
"dev": "turbo dev --concurrency 50 --continue",
"docs": "cd docs && npx mintlify dev",
"clean": "turbo clean",
"fix": "run-s fix:*",
"fix:format": "prettier --write \"**/*.{js,ts,tsx}\"",
"test": "turbo test",
"test:format": "prettier --check \"**/*.{js,ts,tsx}\"",
"test:lint": "turbo test:lint",
"test:typecheck": "turbo test:typecheck",
"test:unit": "turbo test:unit",
"changeset": "changeset",
"release": "run-s release:*",
"release:build": "run-s build",
"release:changeset": "changeset",
"release:version": "changeset version",
"release:publish": "changeset publish",
"release": "bumpp && pnpm publish",
"pretest": "run-s build",
"prerelease": "run-s build",
"precommit": "lint-staged",
"preinstall": "npx only-allow pnpm",
"prepare": "husky"
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@fisch0920/eslint-config": "^1.4.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^22.13.10",
"bumpp": "^10.1.0",
"del-cli": "^6.0.0",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"npm-run-all2": "^7.0.2",
"only-allow": "^1.2.1",
"prettier": "^3.5.3",
"simple-git-hooks": "^2.11.1",
"syncpack": "14.0.0-alpha.10",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"turbo": "^2.4.4",
"typescript": "^5.8.2",
"vitest": "3.0.8",
"zod": "^3.24.2",
"vitest": "3.0.9",
"zod": "catalog:",
"zoominfo-api-auth-client": "^1.0.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"*": [
"prettier --ignore-unknown --write",
"eslint --fix"
]

Wyświetl plik

@ -1,93 +0,0 @@
# @agentic/ai-sdk
## 7.3.6
### Patch Changes
- Update readmes
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/ai-sdk",
"version": "7.3.6",
"version": "7.4.7",
"description": "Agentic adapter for the Vercel AI SDK.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -35,11 +35,11 @@
"@agentic/core": "workspace:*"
},
"peerDependencies": {
"ai": "^4.1.42"
"ai": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*",
"ai": "^4.1.61"
"ai": "catalog:"
},
"publishConfig": {
"access": "public"

Wyświetl plik

@ -1,31 +0,0 @@
# @agentic/apollo
## 7.4.3
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.4.2
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.4.1
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.4.0
### Minor Changes
- Add ZoomInfo, Apollo, LeadMagic, and RocketReach

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/apollo",
"version": "7.4.3",
"version": "7.4.7",
"description": "Agentic SDK for Apollo.io.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -33,11 +33,11 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5",
"p-throttle": "^6.2.0"
"ky": "catalog:",
"p-throttle": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/bing
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/bing",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for Bing search.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,10 +32,10 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5"
"ky": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/calculator
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/calculator",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic calculator tool wrapping mathjs.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,10 +32,10 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"mathjs": "^13.0.3"
"mathjs": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/clearbit
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/clearbit",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for Clearbit.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,11 +32,11 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5",
"p-throttle": "^6.2.0"
"ky": "catalog:",
"p-throttle": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,57 +0,0 @@
# @agentic/core
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
## 7.3.3
### Patch Changes
- Minor
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
## 7.3.1
### Patch Changes
- Add readmes to all packages.
## 7.3.0
### Minor Changes
- Update all deps
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/core",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic AI utils which work with any LLM and TypeScript AI SDK.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,22 +32,21 @@
"test:unit": "vitest run"
},
"dependencies": {
"dedent": "^1.5.3",
"delay": "^6.0.0",
"jsonrepair": "^3.9.0",
"ky": "^1.7.5",
"openai-zod-to-json-schema": "^1.0.3",
"p-map": "^7.0.2",
"p-throttle": "^6.2.0",
"type-fest": "^4.35.0",
"zod-validation-error": "^3.4.0"
"dedent": "catalog:",
"delay": "catalog:",
"jsonrepair": "catalog:",
"ky": "catalog:",
"openai-zod-to-json-schema": "catalog:",
"p-throttle": "catalog:",
"type-fest": "catalog:",
"zod-validation-error": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*",
"openai-fetch": "^3.3.1"
"openai-fetch": "catalog:"
},
"keywords": [
"agentic",

Wyświetl plik

@ -1,3 +1,5 @@
// testing utils
import defaultKy, {
type AfterResponseHook,
type BeforeRequestHook,

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/dexa
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/dexa",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for Dexa's API (currently closed beta).",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,11 +32,11 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5",
"p-throttle": "^6.2.0"
"ky": "catalog:",
"p-throttle": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,93 +0,0 @@
# @agentic/dexter
## 7.3.6
### Patch Changes
- Update readmes
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/dexter",
"version": "7.3.6",
"version": "7.4.7",
"description": "Agentic adapter for the Dexter AI SDK by Dexa.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -35,11 +35,11 @@
"@agentic/core": "workspace:*"
},
"peerDependencies": {
"@dexaai/dexter": "^4.1.1"
"@dexaai/dexter": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*",
"@dexaai/dexter": "^4.1.1"
"@dexaai/dexter": "catalog:"
},
"publishConfig": {
"access": "public"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/diffbot
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/diffbot",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for Diffbot.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,11 +32,11 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5",
"p-throttle": "^6.2.0"
"ky": "catalog:",
"p-throttle": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/e2b
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/e2b",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for E2B's hosted code interpreter.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -34,12 +34,12 @@
"@agentic/core": "workspace:*"
},
"peerDependencies": {
"@e2b/code-interpreter": "^1.0.2",
"zod": "^3.24.2"
"@e2b/code-interpreter": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*",
"@e2b/code-interpreter": "^1.0.2"
"@e2b/code-interpreter": "catalog:"
},
"publishConfig": {
"access": "public"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/exa
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/exa",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for the Exa search engine.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,10 +32,10 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5"
"ky": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/firecrawl
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/firecrawl",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for Firecrawl.",
"authors": [
"Travis Fischer <travis@transitivebullsh.it>",
@ -11,15 +11,23 @@
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic.git"
},
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"type": "module",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist/**"
"dist"
],
"scripts": {
"build": "tsup",
"build": "tsup --config ../../tsup.config.ts",
"dev": "tsup --config ../../tsup.config.ts --watch",
"clean": "del dist",
"test": "run-s test:*",
"test:lint": "eslint .",
@ -27,17 +35,14 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5",
"p-throttle": "^6.2.0"
"ky": "catalog:",
"p-throttle": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*",
"@types/node": "^20.11.16",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
"@agentic/tsconfig": "workspace:*"
},
"publishConfig": {
"access": "public"

Wyświetl plik

@ -1,6 +1,6 @@
import { z } from 'zod'
import { FirecrawlClient } from './dist/index.mjs'
import { FirecrawlClient } from './firecrawl-client'
// Initialize the client with the API key
const apiKey = 'FIRECRAWL-API-KEY'
@ -26,7 +26,8 @@ async function testUrlScraping() {
async function testSearch() {
console.log('\n🔍 Testing search...')
try {
const result = await firecrawl.search('artificial intelligence news', {
const result = await firecrawl.search({
query: 'artificial intelligence news',
limit: 5,
lang: 'en',
country: 'us'
@ -45,7 +46,8 @@ async function testSearch() {
async function testCrawlUrl() {
console.log('\n🔍 Testing URL crawling...')
try {
const result = await firecrawl.crawlUrl('https://example.com', {
const result = await firecrawl.crawlUrl({
url: 'https://example.com',
maxDepth: 2,
limit: 5
})

Wyświetl plik

@ -1,13 +1 @@
export type {
ErrorResponse,
ExtractParams,
ExtractResponse,
ExtractStatusResponse,
FirecrawlClientConfig,
GenerateLLMsTextParams,
GenerateLLMsTextResponse,
GenerateLLMsTextStatusResponse,
ScrapeParams,
ScrapeResponse
} from './firecrawl-client.js'
export { FirecrawlClient } from './firecrawl-client.js'
export * from './firecrawl-client'

Wyświetl plik

@ -1,93 +0,0 @@
# @agentic/genkit
## 7.3.6
### Patch Changes
- Update readmes
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/genkit",
"version": "7.3.6",
"version": "7.4.7",
"description": "Agentic adapter for the Firebase Genkit AI SDK.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -35,11 +35,11 @@
"@agentic/core": "workspace:*"
},
"peerDependencies": {
"genkit": "^1.0.4"
"genkit": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*",
"genkit": "^1.0.4"
"genkit": "catalog:"
},
"publishConfig": {
"access": "public"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/github
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/github",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for GitHub.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,12 +32,12 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5",
"octokit": "^4.0.2",
"p-throttle": "^6.2.0"
"ky": "catalog:",
"octokit": "catalog:",
"p-throttle": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,29 +0,0 @@
# @agentic/gravatar
## 7.4.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.4.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.4.3
### Patch Changes
- Fix gravatar types
## 7.4.2
### Patch Changes
- Add gravatar; minor type fixes

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/gravatar",
"version": "7.4.5",
"version": "7.4.7",
"description": "Agentic SDK for Gravatar.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -33,11 +33,11 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5",
"p-throttle": "^6.2.0"
"ky": "catalog:",
"p-throttle": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/hacker-news
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/hacker-news",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for Hacker News.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,10 +32,10 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5"
"ky": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/hunter
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/hunter",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for hunter.io email lookup.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,10 +32,10 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5"
"ky": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,52 +0,0 @@
# @agentic/jigsawstack
## 2.0.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 2.0.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 2.0.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 2.0.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 2.0.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 2.0.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/jigsawstack",
"version": "2.0.5",
"version": "7.4.7",
"description": "Agentic adapter for the Jigsawstack AI SDK.",
"author": "Narcisse Egonu",
"license": "MIT",
@ -37,14 +37,14 @@
"devDependencies": {
"@agentic/core": "workspace:*",
"@agentic/tsconfig": "workspace:*",
"@ai-sdk/openai": "^1.2.5",
"ai": "^4.1.61"
"@ai-sdk/openai": "catalog:",
"ai": "catalog:"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"ky": "^1.7.5",
"p-throttle": "^6.2.0"
"ky": "catalog:",
"p-throttle": "catalog:"
}
}

Wyświetl plik

@ -1,99 +0,0 @@
# @agentic/jina
## 7.3.7
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.6
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.5
### Patch Changes
- Add gravatar; minor type fixes
## 7.3.4
### Patch Changes
- Fix increase default JinaClient timeoutMs to 60s
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/jina",
"version": "7.3.7",
"version": "7.4.7",
"description": "Agentic SDK for Jina AI.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,11 +32,11 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5",
"p-throttle": "^6.2.0"
"ky": "catalog:",
"p-throttle": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,93 +0,0 @@
# @agentic/langchain
## 7.3.6
### Patch Changes
- Update readmes
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/langchain",
"version": "7.3.6",
"version": "7.4.7",
"description": "Agentic adapter for the LangChain AI SDK.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -35,11 +35,11 @@
"@agentic/core": "workspace:*"
},
"peerDependencies": {
"@langchain/core": "^0.3.13"
"@langchain/core": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*",
"@langchain/core": "^0.3.13"
"@langchain/core": "catalog:"
},
"publishConfig": {
"access": "public"

Wyświetl plik

@ -1,31 +0,0 @@
# @agentic/leadmagic
## 7.4.3
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.4.2
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.4.1
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.4.0
### Minor Changes
- Add ZoomInfo, Apollo, LeadMagic, and RocketReach

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/leadmagic",
"version": "7.4.3",
"version": "7.4.7",
"description": "Agentic SDK for LeadMagic.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -33,11 +33,11 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5",
"p-throttle": "^6.2.0"
"ky": "catalog:",
"p-throttle": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,93 +0,0 @@
# @agentic/llamaindex
## 7.3.6
### Patch Changes
- Update readmes
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/llamaindex",
"version": "7.3.6",
"version": "7.4.7",
"description": "Agentic adapter for the LlamaIndex AI SDK.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -35,11 +35,11 @@
"@agentic/core": "workspace:*"
},
"peerDependencies": {
"llamaindex": "^0.9.2"
"llamaindex": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*",
"llamaindex": "^0.9.2"
"llamaindex": "catalog:"
},
"publishConfig": {
"access": "public"

Wyświetl plik

@ -1,15 +0,0 @@
# @agentic/mastra
## 0.1.2
### Patch Changes
- Update readmes
## 0.1.1
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/mastra",
"version": "0.1.2",
"version": "7.4.7",
"description": "Agentic adapter for the Mastra AI Agent SDK.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -35,11 +35,11 @@
"@agentic/core": "workspace:*"
},
"peerDependencies": {
"@mastra/core": "^0.6.0"
"@mastra/core": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*",
"@mastra/core": "^0.6.0"
"@mastra/core": "catalog:"
},
"publishConfig": {
"access": "public"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/midjourney
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/midjourney",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for the unofficial Midjourney API via imagineapi.dev.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,10 +32,10 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5"
"ky": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/novu
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/novu",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for the Novu notifications API.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,10 +32,10 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5"
"ky": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/people-data-labs
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/people-data-labs",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for People Data Labs.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,11 +32,11 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5",
"p-throttle": "^6.2.0"
"ky": "catalog:",
"p-throttle": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/perigon
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/perigon",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for the Perigon News API.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,11 +32,11 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5",
"p-throttle": "^6.2.0"
"ky": "catalog:",
"p-throttle": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/polygon
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/polygon",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for the Polygon stock API.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,10 +32,10 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5"
"ky": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/predict-leads
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/predict-leads",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for Predict Leads.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,11 +32,11 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5",
"p-throttle": "^6.2.0"
"ky": "catalog:",
"p-throttle": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/proxycurl
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/proxycurl",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for Proxycurl.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,11 +32,11 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5",
"p-throttle": "^6.2.0"
"ky": "catalog:",
"p-throttle": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,31 +0,0 @@
# @agentic/rocketreach
## 7.4.3
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.4.2
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.4.1
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.4.0
### Minor Changes
- Add ZoomInfo, Apollo, LeadMagic, and RocketReach

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/rocketreach",
"version": "7.4.3",
"version": "7.4.7",
"description": "Agentic SDK for RocketReach.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -33,11 +33,11 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5",
"p-throttle": "^6.2.0"
"ky": "catalog:",
"p-throttle": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/searxng
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/searxng",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for the SearXNG meta search engine.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,10 +32,10 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5"
"ky": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/serpapi
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/serpapi",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for SerpAPI Google Search.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,10 +32,10 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5"
"ky": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/serper
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/serper",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for Serper Google Search.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,10 +32,10 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5"
"ky": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/slack
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/slack",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for Slack.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,10 +32,10 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5"
"ky": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,93 +0,0 @@
# @agentic/social-data
## 7.3.6
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.5
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.4
### Patch Changes
- Add gravatar; minor type fixes
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/social-data",
"version": "7.3.6",
"version": "7.4.7",
"description": "Agentic SDK for accessing Twitter via Social Data.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,11 +32,11 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5",
"p-throttle": "^6.2.0"
"ky": "catalog:",
"p-throttle": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,190 +0,0 @@
# @agentic/stdlib
## 7.4.7
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/apollo@7.4.3
- @agentic/bing@7.3.5
- @agentic/calculator@7.3.5
- @agentic/clearbit@7.3.5
- @agentic/core@7.3.5
- @agentic/dexa@7.3.5
- @agentic/diffbot@7.3.5
- @agentic/e2b@7.3.5
- @agentic/exa@7.3.5
- @agentic/firecrawl@7.3.5
- @agentic/github@7.3.5
- @agentic/gravatar@7.4.5
- @agentic/hacker-news@7.3.5
- @agentic/hunter@7.3.5
- @agentic/jina@7.3.7
- @agentic/leadmagic@7.4.3
- @agentic/midjourney@7.3.5
- @agentic/novu@7.3.5
- @agentic/people-data-labs@7.3.5
- @agentic/perigon@7.3.5
- @agentic/polygon@7.3.5
- @agentic/predict-leads@7.3.5
- @agentic/proxycurl@7.3.5
- @agentic/rocketreach@7.4.3
- @agentic/searxng@7.3.5
- @agentic/serpapi@7.3.5
- @agentic/serper@7.3.5
- @agentic/slack@7.3.5
- @agentic/social-data@7.3.6
- @agentic/tavily@7.3.5
- @agentic/twilio@7.3.5
- @agentic/twitter@7.3.5
- @agentic/weather@7.3.5
- @agentic/wikidata@7.3.5
- @agentic/wikipedia@7.3.5
- @agentic/wolfram-alpha@7.3.5
- @agentic/zoominfo@7.4.4
## 7.4.6
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/ai-sdk@7.3.4
- @agentic/apollo@7.4.2
- @agentic/bing@7.3.4
- @agentic/calculator@7.3.4
- @agentic/clearbit@7.3.4
- @agentic/core@7.3.4
- @agentic/dexa@7.3.4
- @agentic/dexter@7.3.4
- @agentic/diffbot@7.3.4
- @agentic/e2b@7.3.4
- @agentic/exa@7.3.4
- @agentic/firecrawl@7.3.4
- @agentic/genkit@7.3.4
- @agentic/github@7.3.4
- @agentic/gravatar@7.4.4
- @agentic/hacker-news@7.3.4
- @agentic/hunter@7.3.4
- @agentic/jina@7.3.6
- @agentic/langchain@7.3.4
- @agentic/leadmagic@7.4.2
- @agentic/llamaindex@7.3.4
- @agentic/midjourney@7.3.4
- @agentic/novu@7.3.4
- @agentic/people-data-labs@7.3.4
- @agentic/perigon@7.3.4
- @agentic/polygon@7.3.4
- @agentic/predict-leads@7.3.4
- @agentic/proxycurl@7.3.4
- @agentic/rocketreach@7.4.2
- @agentic/searxng@7.3.4
- @agentic/serpapi@7.3.4
- @agentic/serper@7.3.4
- @agentic/slack@7.3.4
- @agentic/social-data@7.3.5
- @agentic/tavily@7.3.4
- @agentic/twilio@7.3.4
- @agentic/twitter@7.3.4
- @agentic/weather@7.3.4
- @agentic/wikidata@7.3.4
- @agentic/wikipedia@7.3.4
- @agentic/wolfram-alpha@7.3.4
- @agentic/zoominfo@7.4.3
## 7.4.5
### Patch Changes
- Fix gravatar types
- Updated dependencies
- @agentic/gravatar@7.4.3
## 7.4.4
### Patch Changes
- Add gravatar; minor type fixes
- Updated dependencies
- @agentic/gravatar@7.4.2
- @agentic/jina@7.3.5
- @agentic/social-data@7.3.4
## 7.4.3
### Patch Changes
- Fix increase default JinaClient timeoutMs to 60s
- Updated dependencies
- @agentic/jina@7.3.4
## 7.4.2
### Patch Changes
- Bug fix for zoominfo re-authentication
- Updated dependencies
- @agentic/zoominfo@7.4.2
## 7.4.1
### Patch Changes
- Minor
- Updated dependencies
- @agentic/ai-sdk@7.3.3
- @agentic/apollo@7.4.1
- @agentic/bing@7.3.3
- @agentic/calculator@7.3.3
- @agentic/clearbit@7.3.3
- @agentic/core@7.3.3
- @agentic/dexa@7.3.3
- @agentic/dexter@7.3.3
- @agentic/diffbot@7.3.3
- @agentic/e2b@7.3.3
- @agentic/exa@7.3.3
- @agentic/firecrawl@7.3.3
- @agentic/genkit@7.3.3
- @agentic/github@7.3.3
- @agentic/hacker-news@7.3.3
- @agentic/hunter@7.3.3
- @agentic/jina@7.3.3
- @agentic/langchain@7.3.3
- @agentic/leadmagic@7.4.1
- @agentic/llamaindex@7.3.3
- @agentic/midjourney@7.3.3
- @agentic/novu@7.3.3
- @agentic/people-data-labs@7.3.3
- @agentic/perigon@7.3.3
- @agentic/polygon@7.3.3
- @agentic/predict-leads@7.3.3
- @agentic/proxycurl@7.3.3
- @agentic/rocketreach@7.4.1
- @agentic/searxng@7.3.3
- @agentic/serpapi@7.3.3
- @agentic/serper@7.3.3
- @agentic/slack@7.3.3
- @agentic/social-data@7.3.3
- @agentic/tavily@7.3.3
- @agentic/twilio@7.3.3
- @agentic/twitter@7.3.3
- @agentic/weather@7.3.3
- @agentic/wikidata@7.3.3
- @agentic/wikipedia@7.3.3
- @agentic/wolfram-alpha@7.3.3
- @agentic/zoominfo@7.4.1
## 7.4.0
### Minor Changes
- Add ZoomInfo, Apollo, LeadMagic, and RocketReach
### Patch Changes
- Updated dependencies
- @agentic/apollo@7.4.0
- @agentic/leadmagic@7.4.0
- @agentic/rocketreach@7.4.0
- @agentic/zoominfo@7.4.0

Wyświetl plik

@ -68,10 +68,10 @@
"@agentic/wikipedia": "workspace:*",
"@agentic/wolfram-alpha": "workspace:*",
"@agentic/zoominfo": "workspace:*",
"@e2b/code-interpreter": "^1.0.2"
"@e2b/code-interpreter": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"
@ -83,13 +83,19 @@
"openai",
"llm",
"tools",
"functions",
"stdlib",
"standard",
"library",
"functions",
"typescript",
"agent",
"agents"
"agents",
"ai tools",
"ai functions",
"ai function calling",
"ai tool calling",
"tool use"
],
"publishConfig": {
"access": "public"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/tavily
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/tavily",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for Tavily.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,11 +32,11 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5",
"p-throttle": "^6.2.0"
"ky": "catalog:",
"p-throttle": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,6 +1,5 @@
{
"name": "@agentic/tsconfig",
"version": "1.0.0",
"private": true,
"exports": {
".": {

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/twilio
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/twilio",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for Twilio.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,10 +32,10 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5"
"ky": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/twitter
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/twitter",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for Twitter.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,14 +32,14 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"@nangohq/node": "^0.42.2",
"ky": "^1.7.5",
"p-throttle": "^6.2.0",
"twitter-api-sdk": "^1.2.1",
"type-fest": "^4.35.0"
"@nangohq/node": "catalog:",
"ky": "catalog:",
"p-throttle": "catalog:",
"twitter-api-sdk": "catalog:",
"type-fest": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/weather
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/weather",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for weatherapi.com.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -10,6 +10,7 @@
},
"type": "module",
"source": "./src/index.ts",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
@ -32,10 +33,10 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5"
"ky": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Wyświetl plik

@ -1,87 +0,0 @@
# @agentic/wikidata
## 7.3.5
### Patch Changes
- Add Mastra AI Agent framework support
- Updated dependencies
- @agentic/core@7.3.5
## 7.3.4
### Patch Changes
- Add support for OpenAI responses, small fixes
- Updated dependencies
- @agentic/core@7.3.4
## 7.3.3
### Patch Changes
- Minor
- Updated dependencies
- @agentic/core@7.3.3
## 7.3.2
### Patch Changes
- Downgrade p-throttle to v6.2.0
- Updated dependencies
- @agentic/core@7.3.2
## 7.3.1
### Patch Changes
- Add readmes to all packages.
- Updated dependencies
- @agentic/core@7.3.1
## 7.3.0
### Minor Changes
- Update all deps
### Patch Changes
- Updated dependencies
- @agentic/core@7.3.0
## 7.2.0
### Minor Changes
- Remove hash-object and search-and-crawl packages
### Patch Changes
- Updated dependencies
- @agentic/core@7.2.0
## 7.1.0
### Minor Changes
- 33bcbe0: Update deps
### Patch Changes
- Updated dependencies [33bcbe0]
- @agentic/core@7.1.0
## 7.0.0
### Major Changes
- cba1cc7: Move to monorepo and multiple packages
See https://github.com/transitive-bullshit/agentic/issues/654 and https://github.com/transitive-bullshit/agentic/pull/657 for more info.
### Patch Changes
- Updated dependencies [cba1cc7]
- @agentic/core@7.0.0

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "@agentic/wikidata",
"version": "7.3.5",
"version": "7.4.7",
"description": "Agentic SDK for Wikidata.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
@ -32,12 +32,12 @@
},
"dependencies": {
"@agentic/core": "workspace:*",
"ky": "^1.7.5",
"p-throttle": "^6.2.0",
"wikibase-sdk": "^10.0.3"
"ky": "catalog:",
"p-throttle": "catalog:",
"wikibase-sdk": "catalog:"
},
"peerDependencies": {
"zod": "^3.24.2"
"zod": "catalog:"
},
"devDependencies": {
"@agentic/tsconfig": "workspace:*"

Some files were not shown because too many files have changed in this diff Show More