Some checks failed
ci / Validate workspace (push) Successful in 12m32s
landing-page-ci / Validate landing page (push) Successful in 9m41s
landing-page-deploy / Deploy landing page (push) Failing after 5m23s
github-metrics / Generate repository metrics SVG (push) Failing after 2m3s
refresh-contributors-wall / Refresh contributors wall cache bust (push) Failing after 11s
This repository contains the open-design daemon CLI source code, built and packaged at https://helix-mind.ai/cli/open-design/latest.tgz for use by the HelixMind /design slash command. Licenses: Apache-2.0 (root) + MIT (skills/*)
57 lines
2.9 KiB
TypeScript
57 lines
2.9 KiB
TypeScript
import { readFileSync } from 'node:fs';
|
|
import path from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
import { describe, expect, it } from 'vitest';
|
|
|
|
import { composeSystemPrompt } from '../../src/prompts/system.js';
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
const repoRoot = path.resolve(__dirname, '../../../..');
|
|
const liveArtifactRoot = path.join(repoRoot, 'skills/live-artifact');
|
|
const liveArtifactSkillPath = path.join(repoRoot, 'skills/live-artifact/SKILL.md');
|
|
const liveArtifactSkillMarkdown = readFileSync(liveArtifactSkillPath, 'utf8');
|
|
const liveArtifactSkillBody = [
|
|
`> **Skill root (absolute):** \`${liveArtifactRoot}\``,
|
|
'>',
|
|
'> This skill ships side files alongside `SKILL.md`. When the workflow',
|
|
'> below references relative paths such as `assets/template.html` or',
|
|
'> `references/layouts.md`, resolve them against the skill root above and',
|
|
'> open them via their full absolute path.',
|
|
'>',
|
|
'> Known side files in this skill: `references/artifact-schema.md`, `references/connector-policy.md`, `references/refresh-contract.md`.',
|
|
'',
|
|
'',
|
|
liveArtifactSkillMarkdown.replace(/^---[\s\S]*?---\n\n/, '').trim(),
|
|
].join('\n');
|
|
|
|
describe('composeSystemPrompt', () => {
|
|
it('injects live-artifact skill guidance and metadata intent', () => {
|
|
const prompt = composeSystemPrompt({
|
|
skillName: 'live-artifact',
|
|
skillMode: 'prototype',
|
|
skillBody: liveArtifactSkillBody,
|
|
metadata: {
|
|
kind: 'prototype',
|
|
intent: 'live-artifact',
|
|
} as any,
|
|
});
|
|
|
|
expect(prompt).toContain('## Active skill — live-artifact');
|
|
expect(prompt).toContain(`> **Skill root (absolute):** \`${liveArtifactRoot}\``);
|
|
expect(prompt).toContain('**Pre-flight (do this before any other tool):**');
|
|
expect(prompt).toContain('`references/artifact-schema.md`');
|
|
expect(prompt).toContain('`references/connector-policy.md`');
|
|
expect(prompt).toContain('`references/refresh-contract.md`');
|
|
expect(prompt).toContain('The wrapper reads injected `OD_NODE_BIN`, `OD_BIN`, `OD_DAEMON_URL`, and `OD_TOOL_TOKEN`');
|
|
expect(prompt).toContain('Do not include or invent `projectId`; the daemon derives project/run scope from the token.');
|
|
expect(prompt).toContain('"$OD_NODE_BIN" "$OD_BIN" tools live-artifacts create --input artifact.json');
|
|
expect(prompt).toContain('if the user names a connector/source (for example Notion)');
|
|
expect(prompt).toContain('list connectors before asking where the data comes from');
|
|
expect(prompt).toContain('a connected `notion` connector plus a user brief that names Notion is enough to start with `notion.notion_search`');
|
|
expect(prompt).toContain('Prefer the `live-artifact` skill workflow when available');
|
|
expect(prompt).toContain('The first output should be a live artifact/dashboard/report');
|
|
});
|
|
});
|