Skip to main content
在 Manus 中运行任何 Skill
一键导入
GitHub 仓库

ai-harness-workshop-demo

ai-harness-workshop-demo 收录了来自 orlovskiy-artem 的 12 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
12
Stars
3
更新
2026-06-19
Forks
0
职业覆盖
1 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

netwatch
软件开发工程师

Use when the user says "netwatch" or asks to measure network stats (ping latency, packet loss, interface throughput) in the background. Launches a background subagent via the `task` tool that runs ~20s of measurements, then returns control immediately so the user can keep talking. Demonstrates background subagent invocation in opencode.

2026-06-19
sieve-render
软件开发工程师

Private sieve subskill. Invoked by the sieve controller after each pass; not user-invocable. Reads sieve.state and draws the current grid — remaining primes vs. struck (composite) numbers.

2026-06-19
sieve
软件开发工程师

Demonstrates cyclic skill invocation — runs the Sieve of Eratosthenes by invoking a private "strike" subskill once per prime, re-rendering a visual grid after each pass. Takes an upper limit n. Use to show one skill invoking another skill N times in a loop.

2026-06-19
sieve-strike
软件开发工程师

Private sieve subskill. Invoked by the sieve controller once per prime; not user-invocable. Strikes the multiples of a single prime p out of the sieve and records them in sieve.state.

2026-06-19
syscheck
软件开发工程师

Use when the user says "syscheck" or asks for a parallel system health check. Fans out THREE subagents at once via the Agent tool — one checks CPU, one network, one memory — using only safe read-only commands, then synthesizes their results into one report. Demonstrates parallel subagent fan-out in Claude Code.

2026-06-19
syscheck
软件开发工程师

Use when the user says "syscheck" or asks for a parallel system health check. Fans out THREE subagents via the `task` tool — one checks CPU, one network, one memory — using only safe read-only commands, then synthesizes their results into one report. Demonstrates parallel subagent fan-out in opencode.

2026-06-19
bfs-traverse
软件开发工程师

Demonstrates recursive self-invocation with a depth limit. Performs a breadth-first (level-order) traversal of the decision tree in tree.json by invoking ITSELF once per level — each call expands the current frontier and recurses on the next, stopping at a maximum depth. Takes an optional max depth.

2026-06-19
dfs-guess
软件开发工程师

Demonstrates recursive self-invocation as a depth-first descent — a "20 questions" guesser. Walks the decision tree in tree.json by asking the user one yes/no question per node and invoking ITSELF on the chosen child, going deeper until it reaches a leaf entity and guesses it.

2026-06-19
calc-pipeline
软件开发工程师

Demonstrates passing arguments through a chain of skills. Takes two numbers (the legs of a right triangle) and computes the hypotenuse √(a²+b²) across three private stages, each its own skill. Use to show sequential skill execution with argument passing.

2026-06-19
calc-step-a
软件开发工程师

Private calc stage A (sum of squares). Invoked by calc-pipeline with two numbers as its argument; not meant to be run directly by the user. Computes a²+b² and hands off to stage B.

2026-06-19
calc-step-b
软件开发工程师

Private calc stage B (square root). Invoked by stage A with the sum of squares as its argument; not user-invocable. Computes √s and hands off to stage C.

2026-06-19
calc-step-c
软件开发工程师

Private calc stage C (round & classify). Invoked by stage B with the hypotenuse as its argument; not user-invocable. Final stage: rounds, classifies, reports the full log, and ends the chain.

2026-06-19