Audits every function's interaction with the C1-shadowed commands (uses-shadow/bypasses-shadow) and general hazards (destructive, network, blocking-prompt) per the CLASSIFICATION schema. Delegated the initial mechanical sweep to agy, then reviewed every file by hand: fixed a systemic double-blank-comment-line formatting bug from the delegate pass, and corrected several judgment errors found on review -- three false blocking-prompt tags where a fish 'read' was consuming piped input rather than waiting on a terminal (open-url.fish, sbver.fish, play-media.fish, now untagged entirely), a blocking-prompt tag on mkrep.fish despite its documented --yes escape hatch, an untagged read in jobrunner.fish's own baseless blocking-prompt claim (removed, along with a destructive tag on cleanup of its own mktemp output -- the schema explicitly excludes that), the same own-output-cleanup false positive on _zellij_dump_log.fish's destructive tag, an interactive fzf-gated confirmation on logs.fish and replay.fish's piped read misread the same way as the first three, and a uses-shadow(mkdir) on mkcd.fish that actually belongs to the _fish_mkdir_p helper it delegates to, not to mkcd itself.
58 lines
1.7 KiB
Fish
58 lines
1.7 KiB
Fish
# Copyright (C) 2026 Rootiest
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
# CATEGORY
|
|
# 12-ai-and-developer-tools
|
|
#
|
|
# COMPONENT
|
|
# aliases/dev-tools
|
|
#
|
|
# DEPENDENCIES
|
|
# agents-init, agents-vault
|
|
#
|
|
# CLASSIFICATION
|
|
# bypasses-shadow(claude)
|
|
#
|
|
# SYNOPSIS
|
|
# claude [ARGS...]
|
|
#
|
|
# DESCRIPTION
|
|
# Wrapper for the claude CLI that ensures the AGENTS/ sub-repository is
|
|
# initialized and any agent-made changes are committed before launch.
|
|
# Delegates all scaffold and commit logic to agents-init --quiet (full
|
|
# setup), which ensures AGENTS/ is scaffolded and CLAUDE.md is symlinked
|
|
# to AGENTS/AGENTS.md in the current project.
|
|
#
|
|
# Also syncs the host-scoped agent memory vault (agents-vault), which
|
|
# tracks curated memory living outside the project tree. The vault
|
|
# commits on launch but does not push; pushing happens from the Claude
|
|
# Code SessionEnd hook or an explicit agents-vault --push.
|
|
#
|
|
# All arguments are forwarded verbatim to the real claude binary.
|
|
#
|
|
# Opinionated component (C1): when disabled via __fish_config_op_aliases
|
|
# (or the __fish_config_opinionated master), the command is passed through
|
|
# to the real claude binary unchanged.
|
|
#
|
|
# ARGUMENTS
|
|
# ARGS Any arguments forwarded verbatim to the underlying claude binary
|
|
#
|
|
# EXIT STATUS
|
|
# Exit status of the underlying claude binary
|
|
#
|
|
# EXAMPLE
|
|
# claude
|
|
# claude --resume
|
|
# claude "Explain the recent changes"
|
|
function claude --wraps=claude --description 'claude wrapper: auto-links AGENTS.md as CLAUDE.md'
|
|
if not __fish_config_op_enabled (status current-function)
|
|
command claude $argv
|
|
return $status
|
|
end
|
|
|
|
agents-init --quiet
|
|
agents-vault --quiet
|
|
|
|
command claude $argv
|
|
end
|