jsharness 1.8.0 → 1.8.1
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/lib/index.mjs +3 -3
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -62,7 +62,7 @@ export const SUPPORTED_TOOLS = [
|
|
|
62
62
|
{
|
|
63
63
|
id: 'qoder',
|
|
64
64
|
name: 'Qoder (阿里云)',
|
|
65
|
-
description: '.qoder/rules/*.md + .qoder/skills/*/SKILL.md + .qoder/agents/*.md',
|
|
65
|
+
description: '.qoder/rules/*.md + .qoder/skills/*/SKILL.md + .qoder/commands/*.md + .qoder/agents/*.md',
|
|
66
66
|
priority: 95,
|
|
67
67
|
ruleFormat: 'markdown',
|
|
68
68
|
skillFormat: 'markdown',
|
|
@@ -484,7 +484,7 @@ const COMMAND_TRANSFORMERS = {
|
|
|
484
484
|
const existingFrontmatter = parseFrontmatter(raw);
|
|
485
485
|
const description = existingFrontmatter.description || extractDescription(raw) || cmdName;
|
|
486
486
|
let content = `---\nname: ${cmdName}\ndescription: ${description}\ntrigger_type: manual\n---\n\n${extractBody(raw)}`;
|
|
487
|
-
outputs.push({ relativePath: `.qoder/
|
|
487
|
+
outputs.push({ relativePath: `.qoder/commands/${cmdName}.md`, content, source: file.path });
|
|
488
488
|
}
|
|
489
489
|
return { format: 'directory', files: outputs };
|
|
490
490
|
},
|
|
@@ -1828,7 +1828,7 @@ export function showStatus(projectDir) {
|
|
|
1828
1828
|
{ name: 'CodeBuddy', rules: '.codebuddy/rules/', skills: '.codebuddy/skills/', commands: '.codebuddy/commands/js/', agents: '.codebuddy/agents/' },
|
|
1829
1829
|
{ name: 'Cursor', rules: '.cursor/rules/', skills: '.cursor/skills/', commands: '.cursor/commands/js/', agents: '.cursor/agents/' },
|
|
1830
1830
|
{ name: 'Copilot', rules: '.github/copilot-instructions.md', skills: null, commands: null, agents: '.github/agents/' },
|
|
1831
|
-
{ name: 'Qoder', rules: '.qoder/rules/', skills: '.qoder/skills/', commands:
|
|
1831
|
+
{ name: 'Qoder', rules: '.qoder/rules/', skills: '.qoder/skills/', commands: '.qoder/commands/', agents: '.qoder/agents/' },
|
|
1832
1832
|
{ name: 'Codex CLI', rules: 'AGENTS.md', skills: null, commands: null, agents: null },
|
|
1833
1833
|
{ name: 'Claude Code', rules: '.claude/rules/', skills: '.claude/skills/', commands: null, agents: '.claude/agents/' },
|
|
1834
1834
|
{ name: 'Trae', rules: '.trae/rules/', skills: '.trae/skills/', commands: '.trae/commands/js/', agents: '.trae/agents/' },
|
package/package.json
CHANGED