@carllee1983/dbcli 1.56.0 → 1.58.0
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/.cursor/rules/dbcli.mdc +20 -2
- package/.cursor/skills/dbcli/reference.md +53 -3
- package/.github/skills/dbcli/SKILL.md +20 -2
- package/.github/skills/dbcli/reference.md +53 -3
- package/CHANGELOG.md +56 -0
- package/assets/SKILL.md +20 -2
- package/assets/SKILL.zh-TW.md +15 -1
- package/assets/reference.md +53 -3
- package/dist/cli-runtime.mjs +1160 -618
- package/dist/cli.mjs +4 -2
- package/dist/core.d.ts +223 -146
- package/dist/core.mjs +481 -371
- package/package.json +4 -2
- package/plugins/dbcli-agent/skills/dbcli/SKILL.md +20 -2
- package/plugins/dbcli-agent/skills/dbcli/reference.md +53 -3
- package/skills/dbcli/SKILL.md +20 -2
- package/skills/dbcli/reference.md +53 -3
package/dist/cli.mjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// package.json
|
|
4
4
|
var package_default = {
|
|
5
5
|
name: "@carllee1983/dbcli",
|
|
6
|
-
version: "1.
|
|
6
|
+
version: "1.58.0",
|
|
7
7
|
description: "Database CLI for AI agents",
|
|
8
8
|
type: "module",
|
|
9
9
|
publishConfig: {
|
|
@@ -77,12 +77,14 @@ var package_default = {
|
|
|
77
77
|
"test:unit": "bun test tests/unit tests/core",
|
|
78
78
|
"test:integration": "bun test tests/integration",
|
|
79
79
|
"test:gherkin": "bun test tests/gherkin",
|
|
80
|
-
"test:docker": "docker compose -f docker-compose.test.yml up -d --wait && bun test tests/integration
|
|
80
|
+
"test:docker": "docker compose -f docker-compose.test.yml up -d --wait && bun test tests/integration; docker compose -f docker-compose.test.yml down",
|
|
81
|
+
"services:check": "bun run scripts/check-test-services.ts",
|
|
81
82
|
"docs:check": "bun run scripts/check-user-docs.ts",
|
|
82
83
|
"contract:check": "bun run scripts/check-cli-contract.ts",
|
|
83
84
|
"skill:check": "bun run scripts/check-skill-parity.ts",
|
|
84
85
|
"platform:check": "bun run scripts/check-platform-parity.ts",
|
|
85
86
|
"agent-core:check": "bun run scripts/check-agent-core-purity.ts",
|
|
87
|
+
"core-stdout:check": "bun run scripts/check-core-no-stdout.ts",
|
|
86
88
|
typecheck: "tsc --noEmit --pretty false",
|
|
87
89
|
"test:perf": "bun test ./tests/perf/*.bench.ts",
|
|
88
90
|
lint: "eslint src tests scripts --ext .ts --max-warnings=0",
|