基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Bradliebs/ollama-agent-harness --skill git-workflow命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Systematic debugging for the Ollama Agent Harness — reproduce, localize, reduce, fix, guard
Security hardening for the Ollama Agent Harness — input validation, command injection, secrets, deny-first review
Build a new MCP (Model Context Protocol) server from scratch — a stdio program that exposes tools to AI agents. Use when the user wants to wrap an API, CLI, or internal service as an MCP server the harness (or Claude Desktop, Cursor, etc.) can load. Adapted from anthropics/skills.
| name | git-workflow |
| description | Git workflow for the Ollama Agent Harness — atomic commits, small changes, safe history |
| domain | git |
| confidence | medium |
| source | authored for harness gap-fill |
| triggers | ["commit this","write a commit message","git workflow","stage my changes"] |
Git workflow skill for the Ollama Agent Harness. Changes should land as small, self-contained commits that each leave the test suite green. The harness has destructive-action guardrails; this skill keeps history clean without bypassing them.
One logical change per commit. A subsystem fix, its regression test, and any directly-orphaned cleanup belong together; unrelated edits do not. Keep diffs reviewable — roughly one concern, not a grab bag.
fix permission deny ordering.context: cap oversized tool results.Run npm test (or the affected subset) before committing. Do not commit on a red bar. Stop-the-line: a broken build is fixed before new work stacks on it.
Review the diff before staging. Stage only files that belong to the current logical change. Never blanket-add build output, secrets, or unrelated edits.
Local rebasing and amending of unpushed commits is fine. Do not force-push shared branches, hard-reset away unfamiliar work, or amend published commits without explicit confirmation — these are hard to reverse.
git add src/permissions/evaluate.ts src/permissions/evaluate.test.ts
git commit -m "fix: deny rule must override more specific allow"
git status --short
git diff src/context/
git add -A that sweeps in build artifacts or stray edits.