@dcyfr/ai 3.0.3 → 3.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/README.md +10 -11
- package/package.json +2 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.0.4](https://github.com/dcyfr-labs/dcyfr-ai/compare/v3.0.3...v3.0.4) (2026-05-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **release:** align release-please tag format with existing v* tags ([#177](https://github.com/dcyfr-labs/dcyfr-ai/issues/177)) ([b373114](https://github.com/dcyfr-labs/dcyfr-ai/commit/b3731141900425606b7646d72cd8a93e0421f354))
|
|
9
|
+
|
|
3
10
|
## 3.0.3
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -752,24 +752,23 @@ See [CONTRIBUTING.md](./CONTRIBUTING.md) for contribution guidelines.
|
|
|
752
752
|
|
|
753
753
|
### Release Process
|
|
754
754
|
|
|
755
|
-
We use [
|
|
755
|
+
We use [release-please](https://github.com/googleapis/release-please) for automated versioning and publishing. Version bumps are derived from PR titles using [conventional commits](https://www.conventionalcommits.org/).
|
|
756
756
|
|
|
757
757
|
**For contributors:**
|
|
758
758
|
|
|
759
|
-
|
|
760
|
-
# Add a changeset describing your changes
|
|
761
|
-
npm run changeset
|
|
759
|
+
Make your PR title a conventional commit (`feat:` minor, `fix:`/`deps:`/`perf:` patch, `feat!:` major). Squash-merge is required so the PR title becomes the commit on `main`.
|
|
762
760
|
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
761
|
+
```
|
|
762
|
+
fix(memory): correct mem0 client retry semantics
|
|
763
|
+
feat(provider-registry): add GitHub Models provider
|
|
764
|
+
deps: bump @anthropic-ai/sdk to 0.95.2
|
|
766
765
|
```
|
|
767
766
|
|
|
768
767
|
**For maintainers:**
|
|
769
768
|
|
|
770
|
-
-
|
|
771
|
-
- Merging
|
|
772
|
-
- See [
|
|
769
|
+
- release-please opens a Release PR aggregating unreleased commits
|
|
770
|
+
- Merging the Release PR publishes to npm via OIDC Trusted Publishing
|
|
771
|
+
- See [CONTRIBUTING.md](./CONTRIBUTING.md#release-process) for the full release flow
|
|
773
772
|
|
|
774
773
|
[⬆️ Back to top](#dcyfr-ai)
|
|
775
774
|
|
|
@@ -929,7 +928,7 @@ Telemetry tracks: API calls, token usage, costs, latency, quality scores.
|
|
|
929
928
|
|
|
930
929
|
**Q: Is this harness production-ready?**
|
|
931
930
|
|
|
932
|
-
A: Yes! @dcyfr/ai is used in production at dcyfr-labs and other projects. It has comprehensive test coverage, semantic versioning, automated releases via
|
|
931
|
+
A: Yes! @dcyfr/ai is used in production at dcyfr-labs and other projects. It has comprehensive test coverage, semantic versioning, automated releases via release-please, and follows best practices for package publishing.
|
|
933
932
|
|
|
934
933
|
[⬆️ Back to top](#dcyfr-ai)
|
|
935
934
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcyfr/ai",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.4",
|
|
4
4
|
"description": "Portable AI agent harness with plugin architecture",
|
|
5
5
|
"main": "./dist/ai/index.js",
|
|
6
6
|
"types": "./dist/ai/index.d.ts",
|
|
@@ -70,14 +70,7 @@
|
|
|
70
70
|
"mcp:dev:content": "npx fastmcp dev packages/ai/mcp/servers/content-manager/index.ts",
|
|
71
71
|
"mcp:dev:promptintel": "npx fastmcp dev packages/ai/mcp/servers/promptintel/index.ts",
|
|
72
72
|
"mcp:dev:delegation": "npx fastmcp dev packages/ai/mcp/servers/delegation-monitor/index.ts",
|
|
73
|
-
"
|
|
74
|
-
"changeset:version": "changeset version",
|
|
75
|
-
"changeset:publish": "changeset publish",
|
|
76
|
-
"validate:provider-flags": "node scripts/validate-provider-version-flags.mjs",
|
|
77
|
-
"release": "npm run build && changeset publish",
|
|
78
|
-
"version:patch": "npm version patch -m 'chore: bump version to %s'",
|
|
79
|
-
"version:minor": "npm version minor -m 'chore: bump version to %s'",
|
|
80
|
-
"version:major": "npm version major -m 'chore: bump version to %s'"
|
|
73
|
+
"validate:provider-flags": "node scripts/validate-provider-version-flags.mjs"
|
|
81
74
|
},
|
|
82
75
|
"keywords": [
|
|
83
76
|
"ai",
|
|
@@ -129,8 +122,6 @@
|
|
|
129
122
|
"zod": "^4.3.6"
|
|
130
123
|
},
|
|
131
124
|
"devDependencies": {
|
|
132
|
-
"@changesets/changelog-github": "^0.7.0",
|
|
133
|
-
"@changesets/cli": "^2.29.8",
|
|
134
125
|
"@types/better-sqlite3": "^7.6.12",
|
|
135
126
|
"@types/glob": "^9.0.0",
|
|
136
127
|
"@types/node": "^25.5.0",
|