├── .gitignore ├── CHANGELOG.md ├── JArchi Development Guide.md ├── LICENSE ├── README.md ├── System Overview.drawio ├── context ├── .hidden ├── All-Objects.md ├── Allowed relationships.md ├── Documentation.md ├── JArchi Logging Guide.md ├── OpenAI API.md ├── Prompts.txt ├── The-Console-Dialogs-and-Other-Utilities.md ├── archi-script-development-learnings.md ├── archi-view-elements-treeview-learnings.md ├── graalvm-java-interop-guide.md ├── jArchi-Collection.md ├── jarchi-archimate-mapping.md ├── jarchi-scripting-guide.md ├── relationship-keys.xml └── relationships.xml ├── docs-source ├── API Client Usage Guide.md ├── Documentation Augmenter.ajs.md ├── Expand Model.ajs.md ├── Export View to Draw.io.ajs.md ├── Generate Capability Model.ajs.md ├── Generate Meta Model from View.ajs.md ├── Generate Meta Model.ajs.md ├── Generate Model from Schema.ajs.md ├── Generate Model.ajs.md ├── Generate Strategy Model.ajs.md ├── Generate View from Meta Model.ajs.md ├── Layout using Dagre.ajs.md ├── Menu.ajs.md ├── Model Health Check.ajs.md ├── Ollama API Developer Guide.md ├── Publish View to Confluence.ajs.md ├── Smart Style Sync.ajs.md ├── Where used.ajs.md └── menuItems.js.md ├── jarchi-logger ├── .env.example ├── .gitignore ├── README.md ├── copy-deps.js ├── package-lock.json ├── package.json ├── public │ ├── output.css │ └── styles.css ├── server.js ├── tailwind.config.js ├── test-console.js └── views │ ├── console.ejs │ └── index.ejs ├── jsdoc-runner.js ├── jsdoc.conf.json ├── package.json └── scripts ├── .gitignore ├── Allowed relationships.ajs ├── Create L-shaped relations.ajs ├── Create S-shaped relations.ajs ├── Create orthogonal relations.ajs ├── Documentation Augmenter.ajs ├── Expand Model.ajs ├── Export View to Draw.io.ajs ├── Generate Capability Model.ajs ├── Generate Meta Model from View.ajs ├── Generate Meta Model.ajs ├── Generate Model from Schema.ajs ├── Generate Model.ajs ├── Generate Strategy Model.ajs ├── Generate View from Meta Model.ajs ├── Intelligent Model Analyzer.ajs ├── LLMProvidersTest.ajs ├── Layout using Dagre.ajs ├── Layout.ajs ├── Menu.ajs ├── Model Health Check.ajs ├── OllamaTest.ajs ├── OpenAITest.ajs ├── Publish View to Confluence.ajs ├── Remove all bend points.ajs ├── Settings.ajs ├── Smart Style Sync.ajs ├── Spread relations orthogonally.ajs ├── System Overview.ajs ├── Test JArchi Logger.ajs ├── Test JSON view.ajs ├── Test charts.ajs ├── Where used.ajs ├── docs ├── tutorial-Documentation Augmenter.html ├── tutorial-Expand Model.html ├── tutorial-Export View to Draw.io.html ├── tutorial-Generate Capability Model.html ├── tutorial-Generate Meta Model from View.html ├── tutorial-Generate Meta Model.html ├── tutorial-Generate Model from Schema.html ├── tutorial-Generate Model.html ├── tutorial-Generate Strategy Model.html ├── tutorial-Generate View from Meta Model.html ├── tutorial-Layout using Dagre.html ├── tutorial-Menu.html ├── tutorial-Model Health Check.html ├── tutorial-Publish View to Confluence.html ├── tutorial-Smart Style Sync.html └── tutorial-Where used.html ├── lib ├── anthropicClient.js ├── apiClient.js ├── apiClientLegacy.js ├── archiMateDrawIoMappings.js ├── chartjsUtility.js ├── commonStyles.js ├── confluenceIntegration.js ├── doEach.js ├── getUserPrompt.js ├── jarchiLogger.js ├── layoutAlgorithms.js ├── layoutDagre.js ├── llm.js ├── menuItems.js ├── modelManipulation.js ├── modelTraversal.js ├── ollamaClient.js └── openaiClient.js ├── logTest.ajs ├── package-lock.json ├── package.json ├── schemas ├── Application Layer.json ├── Meta model.json ├── Motivation.json ├── Strategy meta model.json └── Three layers.json ├── size.ajs ├── testClaude.ajs └── testLLM.ajs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /JArchi Development Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/JArchi Development Guide.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/README.md -------------------------------------------------------------------------------- /System Overview.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/System Overview.drawio -------------------------------------------------------------------------------- /context/.hidden: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /context/All-Objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/context/All-Objects.md -------------------------------------------------------------------------------- /context/Allowed relationships.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/context/Allowed relationships.md -------------------------------------------------------------------------------- /context/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/context/Documentation.md -------------------------------------------------------------------------------- /context/JArchi Logging Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/context/JArchi Logging Guide.md -------------------------------------------------------------------------------- /context/OpenAI API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/context/OpenAI API.md -------------------------------------------------------------------------------- /context/Prompts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/context/Prompts.txt -------------------------------------------------------------------------------- /context/The-Console-Dialogs-and-Other-Utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/context/The-Console-Dialogs-and-Other-Utilities.md -------------------------------------------------------------------------------- /context/archi-script-development-learnings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/context/archi-script-development-learnings.md -------------------------------------------------------------------------------- /context/archi-view-elements-treeview-learnings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/context/archi-view-elements-treeview-learnings.md -------------------------------------------------------------------------------- /context/graalvm-java-interop-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/context/graalvm-java-interop-guide.md -------------------------------------------------------------------------------- /context/jArchi-Collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/context/jArchi-Collection.md -------------------------------------------------------------------------------- /context/jarchi-archimate-mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/context/jarchi-archimate-mapping.md -------------------------------------------------------------------------------- /context/jarchi-scripting-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/context/jarchi-scripting-guide.md -------------------------------------------------------------------------------- /context/relationship-keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/context/relationship-keys.xml -------------------------------------------------------------------------------- /context/relationships.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/context/relationships.xml -------------------------------------------------------------------------------- /docs-source/API Client Usage Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/API Client Usage Guide.md -------------------------------------------------------------------------------- /docs-source/Documentation Augmenter.ajs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/Documentation Augmenter.ajs.md -------------------------------------------------------------------------------- /docs-source/Expand Model.ajs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/Expand Model.ajs.md -------------------------------------------------------------------------------- /docs-source/Export View to Draw.io.ajs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/Export View to Draw.io.ajs.md -------------------------------------------------------------------------------- /docs-source/Generate Capability Model.ajs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/Generate Capability Model.ajs.md -------------------------------------------------------------------------------- /docs-source/Generate Meta Model from View.ajs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/Generate Meta Model from View.ajs.md -------------------------------------------------------------------------------- /docs-source/Generate Meta Model.ajs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/Generate Meta Model.ajs.md -------------------------------------------------------------------------------- /docs-source/Generate Model from Schema.ajs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/Generate Model from Schema.ajs.md -------------------------------------------------------------------------------- /docs-source/Generate Model.ajs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/Generate Model.ajs.md -------------------------------------------------------------------------------- /docs-source/Generate Strategy Model.ajs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/Generate Strategy Model.ajs.md -------------------------------------------------------------------------------- /docs-source/Generate View from Meta Model.ajs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/Generate View from Meta Model.ajs.md -------------------------------------------------------------------------------- /docs-source/Layout using Dagre.ajs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/Layout using Dagre.ajs.md -------------------------------------------------------------------------------- /docs-source/Menu.ajs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/Menu.ajs.md -------------------------------------------------------------------------------- /docs-source/Model Health Check.ajs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/Model Health Check.ajs.md -------------------------------------------------------------------------------- /docs-source/Ollama API Developer Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/Ollama API Developer Guide.md -------------------------------------------------------------------------------- /docs-source/Publish View to Confluence.ajs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/Publish View to Confluence.ajs.md -------------------------------------------------------------------------------- /docs-source/Smart Style Sync.ajs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/Smart Style Sync.ajs.md -------------------------------------------------------------------------------- /docs-source/Where used.ajs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/Where used.ajs.md -------------------------------------------------------------------------------- /docs-source/menuItems.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/docs-source/menuItems.js.md -------------------------------------------------------------------------------- /jarchi-logger/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/jarchi-logger/.env.example -------------------------------------------------------------------------------- /jarchi-logger/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env -------------------------------------------------------------------------------- /jarchi-logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/jarchi-logger/README.md -------------------------------------------------------------------------------- /jarchi-logger/copy-deps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/jarchi-logger/copy-deps.js -------------------------------------------------------------------------------- /jarchi-logger/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/jarchi-logger/package-lock.json -------------------------------------------------------------------------------- /jarchi-logger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/jarchi-logger/package.json -------------------------------------------------------------------------------- /jarchi-logger/public/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/jarchi-logger/public/output.css -------------------------------------------------------------------------------- /jarchi-logger/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/jarchi-logger/public/styles.css -------------------------------------------------------------------------------- /jarchi-logger/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/jarchi-logger/server.js -------------------------------------------------------------------------------- /jarchi-logger/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/jarchi-logger/tailwind.config.js -------------------------------------------------------------------------------- /jarchi-logger/test-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/jarchi-logger/test-console.js -------------------------------------------------------------------------------- /jarchi-logger/views/console.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/jarchi-logger/views/console.ejs -------------------------------------------------------------------------------- /jarchi-logger/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/jarchi-logger/views/index.ejs -------------------------------------------------------------------------------- /jsdoc-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/jsdoc-runner.js -------------------------------------------------------------------------------- /jsdoc.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/jsdoc.conf.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/package.json -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /scripts/Allowed relationships.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Allowed relationships.ajs -------------------------------------------------------------------------------- /scripts/Create L-shaped relations.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Create L-shaped relations.ajs -------------------------------------------------------------------------------- /scripts/Create S-shaped relations.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Create S-shaped relations.ajs -------------------------------------------------------------------------------- /scripts/Create orthogonal relations.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Create orthogonal relations.ajs -------------------------------------------------------------------------------- /scripts/Documentation Augmenter.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Documentation Augmenter.ajs -------------------------------------------------------------------------------- /scripts/Expand Model.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Expand Model.ajs -------------------------------------------------------------------------------- /scripts/Export View to Draw.io.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Export View to Draw.io.ajs -------------------------------------------------------------------------------- /scripts/Generate Capability Model.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Generate Capability Model.ajs -------------------------------------------------------------------------------- /scripts/Generate Meta Model from View.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Generate Meta Model from View.ajs -------------------------------------------------------------------------------- /scripts/Generate Meta Model.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Generate Meta Model.ajs -------------------------------------------------------------------------------- /scripts/Generate Model from Schema.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Generate Model from Schema.ajs -------------------------------------------------------------------------------- /scripts/Generate Model.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Generate Model.ajs -------------------------------------------------------------------------------- /scripts/Generate Strategy Model.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Generate Strategy Model.ajs -------------------------------------------------------------------------------- /scripts/Generate View from Meta Model.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Generate View from Meta Model.ajs -------------------------------------------------------------------------------- /scripts/Intelligent Model Analyzer.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Intelligent Model Analyzer.ajs -------------------------------------------------------------------------------- /scripts/LLMProvidersTest.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/LLMProvidersTest.ajs -------------------------------------------------------------------------------- /scripts/Layout using Dagre.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Layout using Dagre.ajs -------------------------------------------------------------------------------- /scripts/Layout.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Layout.ajs -------------------------------------------------------------------------------- /scripts/Menu.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Menu.ajs -------------------------------------------------------------------------------- /scripts/Model Health Check.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Model Health Check.ajs -------------------------------------------------------------------------------- /scripts/OllamaTest.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/OllamaTest.ajs -------------------------------------------------------------------------------- /scripts/OpenAITest.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/OpenAITest.ajs -------------------------------------------------------------------------------- /scripts/Publish View to Confluence.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Publish View to Confluence.ajs -------------------------------------------------------------------------------- /scripts/Remove all bend points.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Remove all bend points.ajs -------------------------------------------------------------------------------- /scripts/Settings.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Settings.ajs -------------------------------------------------------------------------------- /scripts/Smart Style Sync.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Smart Style Sync.ajs -------------------------------------------------------------------------------- /scripts/Spread relations orthogonally.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Spread relations orthogonally.ajs -------------------------------------------------------------------------------- /scripts/System Overview.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/System Overview.ajs -------------------------------------------------------------------------------- /scripts/Test JArchi Logger.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Test JArchi Logger.ajs -------------------------------------------------------------------------------- /scripts/Test JSON view.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Test JSON view.ajs -------------------------------------------------------------------------------- /scripts/Test charts.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Test charts.ajs -------------------------------------------------------------------------------- /scripts/Where used.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/Where used.ajs -------------------------------------------------------------------------------- /scripts/docs/tutorial-Documentation Augmenter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/docs/tutorial-Documentation Augmenter.html -------------------------------------------------------------------------------- /scripts/docs/tutorial-Expand Model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/docs/tutorial-Expand Model.html -------------------------------------------------------------------------------- /scripts/docs/tutorial-Export View to Draw.io.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/docs/tutorial-Export View to Draw.io.html -------------------------------------------------------------------------------- /scripts/docs/tutorial-Generate Capability Model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/docs/tutorial-Generate Capability Model.html -------------------------------------------------------------------------------- /scripts/docs/tutorial-Generate Meta Model from View.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/docs/tutorial-Generate Meta Model from View.html -------------------------------------------------------------------------------- /scripts/docs/tutorial-Generate Meta Model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/docs/tutorial-Generate Meta Model.html -------------------------------------------------------------------------------- /scripts/docs/tutorial-Generate Model from Schema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/docs/tutorial-Generate Model from Schema.html -------------------------------------------------------------------------------- /scripts/docs/tutorial-Generate Model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/docs/tutorial-Generate Model.html -------------------------------------------------------------------------------- /scripts/docs/tutorial-Generate Strategy Model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/docs/tutorial-Generate Strategy Model.html -------------------------------------------------------------------------------- /scripts/docs/tutorial-Generate View from Meta Model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/docs/tutorial-Generate View from Meta Model.html -------------------------------------------------------------------------------- /scripts/docs/tutorial-Layout using Dagre.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/docs/tutorial-Layout using Dagre.html -------------------------------------------------------------------------------- /scripts/docs/tutorial-Menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/docs/tutorial-Menu.html -------------------------------------------------------------------------------- /scripts/docs/tutorial-Model Health Check.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/docs/tutorial-Model Health Check.html -------------------------------------------------------------------------------- /scripts/docs/tutorial-Publish View to Confluence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/docs/tutorial-Publish View to Confluence.html -------------------------------------------------------------------------------- /scripts/docs/tutorial-Smart Style Sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/docs/tutorial-Smart Style Sync.html -------------------------------------------------------------------------------- /scripts/docs/tutorial-Where used.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/docs/tutorial-Where used.html -------------------------------------------------------------------------------- /scripts/lib/anthropicClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/anthropicClient.js -------------------------------------------------------------------------------- /scripts/lib/apiClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/apiClient.js -------------------------------------------------------------------------------- /scripts/lib/apiClientLegacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/apiClientLegacy.js -------------------------------------------------------------------------------- /scripts/lib/archiMateDrawIoMappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/archiMateDrawIoMappings.js -------------------------------------------------------------------------------- /scripts/lib/chartjsUtility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/chartjsUtility.js -------------------------------------------------------------------------------- /scripts/lib/commonStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/commonStyles.js -------------------------------------------------------------------------------- /scripts/lib/confluenceIntegration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/confluenceIntegration.js -------------------------------------------------------------------------------- /scripts/lib/doEach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/doEach.js -------------------------------------------------------------------------------- /scripts/lib/getUserPrompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/getUserPrompt.js -------------------------------------------------------------------------------- /scripts/lib/jarchiLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/jarchiLogger.js -------------------------------------------------------------------------------- /scripts/lib/layoutAlgorithms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/layoutAlgorithms.js -------------------------------------------------------------------------------- /scripts/lib/layoutDagre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/layoutDagre.js -------------------------------------------------------------------------------- /scripts/lib/llm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/llm.js -------------------------------------------------------------------------------- /scripts/lib/menuItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/menuItems.js -------------------------------------------------------------------------------- /scripts/lib/modelManipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/modelManipulation.js -------------------------------------------------------------------------------- /scripts/lib/modelTraversal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/modelTraversal.js -------------------------------------------------------------------------------- /scripts/lib/ollamaClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/ollamaClient.js -------------------------------------------------------------------------------- /scripts/lib/openaiClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/lib/openaiClient.js -------------------------------------------------------------------------------- /scripts/logTest.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/logTest.ajs -------------------------------------------------------------------------------- /scripts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/package-lock.json -------------------------------------------------------------------------------- /scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/package.json -------------------------------------------------------------------------------- /scripts/schemas/Application Layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/schemas/Application Layer.json -------------------------------------------------------------------------------- /scripts/schemas/Meta model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/schemas/Meta model.json -------------------------------------------------------------------------------- /scripts/schemas/Motivation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/schemas/Motivation.json -------------------------------------------------------------------------------- /scripts/schemas/Strategy meta model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/schemas/Strategy meta model.json -------------------------------------------------------------------------------- /scripts/schemas/Three layers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/schemas/Three layers.json -------------------------------------------------------------------------------- /scripts/size.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/size.ajs -------------------------------------------------------------------------------- /scripts/testClaude.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/testClaude.ajs -------------------------------------------------------------------------------- /scripts/testLLM.ajs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasRohde/archi-scripts/HEAD/scripts/testLLM.ajs --------------------------------------------------------------------------------