@carllee1983/dbcli 1.37.0 → 1.38.1
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/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/.cursor/rules/dbcli.mdc +192 -280
- package/.cursor/skills/dbcli/reference.md +131 -2
- package/.cursor-plugin/plugin.json +1 -1
- package/.github/skills/dbcli/SKILL.md +192 -280
- package/.github/skills/dbcli/reference.md +131 -2
- package/CHANGELOG.md +22 -0
- package/assets/SKILL.md +192 -280
- package/assets/SKILL.zh-TW.md +211 -330
- package/assets/reference.md +131 -2
- package/dist/cli.mjs +11866 -681
- package/dist/core.mjs +1 -1
- package/gemini-extension.json +1 -1
- package/package.json +1 -1
- package/plugins/dbcli-agent/skills/dbcli/SKILL.md +192 -280
- package/plugins/dbcli-agent/skills/dbcli/reference.md +131 -2
- package/skills/dbcli/SKILL.md +192 -280
- package/skills/dbcli/reference.md +131 -2
package/dist/core.mjs
CHANGED
|
@@ -13537,7 +13537,7 @@ var ENGINE_CAPABILITIES = Object.freeze({
|
|
|
13537
13537
|
queries: cap("limited", "local-write", "Snippet management works with Redis-specific saved-query limitations."),
|
|
13538
13538
|
insert: cap("unsupported", "none", "Dedicated write subcommand is not exposed."),
|
|
13539
13539
|
update: cap("unsupported", "none", "Dedicated write subcommand is not exposed."),
|
|
13540
|
-
delete: cap("
|
|
13540
|
+
delete: cap("limited", "db-write", "Basic delete via DEL/HDEL/LREM/SREM/ZREM (needs data-admin); supports --dry-run."),
|
|
13541
13541
|
export: cap("unsupported", "none", "Redis export is not supported."),
|
|
13542
13542
|
blacklist: cap("limited", "local-write", "Key-glob rejection (Redis-native pattern) plus value/hash-field masking ([REDACTED])."),
|
|
13543
13543
|
check: cap("unsupported", "none", "Data health check is SQL-only."),
|
package/gemini-extension.json
CHANGED