Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

selftuneselftune 搜索

Agent Skill

selftune 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

649

周安装

26

GitHub Stars

12

下载量

210
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:selftune(selftune 搜索)
来源仓库:https://github.com/selftune-dev/selftune
仓库路径:skills/selftune
安装命令:
npx skills add https://github.com/selftune-dev/selftune --skill selftune
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/selftune-dev/selftune --skill selftune

简介

用于查找、检索和筛选相关信息,支持根据关键词快速定位候选结果。

  • 适合在需要任务场景或来源线索进行信息筛选时使用。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装方式:通过 npx skills add 命令从指定 GitHub 仓库添加。
  • 注意权限范围和维护状态,确认是否会触发联网、命令执行或文件读写。

SKILL.md

selftune

Observe real agent sessions, detect missed triggers, grade execution quality, evolve skills through package evaluation (replay, baseline, grading, body, unit tests, and post-deploy watch), and scaffold workflow skills from repeated telemetry patterns.

You are the operator. The user installed this skill so YOU can manage their skill health autonomously. They will say things like "set up selftune", "improve my skills", or "how are my skills doing?" — and you route to the correct workflow below. The user does not run CLI commands directly; you do.

Bootstrap

If ~/.selftune/config.json does not exist, read workflows/Initialize.md first. The CLI must be installed (selftune on PATH) before other commands will work. Do not proceed with other commands until initialization is complete.

Primary Lifecycle

Default to this lifecycle unless the user explicitly asks for a low-level workflow:

  1. status

- use selftune status - for draft packages, use selftune create status --skill-path <path>

  1. verify

- use selftune verify --skill-path <path> - if verify reports missing readiness or evidence, follow the returned next low-level command instead of rerunning the full chain

  1. publish

- for draft packages, use selftune publish --skill-path <path> - for already-live skills, publish usually means a validated Improve action plus Watch

  1. improve

- use selftune improve --skill <name> --skill-path <path> - let --scope auto choose bounded package search automatically when the skill already has package evidence or a draft package manifest - set --scope description|routing|body|package when the measured gap is already clear and you want to force the mutation surface - use --scope package when the problem spans routing and body together or you want measured frontier comparison before deciding what to publish - omit --dry-run when you want the winning package candidate promoted back into the draft automatically

  1. run

- use selftune run

Treat eval generate, unit-test, replay, baseline, watch, and body-specific evolution as advanced supporting workflows unless the user asks for them directly or the default lifecycle fails.

Command Execution Policy

selftune <command> [options]

Commands vary in output format:

  • JSON by default: selftune doctor and selftune watch emit structured JSON on stdout.
  • Text by default: selftune status, selftune last, selftune verify, selftune publish, and selftune improve print human-readable text when stdout is a TTY.
  • Mixed runtime output: selftune run / selftune orchestrate emit JSON on stdout and a human report on stderr.
  • JSON opt-in: selftune sync --json enables structured JSON output.
  • Server: selftune dashboard starts a local SPA server — it does not emit data.

For health remediation, prefer machine-readable guidance.next_command or top-level next_command from selftune doctor output instead of inferring the next step from prose.

Run selftune <command> --help for exact flags. Read references/cli-quick-reference.md when you need the full flag reference.

Package Evaluation Pipeline (Creator Trust Loop)

When the user wants to improve a skill, default to this package evaluation pipeline before jumping straight to mutation. Each step builds measured evidence that the package is ready to publish:

  • draft — the package exists but is still incomplete
  • verify_blocked — the draft is still in one of the concrete readiness states: needs_spec_validation, needs_package_resources, needs_evals, needs_unit_tests, needs_routing_replay, or needs_baseline
  • verified — the trust gates pass and the skill is ready to ship
  • published — the skill was shipped successfully
  • watching — post-deploy monitoring is active
  • needs_improvement — measured evidence shows trigger, routing, body, or value gaps
  • unhealthy — hooks, telemetry, config, or selftune itself is broken

If the user asks "how do I know this skill works?" or "can I trust this skill yet?", start with this pipeline, then use selftune status, the dashboard, or the skill report to explain what is still missing, whether the package is ready to publish, or whether it is already being watched live.

Workflow Routing

Trigger keywordsWorkflowFile
create skill, new skill package, author skill, bootstrap skill, scaffold package, benchmark report, package report, publish reportCreateworkflows/Create.md
verify skill, creator loop, can I trust this skill, how do I know this skill works, test this skill, ready to ship, ready to deployVerifyworkflows/Verify.md
publish skill, ship skill, deploy skill, go live, release skillPublishworkflows/Publish.md
search run, package frontier, candidate search, bounded package evolution, compare package candidates, optimize package, improve routing and body together, bounded evolutionSearchRunworkflows/SearchRun.md
grade, score, evaluate, assess session, auto-gradeGradeworkflows/Grade.md
evals, eval set, undertriggering, skill stats, eval generateEvalsworkflows/Evals.md
improve, optimize skills, make skills better, triggers, catch more queries, apply proposal, apply contributor proposalImproveworkflows/Improve.md
evolve description, description-only evolution, improve trigger wordingEvolveworkflows/Evolve.md
evolve body, evolve routing, full body evolution, rewrite skill, teacher studentEvolveBodyworkflows/EvolveBody.md
evolve rollback, undo, restore, revert evolution, go back, undo last changeRollbackworkflows/Rollback.md
watch, monitor, regression, post-deploy, keep an eye onWatchworkflows/Watch.md
doctor, health, hooks, broken, diagnose, not working, something wrongDoctorworkflows/Doctor.md
ingest, import, codex logs, opencode, openclaw, pi, wrap codexIngestworkflows/Ingest.md
replay, backfill, claude transcripts, historical sessionsReplayworkflows/Replay.md
contributions, sharing preferences, opt in/out creator sharing, approve/revoke contributionsContributionsworkflows/Contributions.md
creator contributions, selftune.contribute.json, enable/disable creator contributionCreatorContributionsworkflows/CreatorContributions.md
signals dashboard, contributor signals, signals page, community dashboard, community data, contributor stats, signal health, how are signals, how is communitySignalsDashboardworkflows/SignalsDashboard.md
contribute, share, export bundle, export data, anonymized, give backContributeworkflows/Contribute.md
init, setup, set up, bootstrap, first time, install, configure selftune, alpha, enrollInitializeworkflows/Initialize.md
cron, schedule, automate evolution, run automaticallyCronworkflows/Cron.md
schedule, selftune schedule, launchd, systemd, crontab, automation setupScheduleworkflows/Schedule.md
auto-activate, suggestions, activation rules, nag, why suggestAutoActivationworkflows/AutoActivation.md
dashboard, visual, open dashboard, show dashboard, serve dashboardDashboardworkflows/Dashboard.md
evolution memory, session continuity, what happened lastEvolutionMemoryworkflows/EvolutionMemory.md
grade baseline, baseline lift, adds value, skill value, no-skill comparisonBaselineworkflows/Baseline.md
eval unit-test, skill test, test skill, generate tests, run testsUnitTestworkflows/UnitTest.md
eval composability, co-occurrence, skill conflicts, family overlap, sibling confusionComposabilityworkflows/Composability.md
eval import, skillsbench, external evals, benchmark tasksImportSkillsBenchworkflows/ImportSkillsBench.md
telemetry, analytics, disable analytics, opt out, tracking, privacyTelemetryworkflows/Telemetry.md
orchestrate, autonomous, full loop, improve all skills, run selftune, run selftune loop, run with package search, automatic package improvementRunworkflows/Run.md
sync, refresh, source truth, rescan sessionsSyncworkflows/Sync.md
badge, readme badge, skill badge, health badgeBadgeworkflows/Badge.md
workflows, discover workflows, scaffold workflow skill, build skill from logsWorkflowsworkflows/Workflows.md
alpha upload, upload data, send alpha data, manual uploadAlphaUploadworkflows/AlphaUpload.md
recover, rebuild sqlite, recover db, legacy backfillRecoverworkflows/Recover.md
quickstart, getting started, onboard, first time setup, new userQuickstartworkflows/Quickstart.md
uninstall, remove selftune, clean up, teardownUninstallworkflows/Uninstall.md
repair, rebuild usage, fix skill usage, trustworthy usageRepairSkillUsageworkflows/RepairSkillUsage.md
export canonical, canonical export, canonical telemetry, push payloadExportCanonicalworkflows/ExportCanonical.md
hook, run hook, invoke hook, manual hook, debug hookHookworkflows/Hook.md
codex/opencode/cline/pi hooks, platform hooks, non-claude hooks, multi-agentPlatformHooksworkflows/PlatformHooks.md
registry, distribute, push/install/sync/rollback skill, team skillsRegistryworkflows/Registry.md
export, dump, jsonl, export sqlite, debug exportExport*(direct: selftune export)*
status, health summary, skill health, how are skills, run selftuneStatus*(direct: selftune status)*
last, last session, recent session, what happenedLast*(direct: selftune last)*

Workflows Grade, Improve, Watch, and Ingest also run autonomously via selftune orchestrate. When package evaluation evidence exists, selftune orchestrate (aliased as selftune run) can automatically select package-level bounded search instead of description-level evolve.

Interactive Configuration

Before running mutating workflows (evolve, evolve-body, evals, baseline), consult references/interactive-config.md for the pre-flight configuration pattern, model tier reference, and quick-path rules.

Specialized Agents

selftune bundles focused agents in agents/. Read the relevant agent file and follow its instructions — either inline or by spawning a subagent.

Trigger keywordsAgent fileWhen to use
diagnose, root cause, why failing, debug performanceagents/diagnosis-analyst.mdRecurring low grades or unclear failures after doctor/status
patterns, conflicts, cross-skill, overlapagents/pattern-analyst.mdSkills overlap, misroute, or interfere
review evolution, check proposal, safe to deployagents/evolution-reviewer.mdBefore deploying high-stakes or marginal evolutions
set up selftune, integrate, configure projectagents/integration-guide.mdComplex setup: monorepos, multi-skill, mixed-platform

Advanced Workflows

Load these when the user explicitly asks for a low-level step, when the primary lifecycle fails, or when debugging needs deeper evidence:

  • workflows/Evals.md
  • workflows/UnitTest.md
  • workflows/Baseline.md
  • workflows/Replay.md
  • workflows/Watch.md
  • workflows/Evolve.md
  • workflows/EvolveBody.md
  • workflows/Composability.md
  • workflows/ImportSkillsBench.md

Negative Examples

These should NOT trigger selftune — near-misses that share keywords:

  • "Fix this React hydration bug" — general debugging, not skill improvement
  • "Create a PowerPoint about Q3 results" — pptx skill, not selftune
  • "Run my unit tests" — project tests, not skill eval tests
  • "How do I use the Research skill?" — skill *usage*, not *improvement*
  • "Generate a report from this data" — content generation, not skill evolution
  • "My build is failing" — project issue, not selftune health
  • "Evaluate this code for security issues" — code review, not session grading
  • "Improve this function's performance" — code optimization, not skill optimization

The key distinction: selftune improves *skills themselves* (descriptions, triggers, execution quality). If the user wants to *use* a skill, route to that skill instead.

Creator-Directed Contribution

This skill ships a selftune.contribute.json config that enables creator-directed signal relay. When users install selftune and approve contribution, anonymous usage signals (trigger, grade, miss_category) are relayed to the selftune creator to improve the skill for everyone.

  • The creator_id in the bundled config is the selftune creator's cloud user UUID.
  • Users opt in via selftune contributions approve selftune.
  • No raw session content is ever shared -- only privacy-safe aggregate signals.
  • See workflows/CreatorContributions.md for creator-side setup.
  • See workflows/Contributions.md for end-user opt-in/opt-out.

Routing keywords: creator contribution, selftune signals, dogfood relay, community contribution, signal sharing, opt in creator, creator UUID.

Additional References

Load these on demand — do not read unless needed for the current task:

ReferenceWhen to read
references/cli-quick-reference.mdNeed exact CLI flags beyond --help
references/troubleshooting.mdDiagnosing common errors
references/examples.mdNeed step-by-step scenario walkthroughs
references/creator-playbook.mdPublishing skills others install; before-ship vs after-ship pipeline
references/interactive-config.mdBefore mutating workflows
references/grading-methodology.mdGrading sessions or interpreting grades
references/invocation-taxonomy.mdAnalyzing trigger coverage
references/logs.mdParsing or debugging log files
references/setup-patterns.mdComplex platform-specific setup
references/version-history.mdChecking what changed between versions
settings_snippet.jsonDuring initialization

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.36%
按下载量换算74

Claude

30.01%
按下载量换算63

Cursor

17.41%
按下载量换算37

Gemini CLI

8.97%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills