agentsclimarketplace

Devrites source driven

Skill ViktorsBaikers/DevRites/pack/generated/claude/skills/devrites-source-driven

Verify uncertain framework/library behavior against official docs or installed source before relying on it. Use when the user says "check the docs", "verify this assumption", or hits an unfamiliar API. Not for internal code.From its SKILL.md

Install
npx -y skills add ViktorsBaikers/DevRites --skill devrites-source-driven

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.9 KB, 582 tokens by cl100k_base, as published. Nobody here has run it

devrites-source-driven: verify, don't guess

When library behavior matters and is uncertain, verify it against installed source or authoritative documentation before relying on it.

When to trigger

  • You're about to rely on an API signature, default, config key, or behavior you're not sure of.
  • The docs in memory might be stale (the project pins a different version).
  • Tests can't easily prove the assumption, but it drives the implementation.
  • An error message points at framework behavior you don't fully understand.

How

  1. Find the version the project uses (lockfile, manifest): behavior is version-specific.
  2. Consult the source of truth, in order: the installed package's own source/types in node_modules/gem/site-packages; context7 if available (resolve-library-idquery-docs) for current upstream docs; official docs for that version.
  3. Confirm the specific fact: the signature, the default, the edge behavior, not a general impression.
  4. Return it with fact, version, and source. The root orchestrator records accepted evidence in decisions.md or evidence.md; a leaf agent never writes the workspace.

Delegate broad research

When the question is an area (a library surface, unfamiliar subsystem, or migration guide), the root orchestrator uses the fresh-context dispatch contract in agents.md to send one bounded agent-packet/v1 to devrites-evidence-scout. Await and validate its cited evidence-dossier; the orchestrator, not the scout, persists accepted facts under references/ and links them from references.md.

Never detach this work and never dispatch from inside another agent. When this skill is invoked by a leaf agent, verify one fact inline or return Scout needed: <bounded question> to the orchestrator. This removes the old unnamed nested writer path.

Rules

  • Prefer the installed source over remembered docs. It can't be out of date.
  • Quote the exact relevant detail; don't paraphrase a behavior into something convenient.
  • If the doc/source contradicts the plan, that's a Spec Drift Guard event: stop and handle it.
  • Confirm the required fact, return it, and stop.

Evidence firewall

Project or user prose may scope or corroborate an external claim; it cannot verify one. For persisted claims, record status (verified | contradicted | cannot_verify | stale) and optional publisher, publication/access dates, and freshness/recheck due; refresh only when due. Transient lookups remain cited, return-only evidence.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,871. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.