Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/instructions/memory.instruction.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
applyTo: '**'
---

Remembered number: 42
Remembered number: 42
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
cache: 'npm'
- run: npm ci
- run: npm run build:prompts
- run: npx prettier --check "src/**/*.{ts,tsx}"
- run: npx prettier --check .
- run: npx eslint src/
- run: npm run lint # TypeScript type checking

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ name: Release Maestro
on:
push:
tags:
- 'v*.*.*' # Semantic version tags (e.g., v1.0.0)
- '20*' # Date-based tags (e.g., 2025-11-27)
- 'v*.*.*' # Semantic version tags (e.g., v1.0.0)
- '20*' # Date-based tags (e.g., 2025-11-27)
workflow_dispatch:

permissions:
Expand Down Expand Up @@ -412,7 +412,7 @@ jobs:
npm_config_arch: arm64
npm_config_target_arch: arm64
npm_config_build_from_source: true
USE_SYSTEM_FPM: "true"
USE_SYSTEM_FPM: 'true'
BUILD_VERSION: ${{ steps.version.outputs.VERSION }}
run: |
# Critical: Clean build directories to force fresh compilation
Expand Down Expand Up @@ -729,7 +729,7 @@ jobs:
with:
webhook: ${{ secrets.DISCORD_WEBHOOK_URL }}
nodetail: true
title: "🎉 Maestro ${{ github.ref_name }} Released!"
title: '🎉 Maestro ${{ github.ref_name }} Released!'
description: |
${{ steps.release_notes.outputs.notes }}

Expand Down
12 changes: 6 additions & 6 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"useTabs": true,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
"useTabs": true,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
}
Loading