一键导入
foolfad-config
Use this to check or configure auth and config state on a remote device via a Foolfad transport -- this is `foolfad-configure`.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use this to check or configure auth and config state on a remote device via a Foolfad transport -- this is `foolfad-configure`.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | foolfad-config |
| description | Use this to check or configure auth and config state on a remote device via a Foolfad transport -- this is `foolfad-configure`. |
Use foolfad-configure when the user wants to check or seed known remote tool config or auth state
through a Foolfad-style transport. It configures interactive tool state on the remote; it is not a
declarative machine configuration system.
The transport uses the same contract as Foolfad: one local command reads a bash script from stdin,
runs it on the remote under bash, and forwards stdout, stderr, and exit status. Pass it with
--transport or set FOOLFAD_CONFIG_TRANSPORT.
export FOOLFAD_CONFIG_TRANSPORT='foolfad-ssh box'
foolfad-configure gh check
foolfad-configure gh configure
Each target owns its own checks, mutation options, and reporting fields. The current targets are
gh and codex.
The gh target checks or configures GitHub CLI auth, GitHub git credential setup, and global git
identity on the remote.
Use gh check when the user asks whether the remote is ready:
foolfad-configure --transport "foolfad-ssh box" gh check
The remote must have gh, git, and jq on PATH. Its GitHub CLI config directory and global git
config must be writable or creatable.
Use gh configure to seed auth and optional identity:
foolfad-configure --transport "foolfad-ssh box" gh configure \
--git-user-name "User Name" \
--git-user-email "user@example.com"
In interactive mode, if no token is passed, the local command tries
gh auth token --hostname github.com. If no local token is available, it starts
gh auth login --hostname github.com --web locally and then reads the token. The token is sent over
the transport to run gh auth login --with-token on the remote, followed by gh auth setup-git.
For noninteractive or scripted use, pass JSON mode and provide all mutation data explicitly. For
gh configure, this means passing the token:
foolfad-configure --json --transport "foolfad-ssh box" gh configure --token "$GITHUB_TOKEN"
Never print or paste token values in the final response. Report only whether configuration succeeded, the transport/remote used, the authenticated account when shown, and the resulting git identity or credential helper fields.
The codex target checks or configures Codex CLI auth on the remote by applying Codex's own
auth.json device-login artifact.
Use codex check when the user asks whether remote Codex is logged in:
foolfad-configure --transport "foolfad-ssh box" codex check
The remote must have codex and jq on PATH, and its CODEX_HOME or default ~/.codex must be
writable or creatable.
Use codex configure to seed remote Codex auth without logging in on the remote:
foolfad-configure --transport "foolfad-ssh box" codex configure
In interactive mode, the local command runs codex login --device-auth under an isolated scratch
CODEX_HOME, reads only the scratch auth.json, removes the scratch home, and sends that artifact
over the transport. This must not read, overwrite, refresh, or log out the user's ordinary host
~/.codex credentials.
For noninteractive or scripted use, pass JSON mode and provide the complete auth artifact explicitly:
foolfad-configure --json --transport "foolfad-ssh box" codex configure --auth-json-file ./auth.json
Do not use codex login --with-access-token, OpenAI enterprise access tokens, or access-token
handoff for this target. Never print or paste Codex auth artifact contents in the final response.
Report only whether configuration succeeded and the resulting authenticated, codexHome,
authJsonPresent, and loginStatus fields.
--transport COMMAND STRING selects the remote transport for one invocation.FOOLFAD_CONFIG_TRANSPORT provides the default transport command.--json makes CLI output machine-readable and disables interactive completion of missing mutation
data.gh configure --token TOKEN supplies the GitHub token directly.gh configure --git-user-name NAME sets remote global git config user.name.gh configure --git-user-email EMAIL sets remote global git config user.email.codex configure --auth-json-file PATH supplies a Codex auth.json artifact for noninteractive
configuration.After gh check, report whether the remote is ready and name any missing requirement.
After gh configure, report:
gh configure.foolfad-ssh box.gh is authenticated.If the transport fails, say which transport command was used and include the error detail from
foolfad-configure.
After codex check or codex configure, report:
codex configure.foolfad-ssh box.auth.json is present, and the login status text when shown.Never include auth.json contents.
Use when the user wants to run a long or resource-heavy task on another computer so their local machine stays free, the work continues if they close their laptop or lose connection, and the result returns as a reviewable branch in their project. Use this skill also when no offload target exists yet and the user needs help setting one up.
Use for dispatching a command from the current git repo to a remote machine in order to offload work for execution.
Clone GitHub repos on this machine with ghwc: canonical owner/repo casing, shared bare clone, branch-named sibling worktrees under ~/Projects.
Use this skill for any task involving the ambit CLI: creating or destroying private networks, deploying apps to a private network, checking network or router health, listing routers, diagnosing connectivity problems, managing app secrets, or streaming app logs. Trigger phrases include "create a network", "set up ambit", "deploy with ambit", "ambit create", "ambit deploy", "ambit doctor", "check router status", "destroy a network", "managing app secrets", "streaming app logs", and similar.
Use when inspecting state, output, completion, or worktree activity for Codex goal runs launched by Boondoggle.
Use when launching a persistent Codex goal run with `boondoggle` from a prompt on stdin.