autocrew 0.3.2 → 0.3.3
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/package.json +1 -1
- package/src/tools/pipeline-ops.ts +10 -1
- package/src/tools/registry.ts +13 -5
package/package.json
CHANGED
|
@@ -62,7 +62,16 @@ export async function executePipelineOps(params: Record<string, unknown>) {
|
|
|
62
62
|
return { ok: false, error: "Missing 'project' — provide a topic slug to start from." };
|
|
63
63
|
}
|
|
64
64
|
const dir = await startProject(project, dataDir);
|
|
65
|
-
return {
|
|
65
|
+
return {
|
|
66
|
+
ok: true,
|
|
67
|
+
action: "start",
|
|
68
|
+
projectDir: dir,
|
|
69
|
+
nextStep:
|
|
70
|
+
"Project structure created with empty draft.md. " +
|
|
71
|
+
"NEXT: Write the content draft and save it using autocrew_content action='save' " +
|
|
72
|
+
"with title and body. The save action handles pipeline integration, version tracking, " +
|
|
73
|
+
"and auto-humanization. Do NOT use the Write tool to edit draft.md directly.",
|
|
74
|
+
};
|
|
66
75
|
}
|
|
67
76
|
|
|
68
77
|
case "advance": {
|
package/src/tools/registry.ts
CHANGED
|
@@ -47,8 +47,12 @@ export function registerAllTools(runner: ToolRunner): void {
|
|
|
47
47
|
name: "autocrew_content",
|
|
48
48
|
label: "AutoCrew Content",
|
|
49
49
|
description:
|
|
50
|
-
"
|
|
51
|
-
"
|
|
50
|
+
"Content creation and lifecycle management. THIS IS THE PRIMARY CONTENT CREATION TOOL. " +
|
|
51
|
+
"To create content: use action='save' with title and body (the full draft text). " +
|
|
52
|
+
"The tool handles pipeline project creation, version tracking, and auto-humanization. " +
|
|
53
|
+
"Workflow: 1) Research with autocrew_intel, 2) Write the full draft body, " +
|
|
54
|
+
"3) Save with autocrew_content action='save' (title, body, platform, hypothesis, tags). " +
|
|
55
|
+
"Other actions: list, get, update, transition, create_variant, siblings, allowed_transitions.",
|
|
52
56
|
parameters: contentSaveSchema,
|
|
53
57
|
execute: executeContentSave,
|
|
54
58
|
});
|
|
@@ -145,8 +149,10 @@ export function registerAllTools(runner: ToolRunner): void {
|
|
|
145
149
|
name: "autocrew_intel",
|
|
146
150
|
label: "AutoCrew 灵感源",
|
|
147
151
|
description:
|
|
148
|
-
"
|
|
149
|
-
"
|
|
152
|
+
"Content research and inspiration pipeline. Use this BEFORE writing content to gather real data, " +
|
|
153
|
+
"case studies, and trends. Actions: pull (collect from web search/RSS/trends — primary research tool), " +
|
|
154
|
+
"list (show saved intel), clean (archive expired), ingest (manually add url/text/memory sources). " +
|
|
155
|
+
"Research results feed into the knowledge wiki and are referenced during content creation.",
|
|
150
156
|
parameters: intelSchema,
|
|
151
157
|
execute: executeIntel,
|
|
152
158
|
});
|
|
@@ -155,7 +161,9 @@ export function registerAllTools(runner: ToolRunner): void {
|
|
|
155
161
|
name: "autocrew_pipeline_ops",
|
|
156
162
|
label: "AutoCrew Pipeline Ops",
|
|
157
163
|
description:
|
|
158
|
-
"Content pipeline lifecycle management. Actions: status (stage counts), start (topic→project
|
|
164
|
+
"Content pipeline lifecycle management. Actions: status (stage counts), start (topic→project — creates project structure, NOT content), " +
|
|
165
|
+
"advance (next stage — requires draft.md with ≥100 chars), version (add draft revision), trash, restore. " +
|
|
166
|
+
"NOTE: 'start' only creates the project folder. To create actual content, use autocrew_content action='save' with the full draft body.",
|
|
159
167
|
parameters: pipelineOpsSchema,
|
|
160
168
|
execute: executePipelineOps,
|
|
161
169
|
});
|