ea3f1e70c6
Thin adaptor declaring @molecule-ai/mcp-image-gen (npx). Not privileged — any workspace; cost bounded by org credits. Tools: generate_image/edit_image/list_image_models. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
19 lines
731 B
YAML
19 lines
731 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches: ['**']
|
|
pull_request:
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Validate manifest + settings fragment
|
|
run: |
|
|
python3 -c "import yaml; m=yaml.safe_load(open('plugin.yaml')); assert m['name'] and m['runtimes'], 'plugin.yaml missing name/runtimes'; print('plugin.yaml ok:', m['name'])"
|
|
python3 -c "import json; s=json.load(open('settings-fragment.json')); assert 'molecule-image-gen' in s['mcpServers'], 'missing mcp server'; print('settings-fragment ok')"
|
|
- name: Shellcheck setup.sh
|
|
run: |
|
|
sudo apt-get update -qq && sudo apt-get install -y shellcheck
|
|
shellcheck setup.sh
|