@probelabs/visor 0.1.69 → 0.1.70
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/index.js +5 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
process.env.VISOR_VERSION = '0.1.
|
|
2
|
+
process.env.VISOR_VERSION = '0.1.70';
|
|
3
3
|
/******/ (() => { // webpackBootstrap
|
|
4
4
|
/******/ var __webpack_modules__ = ({
|
|
5
5
|
|
|
@@ -180188,6 +180188,7 @@ FIXING METHODOLOGY:
|
|
|
180188
180188
|
- Incorrect formatting for diagram-specific elements
|
|
180189
180189
|
- **Parentheses in node labels or subgraph names**: Wrap text containing parentheses in double quotes to prevent GitHub parsing errors
|
|
180190
180190
|
- Single quotes in node labels (GitHub's parser expects double quotes)
|
|
180191
|
+
- **Edge/Arrow labels with spaces**: MUST use pipe syntax like "A --|Label Text|--> B" or "A -- |Label Text| --> B". NEVER use double quotes like "A -- \\"Label\\" --> B" which is INVALID
|
|
180191
180192
|
4. **Preserve semantic meaning** - never change the intended flow or relationships
|
|
180192
180193
|
5. **Use proper escaping** for special characters and spaces
|
|
180193
180194
|
6. **Ensure consistency** in naming conventions and formatting
|
|
@@ -180220,8 +180221,10 @@ When presented with a broken Mermaid diagram, analyze it thoroughly and provide
|
|
|
180220
180221
|
debug: this.options.debug,
|
|
180221
180222
|
tracer: this.options.tracer,
|
|
180222
180223
|
allowEdit: this.options.allowEdit,
|
|
180223
|
-
maxIterations: 2
|
|
180224
|
+
maxIterations: 2,
|
|
180224
180225
|
// Limit mermaid fixing to 2 iterations to prevent long loops
|
|
180226
|
+
disableMermaidValidation: true
|
|
180227
|
+
// CRITICAL: Disable mermaid validation in nested agent to prevent infinite recursion
|
|
180225
180228
|
});
|
|
180226
180229
|
}
|
|
180227
180230
|
return this.agent;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@probelabs/visor",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.70",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"bin": {
|
|
6
6
|
"visor": "./dist/index.js"
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"@octokit/auth-app": "^8.1.0",
|
|
74
74
|
"@octokit/core": "^7.0.3",
|
|
75
75
|
"@octokit/rest": "^22.0.0",
|
|
76
|
-
"@probelabs/probe": "^0.6.0-
|
|
76
|
+
"@probelabs/probe": "^0.6.0-rc115",
|
|
77
77
|
"@types/commander": "^2.12.0",
|
|
78
78
|
"@types/uuid": "^10.0.0",
|
|
79
79
|
"cli-table3": "^0.6.5",
|