Skip to content
Open
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: 2 additions & 0 deletions src/__tests__/commands/workspace.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ import { cleanup, createTestDir, createTestGitRepo, GIT_ENV, spawnProc } from ".
const WORKSPACE_AGENT_BOOTSTRAP_SHIM = `# Generated by grove - do not edit manually

Grove workspace. Instruction context is served on demand: call the \`context_touch\` MCP tool (or \`grove ws context touch <paths>\`) for the paths you work on.

Workspace instructions live at \`.grove/instructions.md\` - read that file directly if you cannot run grove (it is the same content grove context serves at workspace scope).
`;

describe("workspace commands", () => {
Expand Down
2 changes: 2 additions & 0 deletions src/__tests__/lib/agent-files.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ import {
const WORKSPACE_AGENT_BOOTSTRAP_SHIM = `# Generated by grove - do not edit manually

Grove workspace. Instruction context is served on demand: call the \`context_touch\` MCP tool (or \`grove ws context touch <paths>\`) for the paths you work on.

Workspace instructions live at \`.grove/instructions.md\` - read that file directly if you cannot run grove (it is the same content grove context serves at workspace scope).
`;

describe("generateAgentFiles", () => {
Expand Down
2 changes: 2 additions & 0 deletions src/lib/agent-files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ export interface GenerateAgentFilesResult {
const WORKSPACE_AGENT_BOOTSTRAP_SHIM = `# Generated by grove - do not edit manually

Grove workspace. Instruction context is served on demand: call the \`context_touch\` MCP tool (or \`grove ws context touch <paths>\`) for the paths you work on.

Workspace instructions live at \`.grove/instructions.md\` - read that file directly if you cannot run grove (it is the same content grove context serves at workspace scope).
`;

const WORKSPACE_MCP_JSON = `${JSON.stringify(
Expand Down