From 8012f55a3fbd114861045cebaa71070deb08ec9d Mon Sep 17 00:00:00 2001 From: Jeff Haynie Date: Mon, 12 May 2025 09:53:01 -0500 Subject: [PATCH] Cleanup: remove old vscode settings, move release to use blacksmith now that we dont need MSI build --- .github/workflows/release.yml | 2 +- .vscode/agentuity-schema.json | 86 ----------------------------------- .vscode/settings.json | 8 +--- 3 files changed, 2 insertions(+), 94 deletions(-) delete mode 100644 .vscode/agentuity-schema.json diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2226a768..88f163c6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ permissions: jobs: release: - runs-on: windows-latest # required to use wix + runs-on: blacksmith-4vcpu-ubuntu-2204 steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.vscode/agentuity-schema.json b/.vscode/agentuity-schema.json deleted file mode 100644 index 46043b84..00000000 --- a/.vscode/agentuity-schema.json +++ /dev/null @@ -1,86 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema#", - "title": "Agentuity Template Schema", - "description": "Schema for Agentuity templates.yaml file", - "type": "array", - "items": { - "$ref": "#/definitions/Template" - }, - "definitions": { - "Template": { - "type": "object", - "required": ["name", "description", "identifier", "language", "requirements"], - "properties": { - "name": { - "type": "string", - "description": "Display name of the template" - }, - "description": { - "type": "string", - "description": "Description of the template" - }, - "identifier": { - "type": "string", - "description": "Unique identifier for the template" - }, - "language": { - "type": "string", - "description": "Programming language used by the template" - }, - "requirements": { - "type": "array", - "description": "List of requirements for the template", - "items": { - "$ref": "#/definitions/Requirement" - } - } - } - }, - "Requirement": { - "type": "object", - "required": ["command", "version"], - "properties": { - "command": { - "type": "string", - "description": "Command to check for" - }, - "args": { - "type": "array", - "description": "Arguments to pass to the command", - "items": { - "type": "string" - } - }, - "version": { - "type": "string", - "description": "Version constraint for the command" - }, - "brew": { - "type": "string", - "description": "Homebrew formula to install the command" - }, - "url": { - "type": "string", - "description": "URL to download the command" - }, - "selfupdate": { - "type": "object", - "description": "Self-update configuration", - "properties": { - "command": { - "type": "string", - "description": "Command to run for self-update" - }, - "args": { - "type": "array", - "description": "Arguments to pass to the self-update command", - "items": { - "type": "string" - } - } - } - } - } - } - } -} diff --git a/.vscode/settings.json b/.vscode/settings.json index 92cf8b0e..242d5dfc 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,16 +1,10 @@ { "files.associations": { - "*.ts": "typescript", - "**/internal/templates/data/**/*.yaml": "yaml" + "*.ts": "typescript" }, "[typescript]": { "editor.formatOnSave": false }, - "yaml.schemas": { - ".vscode/agentuity-schema.json": [ - "**/internal/templates/data/templates.yaml" - ] - }, "yaml.validate": true, "yaml.customTags": [ "!include scalar",