Cooked.wiki MCP server
0

Configure Feed

Select the types of activity you want to include in your feed.

amp: add orb setup

Amolith (Jul 11, 2026, 10:54 AM -0600) e77a9c04 7bcddd4d

+21
+18
.agents/setup
··· 1 + #!/usr/bin/env bash 2 + 3 + set -euo pipefail 4 + 5 + if ! command -v mise >/dev/null 2>&1; then 6 + curl -fsSL https://mise.run | sh 7 + fi 8 + 9 + export PATH="$HOME/.local/bin:$HOME/.local/share/mise/shims:$PATH" 10 + 11 + mise trust "$PWD/mise.toml" 12 + mise install 13 + 14 + profile="$HOME/.profile" 15 + shims_path='export PATH="$HOME/.local/bin:$HOME/.local/share/mise/shims:$PATH"' 16 + if ! grep -Fqx "$shims_path" "$profile" 2>/dev/null; then 17 + printf '\n%s\n' "$shims_path" >> "$profile" 18 + fi
+3
.agents/setup.license
··· 1 + SPDX-FileCopyrightText: Amolith <amolith@secluded.site> 2 + 3 + SPDX-License-Identifier: CC0-1.0