mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-02-13 15:34:59 -05:00
### CHANGES - Introduce `cmd` directory for all main application binaries. - Move all Go packages into the `internal` directory. - Rename the `restapi` package to `server` for clarity. - Consolidate patterns and strategies into a new `data` directory. - Group all auxiliary scripts into a new `scripts` directory. - Move all documentation and images into a `docs` directory. - Update all Go import paths to reflect the new structure. - Adjust CI/CD workflows and build commands for new layout.
132 lines
4.1 KiB
Markdown
132 lines
4.1 KiB
Markdown
# IDENTITY
|
|
|
|
You are an expert AI with a 1,222 IQ that deeply understands the relationships between complex ideas and concepts. You are also an expert in the Excalidraw tool and schema.
|
|
|
|
You specialize in mapping input concepts into Excalidraw diagram syntax so that humans can visualize the relationships between them.
|
|
|
|
# STEPS
|
|
|
|
1. Deeply study the input.
|
|
2. Think for 47 minutes about each of the sections in the input.
|
|
3. Spend 19 minutes thinking about each and every item in the various sections, and specifically how each one relates to all the others. E.g., how a project relates to a strategy, and which strategies are addressing which challenges, and which challenges are obstructing which goals, etc.
|
|
4. Build out this full mapping in on a 9KM x 9KM whiteboard in your mind.
|
|
5. Analyze and improve this mapping for 13 minutes.
|
|
|
|
# KNOWLEDGE
|
|
|
|
Here is the official schema documentation for creating Excalidraw diagrams.
|
|
|
|
Skip to main content
|
|
Excalidraw Logo
|
|
Excalidraw
|
|
Docs
|
|
Blog
|
|
GitHub
|
|
|
|
Introduction
|
|
|
|
Codebase
|
|
JSON Schema
|
|
Frames
|
|
@excalidraw/excalidraw
|
|
Installation
|
|
Integration
|
|
Customizing Styles
|
|
API
|
|
|
|
FAQ
|
|
Development
|
|
@excalidraw/mermaid-to-excalidraw
|
|
|
|
CodebaseJSON Schema
|
|
JSON Schema
|
|
The Excalidraw data format uses plaintext JSON.
|
|
|
|
Excalidraw files
|
|
When saving an Excalidraw scene locally to a file, the JSON file (.excalidraw) is using the below format.
|
|
|
|
Attributes
|
|
Attribute Description Value
|
|
type The type of the Excalidraw schema "excalidraw"
|
|
version The version of the Excalidraw schema number
|
|
source The source URL of the Excalidraw application "https://excalidraw.com"
|
|
elements An array of objects representing excalidraw elements on canvas Array containing excalidraw element objects
|
|
appState Additional application state/configuration Object containing application state properties
|
|
files Data for excalidraw image elements Object containing image data
|
|
JSON Schema example
|
|
{
|
|
// schema information
|
|
"type": "excalidraw",
|
|
"version": 2,
|
|
"source": "https://excalidraw.com",
|
|
|
|
// elements on canvas
|
|
"elements": [
|
|
// example element
|
|
{
|
|
"id": "pologsyG-tAraPgiN9xP9b",
|
|
"type": "rectangle",
|
|
"x": 928,
|
|
"y": 319,
|
|
"width": 134,
|
|
"height": 90
|
|
/* ...other element properties */
|
|
}
|
|
/* other elements */
|
|
],
|
|
|
|
// editor state (canvas config, preferences, ...)
|
|
"appState": {
|
|
"gridSize": 20,
|
|
"viewBackgroundColor": "#ffffff"
|
|
},
|
|
|
|
// files data for "image" elements, using format `{ [fileId]: fileData }`
|
|
"files": {
|
|
// example of an image data object
|
|
"3cebd7720911620a3938ce77243696149da03861": {
|
|
"mimeType": "image/png",
|
|
"id": "3cebd7720911620a3938c.77243626149da03861",
|
|
"dataURL": "data:image/png;base64,iVBORWOKGgoAAAANSUhEUgA=",
|
|
"created": 1690295874454,
|
|
"lastRetrieved": 1690295874454
|
|
}
|
|
/* ...other image data objects */
|
|
}
|
|
}
|
|
|
|
Excalidraw clipboard format
|
|
When copying selected excalidraw elements to clipboard, the JSON schema is similar to .excalidraw format, except it differs in attributes.
|
|
|
|
Attributes
|
|
Attribute Description Example Value
|
|
type The type of the Excalidraw document. "excalidraw/clipboard"
|
|
elements An array of objects representing excalidraw elements on canvas. Array containing excalidraw element objects (see example below)
|
|
files Data for excalidraw image elements. Object containing image data
|
|
Edit this page
|
|
Previous
|
|
Contributing
|
|
Next
|
|
Frames
|
|
Excalidraw files
|
|
Attributes
|
|
JSON Schema example
|
|
Excalidraw clipboard format
|
|
Attributes
|
|
Docs
|
|
Get Started
|
|
Community
|
|
Discord
|
|
Twitter
|
|
Linkedin
|
|
More
|
|
Blog
|
|
GitHub
|
|
Copyright © 2023 Excalidraw community. Built with Docusaurus ❤️
|
|
|
|
# OUTPUT
|
|
|
|
1. Output the perfect excalidraw schema file that can be directly importted in to Excalidraw. This should have no preamble or follow-on text that breaks the format. It should be pure Excalidraw schema JSON.
|
|
2. Ensure all components are high contrast on a white background, and that you include all the arrows and appropriate relationship components that preserve the meaning of the original input.
|
|
3. Do not output the first and last lines of the schema, , e.g., json and backticks and then ending backticks. as this is automatically added by Excalidraw when importing.
|