Learn-skills.dev agently-model-response

Use when the user wants to reuse one model result, read text/data/meta without re-requesting, or stream partial updates, including `get_response()`, async getters, `delta`, `instant`, and `specific`.

install
source · Clone the upstream repo
git clone https://github.com/NeverSight/learn-skills.dev
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/NeverSight/learn-skills.dev "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/skills-md/agentera/agently-skills/agently-model-response" ~/.claude/skills/neversight-learn-skills-dev-agently-model-response && rm -rf "$T"
manifest: data/skills-md/agentera/agently-skills/agently-model-response/SKILL.md
source content

Agently Model Response

Use this skill when the output contract is already chosen and the remaining issue is how the response instance should be consumed or reused.

The user does not need to say

get_response()
. Requests to reuse one result as text, parsed data, metadata, or progressive updates should route here.

Native-First Rules

  • prefer
    get_response()
    when one request result must be consumed more than once
  • prefer async response APIs in async runtimes
  • use
    delta
    ,
    instant
    ,
    specific
    , or
    all
    instead of custom stream splitting logic

Anti-Patterns

  • do not re-issue the same request to obtain text, data, and metadata separately
  • do not build ad hoc field-level stream parsers when
    instant
    or
    streaming_parse
    already fits

Read Next

  • references/overview.md