Skip to content

Commit a89203c

Browse files
committed
fix: imports
1 parent 437d4ad commit a89203c

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/slices/agent/tool/data/repositories/exec/exec.repository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { z } from "zod"
2-
import type { Tool, ToolContext } from "../domain/tool.types"
2+
import type { Tool, ToolContext } from "../../../domain/tool.types"
33

44
const schema = z.object({
55
command: z.string().describe("Shell command to execute"),

src/slices/agent/tool/data/repositories/file/file.repository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { z } from "zod"
2-
import type { Tool, ToolContext } from "../domain/tool.types"
2+
import type { Tool, ToolContext } from "../../../domain/tool.types"
33

44
const schema = z.object({
55
action: z.enum(["read", "write"]),

src/slices/agent/tool/data/repositories/file/unzip.repository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { z } from "zod"
22
import { execSync } from "child_process"
33
import path from "path"
4-
import type { Tool, ToolContext } from "../../domain/tool.types"
4+
import type { Tool, ToolContext } from "../../../domain/tool.types"
55

66
const schema = z.object({
77
path: z.string().describe("Path to the zip archive"),

src/slices/agent/tool/data/repositories/http/http.repository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { z } from "zod"
2-
import type { Tool, ToolContext } from "../domain/tool.types"
2+
import type { Tool, ToolContext } from "../../../domain/tool.types"
33

44
const schema = z.object({
55
url: z.string().url().describe("URL to fetch"),

src/slices/agent/tool/data/repositories/message/message.repository.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { z } from "zod"
2-
import type { Tool, ToolContext } from "../domain/tool.types"
3-
import type { ChannelServer } from "../../channel/channel.module"
2+
import type { Tool, ToolContext } from "../../../domain/tool.types"
3+
import type { ChannelServer } from "../../../../../setup/channel/channel.module"
44

55
const schema = z.object({
66
to: z.string().describe("Recipient ID"),

src/slices/agent/tool/data/repositories/secret/secret.repository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { z } from "zod"
2-
import type { Tool, ToolContext } from "../domain/tool.types"
2+
import type { Tool, ToolContext } from "../../../domain/tool.types"
33
import { SecretModule } from "../../../../../setup/secret/secret.module"
44

55
// Lazy singleton — initialized on first use

src/slices/agent/tool/data/repositories/skill/skill.repository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { z } from "zod"
22
import { join } from "path"
33
import { mkdirSync } from "fs"
4-
import type { Tool, ToolContext } from "../../domain/tool.types"
4+
import type { Tool, ToolContext } from "../../../domain/tool.types"
55

66
const schema = z.object({
77
name: z.string().describe("Skill name (slug, e.g. 'github', 'trello', 'weather')"),

0 commit comments

Comments
 (0)