@husk-ai/core 0.1.1 → 0.1.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/dist/config.d.ts CHANGED
@@ -69,5 +69,5 @@ export declare const ENV_KEYS: {
69
69
  readonly telegram: "TELEGRAM_BOT_TOKEN";
70
70
  };
71
71
  export declare const HUSK_PORT_DEFAULT = 7377;
72
- export declare const HUSK_USER_AGENT = "husk/0.1.0 (+https://husk.sh)";
72
+ export declare const HUSK_USER_AGENT = "husk/0.1.2 (+https://husk.sh)";
73
73
  //# sourceMappingURL=config.d.ts.map
package/dist/config.js CHANGED
@@ -57,5 +57,5 @@ export const ENV_KEYS = {
57
57
  telegram: 'TELEGRAM_BOT_TOKEN',
58
58
  };
59
59
  export const HUSK_PORT_DEFAULT = 7377;
60
- export const HUSK_USER_AGENT = 'husk/0.1.0 (+https://husk.sh)';
60
+ export const HUSK_USER_AGENT = 'husk/0.1.2 (+https://husk.sh)';
61
61
  //# sourceMappingURL=config.js.map
package/dist/index.d.ts CHANGED
@@ -19,5 +19,5 @@ export type { Role, TextPart, ImagePart, ToolCallPart, ToolResultPart, ThinkingP
19
19
  export { messageText } from './types/model.js';
20
20
  export type { ToolContext, Tool, ApprovalMode, ApprovalRequest, Approver, RunOptions, RunEvent, RunResult, } from './types/agent.js';
21
21
  export type { TranscriptSource, TranscriptMessage, Transcript, ImportInput, TranscriptImporter, DistilledAgent, } from './types/transcript.js';
22
- export declare const HUSK_VERSION = "0.1.0";
22
+ export declare const HUSK_VERSION = "0.1.2";
23
23
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -15,5 +15,5 @@ export * from './spec.js';
15
15
  export * from './net.js';
16
16
  export * from './browse.js';
17
17
  export { messageText } from './types/model.js';
18
- export const HUSK_VERSION = '0.1.0';
18
+ export const HUSK_VERSION = '0.1.2';
19
19
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,8 +1,19 @@
1
1
  {
2
2
  "name": "@husk-ai/core",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Shared contracts, types and primitives for Husk.",
5
5
  "license": "Apache-2.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/Hotragn/husk.git",
9
+ "directory": "packages/core"
10
+ },
11
+ "homepage": "https://github.com/Hotragn/husk/tree/main/packages/core#readme",
12
+ "bugs": "https://github.com/Hotragn/husk/issues",
13
+ "keywords": ["husk", "ai-agent", "typescript", "contracts", "schema"],
14
+ "engines": {
15
+ "node": ">=20.10"
16
+ },
6
17
  "type": "module",
7
18
  "main": "./dist/index.js",
8
19
  "types": "./dist/index.d.ts",