@vedangiitb/qwintly-core 1.3.0 → 1.3.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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"planner.examples.d.ts","sourceRoot":"","sources":["../../../../src/ai/prompts/examples/planner.examples.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"planner.examples.d.ts","sourceRoot":"","sources":["../../../../src/ai/prompts/examples/planner.examples.ts"],"names":[],"mappings":"AAgCA,eAAO,MAAM,eAAe,QAAsB,CAAC"}
|
|
@@ -1,3 +1,33 @@
|
|
|
1
|
-
const examples = [
|
|
1
|
+
const examples = [
|
|
2
|
+
`## Examples
|
|
3
|
+
|
|
4
|
+
### Example: \`submit_planner_tasks\` (final response format)
|
|
5
|
+
Goal: Return an ordered, atomic task list for the codegen agent.
|
|
6
|
+
|
|
7
|
+
Tool call:
|
|
8
|
+
\`\`\`json
|
|
9
|
+
{
|
|
10
|
+
"planner_tasks": [
|
|
11
|
+
{
|
|
12
|
+
"description": "Create the /pricing route using create_new_route if it does not exist, and ensure app/pricing/page.tsx imports and renders the pageConfig.json elements via the standard renderer pattern used in this repo.",
|
|
13
|
+
"targets": ["app/pricing/page.tsx", "app/pricing/pageConfig.json"]
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"description": "Update app/pricing/pageConfig.json to add a hero section with a title, subtitle, and two buttons (Primary: 'Start free trial' routes to /signup, Secondary: 'View docs' opens an external link in a new tab). Ensure all elements have ids and use Tailwind className strings only.",
|
|
17
|
+
"targets": ["app/pricing/pageConfig.json"]
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"description": "Add a 3-tier pricing cards section (Starter/Pro/Enterprise) in app/pricing/pageConfig.json with consistent spacing, responsive layout, and clear feature bullet lists. Use lucide-react icons for checkmarks and keep the JSON tree minimal and readable.",
|
|
21
|
+
"targets": ["app/pricing/pageConfig.json"]
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
}
|
|
25
|
+
\`\`\`
|
|
26
|
+
|
|
27
|
+
Notes:
|
|
28
|
+
- Each task must be atomic and ordered.
|
|
29
|
+
- \`description\` must NOT include code blocks; reference exact paths and expected end state.
|
|
30
|
+
- \`targets\` must be workspace-relative paths that will be modified or referenced.`,
|
|
31
|
+
];
|
|
2
32
|
export const plannerExamples = examples.join("\n");
|
|
3
33
|
//# sourceMappingURL=planner.examples.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"planner.examples.js","sourceRoot":"","sources":["../../../../src/ai/prompts/examples/planner.examples.ts"],"names":[],"mappings":"AAAA,MAAM,QAAQ,GAAG,CAAC
|
|
1
|
+
{"version":3,"file":"planner.examples.js","sourceRoot":"","sources":["../../../../src/ai/prompts/examples/planner.examples.ts"],"names":[],"mappings":"AAAA,MAAM,QAAQ,GAAG;IACf;;;;;;;;;;;;;;;;;;;;;;;;;;;;oFA4BkF;CACnF,CAAC;AAEF,MAAM,CAAC,MAAM,eAAe,GAAG,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC","sourcesContent":["const examples = [\n `## Examples\n\n### Example: \\`submit_planner_tasks\\` (final response format)\nGoal: Return an ordered, atomic task list for the codegen agent.\n\nTool call:\n\\`\\`\\`json\n{\n \"planner_tasks\": [\n {\n \"description\": \"Create the /pricing route using create_new_route if it does not exist, and ensure app/pricing/page.tsx imports and renders the pageConfig.json elements via the standard renderer pattern used in this repo.\",\n \"targets\": [\"app/pricing/page.tsx\", \"app/pricing/pageConfig.json\"]\n },\n {\n \"description\": \"Update app/pricing/pageConfig.json to add a hero section with a title, subtitle, and two buttons (Primary: 'Start free trial' routes to /signup, Secondary: 'View docs' opens an external link in a new tab). Ensure all elements have ids and use Tailwind className strings only.\",\n \"targets\": [\"app/pricing/pageConfig.json\"]\n },\n {\n \"description\": \"Add a 3-tier pricing cards section (Starter/Pro/Enterprise) in app/pricing/pageConfig.json with consistent spacing, responsive layout, and clear feature bullet lists. Use lucide-react icons for checkmarks and keep the JSON tree minimal and readable.\",\n \"targets\": [\"app/pricing/pageConfig.json\"]\n }\n ]\n}\n\\`\\`\\`\n\nNotes:\n- Each task must be atomic and ordered.\n- \\`description\\` must NOT include code blocks; reference exact paths and expected end state.\n- \\`targets\\` must be workspace-relative paths that will be modified or referenced.`,\n];\n\nexport const plannerExamples = examples.join(\"\\n\");\n"]}
|