Skip to main content
Manusで任意のスキルを実行
ワンクリックで
RALaBarge
GitHub クリエイタープロフィール

RALaBarge

2 件の GitHub リポジトリにある 13 件の収集済み skills をリポジトリ単位で表示します。

収集済み skills
13
リポジトリ
2
更新
2026-05-19
リポジトリエクスプローラー

リポジトリと代表的な skills

lxc-ops
ソフトウェア開発者

Use when the user wants to deploy / test / restart / debug BeigeBox running in the `beigebox` LXC on the debian host — i.e. "sync source to the LXC", "test in the LXC venv", "restart beigebox", "spawn a long-running task in the LXC", "we have root pane 1", "run pytest in beigebox", "deploy this branch", "what's the LXC's IP". Captures the operational pattern Claude actually uses to drive that LXC from a non-root agent on the debian host. Skip this skill for single-machine / non-LXC tasks; skip for the pop-os Docker BeigeBox.

2026-05-19
operator
ソフトウェア開発者

Agentic task loop. Routes all completions through BeigeBox /v1/chat/completions and all tool calls through /mcp so wiretap captures the full session. Use this to drive multi-step tasks with file access, bash execution, and any registered BeigeBox tool.

2026-05-19
host-audit
ネットワーク・コンピュータシステム管理者

Use when the user wants to audit / profile / fingerprint one or more machines to learn OS, hardware, network interfaces, installed virtualization stacks, running containers/VMs, and listening services. Takes a list of targets — local, SSH alias, user@host, or user:password@host — and works against Linux and macOS regardless of authentication style. Produces a markdown report (default), JSON, or a CLAUDE.md-ready section.

2026-04-29
host-notes
ソフトウェア開発者

Use to load or update accumulated per-host operator knowledge for the BeigeBox project's LAN hosts (pop-os, dssh/debian, assh/mac). Auto-loads at session start when the user references a known host. Auto-reflects at compaction. Notes capture non-obvious, transcript-validated facts (sudo quirks, container IPs, undocumented service contracts) — never secrets, never anything derivable from man/--help.

2026-04-29
make-skill
ソフトウェア開発者

Use when the user says "make a skill that …", "write a skill for …", "I need a skill that does …", "package this as a skill", or "automate this as a skill" — i.e. wants to turn a recurring task into a new entry under `beigebox/skills/<name>/`. Produces a skill directory in the house style of `services-inventory` and `host-audit`: YAML frontmatter with a `Use when …` description, a `When to invoke` trigger list, a `Usage` block, and (when the skill does deterministic work) a `scripts/` dir with an executable. Run `scripts/scaffold.sh <name>` to stub the layout.

2026-04-29
make-tool
ソフトウェア開発者

Use when the user says "make a tool that …", "write a tool for …", "I need a tool that does …", "add a tool to BeigeBox", or describes a capability the decision LLM should be able to invoke (search, fetch, lookup, parse, automate). Produces a new tool module under `beigebox/tools/<name>.py` plus the registry hook in `beigebox/tools/registry.py` and a `tools.<name>:` config block in `config.yaml`. Tools are Python classes with a `description` attribute and a single `run(self, input_str: str) -> str` entrypoint, returning user-facing strings (errors included) — they never raise to the caller.

2026-04-29
services-inventory
ソフトウェア開発者

Use when the user asks what services/containers/VMs are running, how to connect to something (URL, IP, shell), or wants an inventory of endpoints across local and remote hosts. Works on Linux and macOS. Probes Docker, Podman, Incus, LXD, classic LXC, libvirt, systemd-nspawn, OrbStack, Colima, Multipass, VirtualBox, Parallels, VMware Fusion, and Tart. Supports SSH to remote hosts and emits either a human table or JSON.

2026-04-29
static
情報セキュリティアナリスト

Use when the user wants static analysis / SAST / type-checking / lint-with-teeth / dependency-CVE / secrets scanning on a Python codebase — finding security smells, logic bugs, type errors, vulnerable deps, and leaked credentials without running the code. Wraps ruff (full ruleset including bandit-port S rules), semgrep (registry-backed pattern + dataflow rules), mypy (type checking), pip-audit (SCA / dependency CVE scanning against OSV), and detect-secrets (credential / API-key leaks in source). Emits garlicpress-shape findings so the output merges with fuzz/static pipelines without translation. Five non-overlapping categories: ruff covers AST patterns + bandit; semgrep covers cross-file dataflow; mypy covers types; pip-audit covers known-CVE deps; detect-secrets covers leaked credentials. Skip bandit (ruff -S already covers it).

2026-04-29
fanout
ソフトウェア開発者

Use when the user wants to fan-out / distribute / split / parallelize a list of inputs across multiple model calls so a single oversized prompt doesn't blow the context or token budget — especially relevant for reasoning models (trinity-large-thinking, deepseek-r1, o3) whose internal reasoning consumes the budget before any visible output. Takes a list of items, a per-item prompt template, and a model; runs N parallel calls against the BeigeBox proxy with a configurable concurrency cap; optionally reduces the responses with a final merge call. Item sources are file (one per line), JSON list, glob (each match becomes {path, contents}), or stdin.

2026-04-28
fuzz
ソフトウェア品質保証アナリスト・テスター

Use when the user wants to fuzz / find DOS or crash bugs in / dynamic-analyze a Python repository, or wants the dynamic complement to a static-analysis pass (garlicpress, Trinity). Walks the repo, picks the highest-risk fuzzable functions, runs each in an isolated subprocess harness with a mutation loop seeded from docstrings + parser edge cases, and emits garlicpress-shape Finding dicts. Python-only; output is JSON or a one-line-per-finding summary.

2026-04-28
static
ソフトウェア品質保証アナリスト・テスター

Use when the user wants static analysis / SAST / type-checking / lint-with-teeth on a Python codebase — finding security smells, logic bugs, type errors, obvious defects without running the code. Wraps ruff (full ruleset including the bandit-port S rules), semgrep (registry-backed pattern + dataflow rules), and mypy (type checking). Emits garlicpress-shape findings so the output merges with fuzz/static pipelines without translation. Three categories, not duplicates: ruff covers AST patterns + bandit; semgrep covers cross-file dataflow; mypy covers types. Skip bandit (ruff -S already covers it).

2026-04-28
host-audit
ネットワーク・コンピュータシステム管理者

Use when the user wants to audit / profile / fingerprint one or more machines to learn OS, hardware, network interfaces, installed virtualization stacks, running containers/VMs, and listening services. Takes a list of targets — local, SSH alias, user@host, or user:password@host — and works against Linux and macOS regardless of authentication style. Produces a markdown report (default), JSON, or a CLAUDE.md-ready section.

2026-04-25
services-inventory
ネットワーク・コンピュータシステム管理者

Use when the user asks what services/containers/VMs are running, how to connect to something (URL, IP, shell), or wants an inventory of endpoints across local and remote hosts. Works on Linux and macOS. Probes Docker, Podman, Incus, LXD, classic LXC, libvirt, systemd-nspawn, OrbStack, Colima, Multipass, VirtualBox, Parallels, VMware Fusion, and Tart. Supports SSH to remote hosts and emits either a human table or JSON.

2026-04-25
2 件中 2 件のリポジトリを表示
すべてのリポジトリを表示しました