@nomad-e/bluma-cli 0.0.6 → 0.0.8
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 +20 -1
- 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
|
|
@@ -763,6 +769,15 @@ INCORRECT:
|
|
|
763
769
|
|
|
764
770
|
### DIAGRAM TYPE BEST PRACTICES
|
|
765
771
|
|
|
772
|
+
IMPORTANT
|
|
773
|
+
The Notion API rejects rich text of type "code" and only accepts "text" for code blocks \u2013
|
|
774
|
+
a limitation of their own JSON (even for the language: "mermaid"). Therefore, only the code/text block
|
|
775
|
+
type is viable.
|
|
776
|
+
|
|
777
|
+
You should insert the pretty diagram without any delimiters or headers, in the code block with
|
|
778
|
+
proper indentation and double quotes, only in the text field, to facilitate as little manual rework as possible.
|
|
779
|
+
It's ready to copy into the native Mermaid block.
|
|
780
|
+
|
|
766
781
|
#### FLOWCHART
|
|
767
782
|
|
|
768
783
|
flowchart TD
|
|
@@ -1042,7 +1057,11 @@ tool_call "agent_end_task"
|
|
|
1042
1057
|
|
|
1043
1058
|
|
|
1044
1059
|
### QUALITY STANDARDS
|
|
1045
|
-
- Document every major decision in Notion
|
|
1060
|
+
- Document every major decision in Notion(
|
|
1061
|
+
##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.
|
|
1062
|
+
You should always standardize everything using Notion's actual headers (heading_1, heading_2, etc.), making the structure
|
|
1063
|
+
semantically better for reading and navigation.
|
|
1064
|
+
)
|
|
1046
1065
|
- Communicate transparently at each step
|
|
1047
1066
|
- Write clean, well-documented code
|
|
1048
1067
|
- Follow existing project conventions
|