Agent Skillsgreyhaven-ai/autocontext › autocontext-creator

autocontext-creator

GitHub

用于通过Autocontext CLI创建和优化知识,支持运行场景、评分改进输出及查看生成结果。

skills/autocontext-creator/SKILL.md greyhaven-ai/autocontext

Trigger Scenarios

需要创建或优化特定任务的解决方案 对单个输出进行评分或迭代改进 检查或回放已完成的运行记录

Install

npx skills add greyhaven-ai/autocontext --skill autocontext-creator -g -y
More Options

Use without installing

npx skills use greyhaven-ai/autocontext@autocontext-creator

指定 Agent (Claude Code)

npx skills add greyhaven-ai/autocontext --skill autocontext-creator -a claude-code -g -y

安装 repo 全部 skill

npx skills add greyhaven-ai/autocontext --all -g -y

预览 repo 内 skill

npx skills add greyhaven-ai/autocontext --list

SKILL.md

Frontmatter
{
    "name": "autocontext-creator",
    "author": "Autocontext",
    "license": "Apache-2.0",
    "version": "1.0.0",
    "description": "Use when an agent needs to CREATE knowledge with Autocontext - run a scenario or plain-language task through the improvement loop, judge or improve a single output, and inspect what the run produced. Host-agnostic; requires only the autoctx CLI."
}

Autocontext: Creating Knowledge

Overview

Autocontext runs an improvement loop over a task and writes what it learned to disk. This skill covers producing that knowledge. To read knowledge that already exists, use autocontext-consumer instead.

Nothing here assumes a particular agent host. The only requirement is that you can run autoctx and read its output.

When to Use

  • You have a task and want Autocontext to improve an approach to it over several generations.
  • You have one output and one rubric, and want it scored or improved without a full loop.
  • You want to see what a finished run produced.

Do not use this skill to look up existing knowledge. That is autocontext-consumer.

Always Pass --json When Parsing

Every command below accepts --json. Use it whenever you intend to read the result programmatically; the human-readable form is not a stable interface.

Running a Scenario

autoctx run grid_ctf --iterations 3 --json

--iterations is the number of generations. Each one produces a candidate, scores it, and folds what it learned into the knowledge for that scenario.

Give the run an id you choose when you need to refer back to it:

RUN_ID="my_run_$(date +%s)"
autoctx run grid_ctf --iterations 3 --run-id "$RUN_ID" --json
autoctx status "$RUN_ID" --json

Starting From a Plain-Language Task

When there is no scenario, describe the task:

autoctx solve "Improve the support-triage response policy." --iterations 3 --json

Scoring or Improving a Single Output

For one-shot work, without a loop:

autoctx judge --task-prompt "..." --output "..." --rubric "..." --json
autoctx improve --task-prompt "..." --rubric "..." --rounds 3 --json

judge scores an output you already have. improve iterates on it.

Seeing What a Run Produced

autoctx list --json
autoctx status "$RUN_ID" --json
autoctx show "$RUN_ID"
autoctx replay "$RUN_ID" --generation 1

show renders the run's artifacts. replay prints the JSON for one generation, which is the level to inspect when a score looks wrong.

Watching a Run in Flight

autoctx watch "$RUN_ID"

Creating a New Scenario

autoctx scenario create --list
autoctx scenario create --template content-generation --name support-content

Scaffolds from the template library. Use this when the task recurs and deserves a named scenario rather than a one-off solve.

Choosing a Provider

Autocontext defaults to a hosted Anthropic model. To point it somewhere else, including a local server, set the provider before running:

export AUTOCONTEXT_AGENT_PROVIDER=openai-compatible
export AUTOCONTEXT_AGENT_BASE_URL=http://localhost:11434/v1
export AUTOCONTEXT_AGENT_API_KEY=no-key
export AUTOCONTEXT_LOCAL_MODEL=llama3.1
autoctx run grid_ctf --iterations 3 --json

Keep secrets and base URLs in the environment or the user's profile, never in a skill file.

Before a Long Run

autoctx run preflights every endpoint it will use and refuses to start on a dead endpoint, a rejected credential, or a model the server does not serve. That check is why a misconfigured run fails in seconds rather than after spending tokens. --skip-preflight exists but wastes that protection.

Privacy

Runs write to the local knowledge root and stay there. Nothing is uploaded. Treat run artifacts as you would any local file containing the task text and model output - they contain whatever you put in the prompt.

Version History

  • c258b44 Current 2026-08-19 21:39

Same Skill Collection

autocontext/skills/grid-ctf-ops/SKILL.md
pi/skills/autocontext/SKILL.md
skills/autocontext-consumer/SKILL.md
skills/autocontext/SKILL.md

Metadata

Files
0
Version
c258b44
Hash
8d1c551d
Indexed
2026-08-19 21:39

Главная - Вики-сайт
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-20 23:53
浙ICP备14020137号-1 $Гость$