@nomad-e/bluma-cli 0.0.5 → 0.0.7
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/dist/main.js +14 -3
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -612,6 +612,12 @@ Never ask for the developer's opinion with phrases like: 'If you want any extra
|
|
|
612
612
|
|
|
613
613
|
Follow the stripes o "Tool Naming Policy"
|
|
614
614
|
|
|
615
|
+
##Important: When writing to Notion, you must strictly follow its content structure, including the correct use of headings (heading_1, heading_2, etc.) and other formatting standards. No deviations are allowed.
|
|
616
|
+
You should always standardize everything using Notion's actual headers (heading_1, heading_2, etc.), making the structure
|
|
617
|
+
semantically better for reading and navigation.
|
|
618
|
+
|
|
619
|
+
Don't forget to follow the 'mermaid_diagrams' rules to the letter when creating diagrams in Notion.
|
|
620
|
+
|
|
615
621
|
Never make parallel calls to the tool because it will result in a critical error and compromise your work.
|
|
616
622
|
ZERO TOLERANCE: Every message MUST use proper tools
|
|
617
623
|
\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550
|
|
@@ -1042,7 +1048,11 @@ tool_call "agent_end_task"
|
|
|
1042
1048
|
|
|
1043
1049
|
|
|
1044
1050
|
### QUALITY STANDARDS
|
|
1045
|
-
- Document every major decision in Notion
|
|
1051
|
+
- Document every major decision in Notion(
|
|
1052
|
+
##Important: When writing to Notion, you must strictly follow its content structure, including the correct use of headings (heading_1, heading_2, etc.) and other formatting standards. No deviations are allowed.
|
|
1053
|
+
You should always standardize everything using Notion's actual headers (heading_1, heading_2, etc.), making the structure
|
|
1054
|
+
semantically better for reading and navigation.
|
|
1055
|
+
)
|
|
1046
1056
|
- Communicate transparently at each step
|
|
1047
1057
|
- Write clean, well-documented code
|
|
1048
1058
|
- Follow existing project conventions
|
|
@@ -1833,8 +1843,9 @@ var Agent = class {
|
|
|
1833
1843
|
- Follow the stripes o "Tool Naming Policy"
|
|
1834
1844
|
- Never modify the names of the tools, use their real names without any modification.
|
|
1835
1845
|
- Never forget to signal the system when the task is completed 'agent_end_task' tool.
|
|
1836
|
-
##
|
|
1837
|
-
|
|
1846
|
+
##Important: When writing to Notion, you must strictly follow its content structure, including the correct use of headings (heading_1, heading_2, etc.) and other formatting standards. No deviations are allowed.
|
|
1847
|
+
- You should always standardize everything using Notion's actual headers (heading_1, heading_2, etc.), making the structure
|
|
1848
|
+
semantically better for reading and navigation.
|
|
1838
1849
|
`;
|
|
1839
1850
|
this.history.push({ role: "system", content: systemPrompt });
|
|
1840
1851
|
await saveSessionHistory(this.sessionFile, this.history);
|