@wrongstack/plugins 0.277.1 → 0.280.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/README.md +838 -0
- package/dist/auto-doc.d.ts +8 -0
- package/dist/auto-doc.js +175 -13
- package/dist/auto-escalate.d.ts +45 -0
- package/dist/auto-escalate.js +190 -0
- package/dist/branch-guard.d.ts +33 -0
- package/dist/branch-guard.js +228 -0
- package/dist/changelog-writer.d.ts +73 -0
- package/dist/changelog-writer.js +369 -0
- package/dist/checkpoint.d.ts +55 -0
- package/dist/checkpoint.js +305 -0
- package/dist/commit-validator.d.ts +33 -0
- package/dist/commit-validator.js +315 -0
- package/dist/config-validator.d.ts +48 -0
- package/dist/config-validator.js +347 -0
- package/dist/context-pins.d.ts +45 -0
- package/dist/context-pins.js +240 -0
- package/dist/cost-tracker.d.ts +40 -1
- package/dist/cost-tracker.js +105 -4
- package/dist/dep-guard.d.ts +65 -0
- package/dist/dep-guard.js +316 -0
- package/dist/diff-summary.d.ts +36 -0
- package/dist/diff-summary.js +235 -0
- package/dist/error-lens.d.ts +67 -0
- package/dist/error-lens.js +280 -0
- package/dist/format-on-save.d.ts +35 -0
- package/dist/format-on-save.js +219 -0
- package/dist/git-autocommit.js +186 -26
- package/dist/import-organizer.d.ts +52 -0
- package/dist/import-organizer.js +274 -0
- package/dist/index.d.ts +32 -6
- package/dist/index.js +10151 -1628
- package/dist/injection-shield.d.ts +49 -0
- package/dist/injection-shield.js +205 -0
- package/dist/lint-gate.d.ts +33 -0
- package/dist/lint-gate.js +394 -0
- package/dist/llm-cache.d.ts +56 -0
- package/dist/llm-cache.js +251 -0
- package/dist/loop-breaker.d.ts +43 -0
- package/dist/loop-breaker.js +241 -0
- package/dist/model-router.d.ts +69 -0
- package/dist/model-router.js +198 -0
- package/dist/notify-hub.d.ts +45 -0
- package/dist/notify-hub.js +304 -0
- package/dist/path-guard.d.ts +54 -0
- package/dist/path-guard.js +235 -0
- package/dist/prompt-firewall.d.ts +57 -0
- package/dist/prompt-firewall.js +290 -0
- package/dist/secret-scanner.d.ts +34 -0
- package/dist/secret-scanner.js +409 -0
- package/dist/semver-bump.js +45 -0
- package/dist/session-recap.d.ts +50 -0
- package/dist/session-recap.js +421 -0
- package/dist/shell-check.js +52 -4
- package/dist/spec-linker.d.ts +51 -0
- package/dist/spec-linker.js +541 -0
- package/dist/template-engine.js +19 -1
- package/dist/test-runner-gate.d.ts +37 -0
- package/dist/test-runner-gate.js +356 -0
- package/dist/todo-listener.d.ts +37 -0
- package/dist/todo-listener.js +216 -0
- package/dist/todo-tracker.d.ts +5 -0
- package/dist/todo-tracker.js +441 -0
- package/dist/token-budget.d.ts +40 -0
- package/dist/token-budget.js +254 -0
- package/dist/token-throttle.d.ts +54 -0
- package/dist/token-throttle.js +203 -0
- package/package.json +116 -12
- package/dist/json-path.d.ts +0 -18
- package/dist/json-path.js +0 -15
- package/dist/web-search.d.ts +0 -19
- package/dist/web-search.js +0 -15
package/dist/json-path.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
// src/json-path/index.ts
|
|
2
|
-
var API_VERSION = "^0.1.10";
|
|
3
|
-
var plugin = {
|
|
4
|
-
name: "json-path",
|
|
5
|
-
version: "0.2.0",
|
|
6
|
-
description: "Retired \u2014 capabilities merged into the built-in json tool",
|
|
7
|
-
apiVersion: API_VERSION,
|
|
8
|
-
capabilities: { tools: true },
|
|
9
|
-
setup(api) {
|
|
10
|
-
api.log.info("json-path plugin retired \u2014 use the built-in json tool with action: query|validate|transform|merge");
|
|
11
|
-
}
|
|
12
|
-
};
|
|
13
|
-
var json_path_default = plugin;
|
|
14
|
-
|
|
15
|
-
export { json_path_default as default };
|
package/dist/web-search.d.ts
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { Plugin } from '@wrongstack/core';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* web-search plugin — RETIRED.
|
|
5
|
-
*
|
|
6
|
-
* Both tools this plugin previously registered have been consolidated:
|
|
7
|
-
* - `web_search` → built-in `search` tool (packages/tools/src/search.ts)
|
|
8
|
-
* with native caching, dedup, ranking, and multiple search engines.
|
|
9
|
-
* - `web_fetch` → built-in `fetch` tool (packages/tools/src/fetch.ts)
|
|
10
|
-
* which is strictly superior (DNS-pinned SSRF, TurndownService markdown,
|
|
11
|
-
* streaming, binary-content rejection, structured errors).
|
|
12
|
-
*
|
|
13
|
-
* This file remains as a no-op stub so existing config references
|
|
14
|
-
* (`"web-search": { "enabled": true }`) do not break.
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
|
-
declare const plugin: Plugin;
|
|
18
|
-
|
|
19
|
-
export { plugin as default };
|
package/dist/web-search.js
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
// src/web-search/index.ts
|
|
2
|
-
var API_VERSION = "^0.1.10";
|
|
3
|
-
var plugin = {
|
|
4
|
-
name: "web-search",
|
|
5
|
-
version: "0.3.0",
|
|
6
|
-
description: "Retired \u2014 capabilities merged into built-in search and fetch tools",
|
|
7
|
-
apiVersion: API_VERSION,
|
|
8
|
-
capabilities: { tools: true },
|
|
9
|
-
setup(api) {
|
|
10
|
-
api.log.info("web-search plugin retired \u2014 use the built-in search and fetch tools");
|
|
11
|
-
}
|
|
12
|
-
};
|
|
13
|
-
var web_search_default = plugin;
|
|
14
|
-
|
|
15
|
-
export { web_search_default as default };
|