i18n/de/skills/forage-resources/SKILL.md
Anwenden ant colony optimization and foraging theory to resource search, exploration-exploitation tradeoffs, and distributed discovery. Covers scout deployment, trail reinforcement, diminishing returns detection, and adaptive foraging strategy selection. Verwenden wenn searching a large solution space where brute-force enumeration is impractical, balancing investment zwischen exploring new approaches and deepening known good ones, optimizing resource allocation across uncertain opportunities, or diagnosing premature convergence on local optima.
npx skillsauth add pjt222/agent-almanac forage-resourcesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Anwenden foraging theory and ant colony optimization to systematically search for, evaluate, and exploit distributed resources — balancing exploration of unknown territory with exploitation of known yields.
coordinate-swarm with specific resource-discovery patternsCharacterize the resource environment to select appropriate foraging strategy.
coordinate-swarm for signal design)Erwartet: A characterized foraging landscape with resource distribution type, information availability, and cost structure. This determines which foraging model to apply.
Bei Fehler: If the landscape is vollstaendig unknown, start with maximum exploration (all scouts, no exploitation) for a fixed time budget to build an initial map. Switch to the appropriate model once the landscape character becomes clear.
Senden exploratory agents into the search space with instructions to mark what they find.
Erwartet: Scouts deployed across the search space, depositing trail signals proportional to resource quality. The initial map of the landscape begins to emerge from scout reports.
Bei Fehler: If scouts find nothing in the initial sweep, either the scout percentage is too low (increase to 50%), the search pattern is wrong (switch from random walk to Levy flight for patchy resources), or the quality assessment is miscalibrated (lower the detection threshold).
Erstellen positive feedback loops that amplify successful paths and let unsuccessful ones fade.
Trail Reinforcement Dynamics:
┌─────────────────────────────────────────────────────────────────────┐
│ │
│ Strong trail ──→ More foragers ──→ If good: reinforce ──→ EXPLOIT │
│ ↑ │ │
│ │ If bad: no reinforce │ │
│ │ │ │ │
│ │ ↓ │ │
│ Decay ←── Weak trail ←── Fewer foragers ←── Trail fades │ │
│ │ │ │
│ ↓ │ │
│ No trail ──→ Scouts explore ──→ New discovery ──→ New trail ↗ │
│ │
└─────────────────────────────────────────────────────────────────────┘
Erwartet: A self-regulating feedback loop where good resources attract increasing attention and poor resources are naturally abandoned. The system balances exploitation and exploration durch trail dynamics alone.
Bei Fehler: If all foragers converge on a single trail (premature convergence), the decay rate is too slow or the saturation cap is too high. Increase decay, lower the cap, or introduce random exploration mandates (e.g., 10% of foragers always ignore trails). If trails fade too fast and nothing gets exploited, reduce the decay rate.
Ueberwachen resource yields to know when to shift from exploitation back to exploration.
Erwartet: The foraging swarm naturally shifts zwischen exploitation phases (concentrated on known-good sites) and exploration phases (scouts dispersed), driven by yield monitoring anstatt arbitrary schedules.
Bei Fehler: If the swarm stays on depleted sites too long, the marginal value threshold is set too low or the travel cost estimate is too high. Recalibrate by comparing actual yield rates. If the swarm abandons good sites too early, the threshold is too sensitive — add a smoothing window to the yield measurement.
Auswaehlen and switch zwischen foraging strategies basierend auf environmental feedback.
Erwartet: A foraging system that adapts its exploration-exploitation balance to the current environment, maintaining effectiveness as conditions change.
Bei Fehler: If strategy adaptation itself becomes unstable (oscillating zwischen exploration and exploitation), add damping: require the mismatch signal to persist for N time units vor triggering a strategy shift. If no strategy seems to work, reassess the landscape characterization from Step 1 — the resource distribution kann more complex than initially assumed.
coordinate-swarm — foundational coordination patterns that underpin foraging signal designbuild-consensus — used when the swarm must collectively agree on which resource patches to prioritizescale-colony — scaling foraging operations when the resource landscape or swarm size growsassess-form — morphic skill for evaluating the current state of a system, complementary to landscape assessmentconfigure-alerting-rules — alerting patterns applicable to diminishing returns detectionplan-capacity — capacity planning shares the explore-exploit framing with foraging theoryforage-solutions — AI self-application variant; maps ant colony foraging to single-agent solution exploration with scout hypotheses and trail reinforcementtesting
Launch all available agents in parallel waves for open-ended hypothesis generation on problems where the correct domain is unknown. Use when facing a cross-domain problem with no clear starting point, when single-agent approaches have stalled, or when diverse perspectives are more valuable than deep expertise. Produces a ranked hypothesis set with convergence analysis and adversarial refinement.
tools
Write integration tests for a Node.js CLI application using the built-in node:test module. Covers the exec helper pattern, output assertions, filesystem state verification, cleanup hooks, JSON output parsing, error case testing, and state restoration after destructive tests. Use when adding tests to an existing CLI, testing a new command, verifying adapter behavior across frameworks, or setting up CI for a CLI tool.
development
Screen a proposed trademark for conflicts and distinctiveness before filing. Covers trademark database searches (TMview, WIPO Global Brand Database, USPTO TESS), distinctiveness analysis using the Abercrombie spectrum, likelihood of confusion assessment using DuPont factors and EUIPO relative grounds, common law rights evaluation, and goods/services overlap analysis. Produces a conflict report with a risk matrix. Use before adopting a new brand name, logo, or slogan — distinct from patent prior art search, which uses different databases, legal frameworks, and analysis methods.
tools
Scaffold a new CLI command using Commander.js with options, action handler, three output modes (human-readable, quiet, JSON), and optional ceremony variant. Covers command naming, option design, shared context patterns, error handling, and integration testing. Use when adding a command to an existing Commander.js CLI, designing a new CLI tool from scratch, or standardizing command structure across a multi-command CLI.