@nhtio/adk 1.20260607.0 → 1.20260607.2
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 +29 -0
- package/common-BUIjZ6LV.mjs +119 -0
- package/common-BUIjZ6LV.mjs.map +1 -0
- package/common-DeNipTQI.js +148 -0
- package/common-DeNipTQI.js.map +1 -0
- package/eslint/index.d.ts +106 -0
- package/eslint/rules/artifact_tool_forbids_artifact_constructor.cjs +57 -0
- package/eslint/rules/artifact_tool_forbids_artifact_constructor.cjs.map +1 -0
- package/eslint/rules/artifact_tool_forbids_artifact_constructor.d.ts +21 -0
- package/eslint/rules/artifact_tool_forbids_artifact_constructor.mjs +52 -0
- package/eslint/rules/artifact_tool_forbids_artifact_constructor.mjs.map +1 -0
- package/eslint/rules/common.d.ts +41 -0
- package/eslint/rules/index.d.ts +12 -0
- package/eslint/rules/no_model_in_tool_handler.cjs +64 -0
- package/eslint/rules/no_model_in_tool_handler.cjs.map +1 -0
- package/eslint/rules/no_model_in_tool_handler.d.ts +26 -0
- package/eslint/rules/no_model_in_tool_handler.mjs +59 -0
- package/eslint/rules/no_model_in_tool_handler.mjs.map +1 -0
- package/eslint/rules/require_validator_any_required.cjs +100 -0
- package/eslint/rules/require_validator_any_required.cjs.map +1 -0
- package/eslint/rules/require_validator_any_required.d.ts +31 -0
- package/eslint/rules/require_validator_any_required.mjs +95 -0
- package/eslint/rules/require_validator_any_required.mjs.map +1 -0
- package/eslint/rules/thought_payload_requires_replay_tag.cjs +71 -0
- package/eslint/rules/thought_payload_requires_replay_tag.cjs.map +1 -0
- package/eslint/rules/thought_payload_requires_replay_tag.d.ts +26 -0
- package/eslint/rules/thought_payload_requires_replay_tag.mjs +66 -0
- package/eslint/rules/thought_payload_requires_replay_tag.mjs.map +1 -0
- package/eslint/rules/token_encoding_requires_context_window.cjs +70 -0
- package/eslint/rules/token_encoding_requires_context_window.cjs.map +1 -0
- package/eslint/rules/token_encoding_requires_context_window.d.ts +24 -0
- package/eslint/rules/token_encoding_requires_context_window.mjs +65 -0
- package/eslint/rules/token_encoding_requires_context_window.mjs.map +1 -0
- package/eslint/rules.cjs +12 -0
- package/eslint/rules.mjs +6 -0
- package/eslint.cjs +82 -0
- package/eslint.cjs.map +1 -0
- package/eslint.mjs +74 -0
- package/eslint.mjs.map +1 -0
- package/index.cjs +1 -1
- package/index.mjs +1 -1
- package/mcp/adk-docs-corpus.json +1 -1
- package/package.json +230 -187
- package/skills/adk-assembly/SKILL.md +2 -2
|
@@ -5,7 +5,7 @@ license: MIT
|
|
|
5
5
|
compatibility: "Requires TypeScript/JavaScript project using @nhtio/adk; examples assume Node 20+ or compatible browser/runtime."
|
|
6
6
|
metadata:
|
|
7
7
|
package: "@nhtio/adk"
|
|
8
|
-
version: "1.20260607.
|
|
8
|
+
version: "1.20260607.2"
|
|
9
9
|
author: "Jak Giveon <jak@nht.io>"
|
|
10
10
|
copyright: "© 2025-present New Horizon Technology LTD"
|
|
11
11
|
---
|
|
@@ -17,7 +17,7 @@ Use this skill to help users build or review an `@nhtio/adk` assembly: the appli
|
|
|
17
17
|
## Package Metadata
|
|
18
18
|
|
|
19
19
|
- Package: `@nhtio/adk`
|
|
20
|
-
- Version: `1.20260607.
|
|
20
|
+
- Version: `1.20260607.2`
|
|
21
21
|
- License: MIT
|
|
22
22
|
- Author: Jak Giveon <jak@nht.io>
|
|
23
23
|
- Copyright: © 2025-present New Horizon Technology LTD
|