The gpt5-server MCP in the nicknisi/consultant plugin does not read a model from an environment variable. It accepts model as a per-call argument, with 'gpt-5' hardcoded as the Zod default and the || fallback in callGPT5.
So you set it one of three ways.
Pass model in the tool args when invoking it directly:
| #!/bin/bash | |
| # overnight-ce.sh — Queue GitHub issues, run each through /slfg overnight. | |
| # Review PRs over morning coffee. ☕ | |
| # | |
| # Usage: | |
| # ./overnight-ce.sh # all issues labeled "agent-ready" | |
| # ./overnight-ce.sh --limit 5 # cap at 5 | |
| # ./overnight-ce.sh --label "priority" # different label | |
| # ./overnight-ce.sh --dry-run # preview only | |
| # |
| #!/bin/bash | |
| # gh-worktree - Create or delete a git worktree from a GitHub issue | |
| # Requires: gh CLI (authenticated) | |
| set -e | |
| usage() { | |
| echo "Usage: gh-worktree [-t type] [issue_number] [base_branch]" | |
| echo " gh-worktree -d <issue_number>" | |
| echo "" |
A set of GitHub Actions workflows that use claude-code-action enhanced with the Compound Engineering plugin to automate issue triage, planning, fixing, and end-to-end resolution — all driven by GitHub issue labels.
These workflows go beyond basic Claude Code Action by integrating the Compound Engineering plugin — a set of slash commands that give Claude structured, battle-tested workflows for planning and implementation:
| Command | What it does | Used in |
|---|
| ❯ npx tsx scripts/testCompanyNameValidatorAgent.ts | |
| { | |
| role: 'assistant', | |
| content: '{"score":100,"reason":"Apple is a well-known and established technology company famous for its products like the iPhone, MacBook, and Apple Watch. It is widely recognized globally, making it undoubtedly a real company."}', | |
| refusal: null, | |
| tool_calls: [], | |
| parsed: { | |
| score: 100, | |
| reason: 'Apple is a well-known and established technology company famous for its products like the iPhone, MacBook, and Apple Watch. It is widely recognized globally, making it undoubtedly a real company.' |
| #!/usr/bin/env -S uv run --script | |
| # /// script | |
| # requires-python = ">=3.11,<3.13" | |
| # dependencies = [] | |
| # /// | |
| # -*- coding: python -*- | |
| # cd work/crewai-giggs-experiments | |
| # uvx crewai create crew <project-name> |
| #!/usr/bin/python | |
| # | |
| # This script fetches the current open tabs in all Safari windows. | |
| # Useful to run remotely on your mac when you are at work and want | |
| # to read a page you have open (remotely) at home but don't remember | |
| # the url but can log in to your home system on the cmmand line | |
| # | |
| import sys |
Let's say we've removed a Lambda Layer from the Lambda Console and are no longer able to perform operations using the Amplify CLI.
An error occurred fetching the latest layer version metadata for ""
> amplify remove function
? Choose the resource you would want to remove 10263layer58c94806 (layer)
When you delete a layer version, you can no longer configure functions to use it.
However, any function that already uses the layer version continues to have access to it.
✖ Loading layer data from the cloud...
| /// <reference types="cypress" /> | |
| import _ from "lodash"; | |
| import path from "path"; | |
| import axios from "axios"; | |
| import dotenv from "dotenv"; | |
| import Promise from "bluebird"; | |
| import { percyHealthCheck } from "@percy/cypress/task"; | |
| import codeCoverageTask from "@cypress/code-coverage/task"; |