Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

shinka-setup新卡设置

Agent Skill

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

总安装

2,281

周安装

98

GitHub Stars

1,063

下载量

1,183
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sakanaai/shinkaevolve --skill shinka-setup

简介

shinka-setup 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前尚无详细功能描述,需查阅原始 SKILL.md 获取更多信息。

SKILL.md

Shinka Task Setup Skill

Create a setup scaffold consisting of an evaluation script and initial solution for an optimization problem given a user's task description. Both ingredients will be used within ShinkaEvolve, a framework combining LLMs with evolutionary algorithms to drive code optimization.

When to Use

Invoke this skill when the user:

  • Wants to optimize code with LLM-driven code evolution (Shinka/ShinkaEvolve)
  • No evaluate.py and initial.<ext> exist in the working directory

User Inputs

  • Task description + success criteria
  • Target language for initial.<ext> (if omitted, default to Python)
  • What parts of the script to optimize
  • Evaluation metric(s) and score direction
  • Number of eval runs / seeds
  • Required assets or data files
  • Dependencies or constraints (runtime, memory)

Workflow

  1. Check if all user inputs are provided and ask the user follow-up questions if not inferrable.
  2. Inspect working directory. Detect chosen language + extension. Avoid overwriting existing evaluate.py or initial.<ext> without consent.
  3. Write initial.<ext> with a clear evolve region (EVOLVE-BLOCK markers or language-equivalent comments) and stable I/O contract.
  4. Write evaluate.py:

- Python initial.py: call run_shinka_eval with experiment_fn_name, get_experiment_kwargs, aggregate_metrics_fn, num_runs, and optional validate_fn. - Non-Python initial.<ext>: run candidate program directly (usually via subprocess) and write metrics.json + correct.json.

  1. Ensure candidate output schema matches evaluator expectations (tuple/dict for Python module eval, or file/CLI contract for non-Python).
  2. Validate draft evaluate.py before handoff:

- Run a smoke test: - python evaluate.py --program_path initial.<ext> --results_dir /tmp/shinka_eval_smoke - Confirm evaluator runs without exceptions. - Confirm a metrics dict is produced (either from aggregate_fn or metrics.json) with at least: - combined_score (numeric), - public (dict), - private (dict), - extra_data (dict), - text_feedback (string, can be empty). - Confirm correct.json exists with correct (bool) and error (string) fields.

  1. Ask the user if they want to run the evolution themself or whether to use the shinka-run skill:

- If the user wants to run evolution manually, add run_evo.py plus a shinka.yaml config with matching language + init_program_path. - Ask the user if they want to use the shinka-run skill to perform optimization with the agent.

What is ShinkaEvolve?

A framework developed by SakanaAI that combines LLMs with evolutionary algorithms to propose program mutations, that are then evaluated and archived. The goal is to optimize for performance and discover novel scientific insights.

Repo and documentation: https://github.com/SakanaAI/ShinkaEvolve Paper: https://arxiv.org/abs/2212.04180

Evolution Flow

  1. Select parent(s) from archive/population
  2. LLM proposes patch (diff, full rewrite, or crossover)
  3. Evaluate candidate → combined_score
  4. If valid, insert into island archive (higher score = better)
  5. Periodically migrate top solutions between islands
  6. Repeat for N generations

Core Files To Generate

FilePurpose
initial.<ext>Starting solution in the chosen language with an evolve region that LLMs mutate
evaluate.pyScores candidates and emits metrics/correctness outputs that guide selection
run_evo.py(Optional) Launches the evolution loop
shinka.yaml(Optional) Config: generations, islands, LLM models, patch types, etc.

Quick Install (if Shinka is not set up yet)

Install once before creating/running tasks:

# Check if shinka is available in workspace environment
python -c "import shinka"

# If not; install from PyPI
pip install shinka-evolve

# Or with uv
uv pip install shinka-evolve

Language Support (initial.<ext>)

Shinka supports multiple candidate-program languages. Choose one, then keep extension/config/evaluator aligned.

evo_config.languageinitial.<ext>
pythoninitial.py
juliainitial.jl
cppinitial.cpp
cudainitial.cu
rustinitial.rs
swiftinitial.swift
json / json5initial.json

Rules:

  • evaluate.py stays the evaluator entrypoint.
  • Python candidates: prefer run_shinka_eval + experiment_fn_name.
  • Non-Python candidates: evaluate via subprocess and write metrics.json + correct.json.
  • Always set both evo_config.language and matching evo_config.init_program_path.

Template: initial.<ext> (Python example)

import random

# EVOLVE-BLOCK-START
def advanced_algo():
    # Implement the evolving algorithm here.
    return 0.0, ""
# EVOLVE-BLOCK-END

def solve_problem(params):
    return advanced_algo()

def run_experiment(random_seed: int | None = None, **kwargs):
    """Main entrypoint called by evaluator."""
    if random_seed is not None:
        random.seed(random_seed)

    score, text = solve_problem(kwargs)
    return float(score), text

For non-Python initial.<ext>, keep the same idea: small evolve region + deterministic program interface consumed by evaluate.py.

Template: evaluate.py (Python run_shinka_eval path)

import argparse
import numpy as np

from shinka.core import run_shinka_eval  # required for results storage

def get_kwargs(run_idx: int) -> dict:
    return {"random_seed": int(np.random.randint(0, 1_000_000_000))}

def aggregate_fn(results: list) -> dict:
    scores = [r[0] for r in results]
    texts = [r[1] for r in results if len(r) > 1]
    combined_score = float(np.mean(scores))
    text = texts[0] if texts else ""
    return {
        "combined_score": combined_score,
        "public": {},
        "private": {},
        "extra_data": {},
        "text_feedback": text,
    }

def validate_fn(result):
    # Return (True, None) or (False, "reason")
    return True, None

def main(program_path: str, results_dir: str):
    metrics, correct, err = run_shinka_eval(
        program_path=program_path,
        results_dir=results_dir,
        experiment_fn_name="run_experiment",
        num_runs=3,
        get_experiment_kwargs=get_kwargs,
        aggregate_metrics_fn=aggregate_fn,
        validate_fn=validate_fn,  # Optional
    )
    if not correct:
        raise RuntimeError(err or "Evaluation failed")

if __name__ == "__main__":
    # argparse program path & dir
    parser = argparse.ArgumentParser()
    parser.add_argument("--program_path", required=True)
    parser.add_argument("--results_dir", required=True)
    args = parser.parse_args()
    main(program_path=args.program_path, results_dir=args.results_dir)

Template: evaluate.py (non-Python initial.<ext> path)

import argparse
import json
import os
from pathlib import Path

def main(program_path: str, results_dir: str):
    os.makedirs(results_dir, exist_ok=True)

    # 1) Execute candidate program_path (subprocess / runtime-specific call)
    # 2) Compute task metrics + correctness
    metrics = {
        "combined_score": 0.0,
        "public": {},
        "private": {},
        "extra_data": {},
        "text_feedback": "",
    }
    correct = False
    error = ""

    (Path(results_dir) / "metrics.json").write_text(
        json.dumps(metrics, indent=2), encoding="utf-8"
    )
    (Path(results_dir) / "correct.json").write_text(
        json.dumps({"correct": correct, "error": error}, indent=2), encoding="utf-8"
    )

if __name__ == "__main__":
    parser = argparse.ArgumentParser()
    parser.add_argument("--program_path", required=True)
    parser.add_argument("--results_dir", required=True)
    args = parser.parse_args()
    main(program_path=args.program_path, results_dir=args.results_dir)

(Optional) Template: run_evo.py (async)

See skills/shinka-setup/scripts/run_evo.py for an example to edit.

(Optional) Template: shinka.yaml

See skills/shinka-setup/scripts/shinka.yaml for an example to edit.

Notes

  • Keep evolve markers tight; only code inside the region should evolve.
  • Keep evaluator schema stable (combined_score, public, private, extra_data, text_feedback).
  • Python module path: ensure experiment_fn_name matches function name in initial.py.
  • Non-Python path: ensure evaluator/runtime contract matches initial.<ext> CLI/I/O.
  • Higher combined_score values indicate better performance.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.86%
按下载量换算436

Claude

32.23%
按下载量换算381

Cursor

16.77%
按下载量换算198

Gemini CLI

9.73%
按下载量换算115

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/sakanaai/shinkaevolve --skill shinka-setup 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills