Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion skills/code-delivery/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: code-delivery
description: Use when doing code work that must be integration-friendly: branches, commits, tests, PR-ready receipts, owned paths, and parent-friendly handoff.
description: "Use when doing code work that must be integration-friendly: branches, commits, tests, PR-ready receipts, owned paths, and parent-friendly handoff."
---

# Code Delivery
Expand Down
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
* Each VM category gets a specific set of services.
*/

import { dirname, join } from "node:path";
import { discoverServiceModules, filterClientModules } from "./core/discover.js";
import { createExtension } from "./core/extension.js";
import { DEFAULT_SERVICES_DIR } from "./core/server.js";

/**
* Resolve which services this agent should load based on its category.
Expand Down Expand Up @@ -51,7 +51,7 @@ export function resolveClientServiceSelection(env: NodeJS.ProcessEnv = process.e
}
}

const servicesDir = process.env.SERVICES_DIR ?? DEFAULT_SERVICES_DIR;
const servicesDir = process.env.SERVICES_DIR ?? join(dirname(import.meta.dir), "services");
const allModules = await discoverServiceModules(servicesDir, {
includeNames: resolveClientServiceSelection(),
});
Expand Down
Loading