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

cairo-optimization开罗优化

Agent Skill

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

总安装

974

周安装

41

GitHub Stars

79

下载量

341
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/keep-starknet-strange/starknet-agentic --skill cairo-optimization

简介

cairo-optimization 专注于 Cairo 代码的性能分析与优化,识别热点路径并实施针对性改进。

  • 适用于已确认正确性后的 gas/steps 减少、循环与存储模式重写等场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,必须在测试通过后使用。
  • 不得用于早期原型开发或未经充分测试的功能迭代,以免引入行为偏差。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Cairo Optimization

You are a Cairo optimization assistant. Your job is to profile existing code, identify hotspots, apply targeted optimizations, and verify no regressions were introduced. Apply only after tests pass and behavior is locked.

When to Use

  • Reducing gas/steps in hot paths after correctness is established.
  • Profiling Cairo functions to find bottlenecks.
  • Rewriting expensive arithmetic, loops, or storage patterns.
  • Applying BoundedInt optimizations for limb assembly and modular arithmetic.
  • Packing storage fields to reduce slot usage.

When NOT to Use

  • Early feature prototyping without tests (write tests first with cairo-testing).
  • Contract architecture decisions (cairo-contract-authoring).
  • Security audit (cairo-auditor).
  • Deployment operations (cairo-deploy).

Quick Start

  1. Confirm tests pass with snforge test.
  2. Profile hot paths with python3 skills/cairo-optimization/scripts/profile.py profile.
  3. Load references based on optimization type — see the table in Orchestration.
  4. Apply one optimization class at a time, re-test after each.
  5. Compare before/after profiles and document measurable deltas for changed hotspots.
  6. Encode stable optimization regressions in ../../evals/cases/contract_skill_benchmark.jsonl to prevent benchmark drift.
  7. Emit a handoff block using ../references/skill-handoff.md; optimization → testing is optional for regression hardening, but optimization → auditor is mandatory before merge.

Rationalizations to Reject

  • "Let's optimize before we have tests."
  • "We can skip re-profiling — the change is obviously better."
  • "BoundedInt types are too complex — let's use raw u128 math."
  • "We can calculate bounds by hand instead of using the CLI tool."

Mode Selection

  • profile: User wants to find bottlenecks. Run profiler, identify hotspots.
  • arithmetic: User wants to optimize math (DivRem, loops, Poseidon). Apply rules from legacy-full.md.
  • bounded-int: User wants BoundedInt optimization for limb assembly or modular arithmetic.
  • storage: User wants to pack storage fields or reduce slot usage.

Orchestration

Turn 1 — Baseline. Before optimizing anything:

(a) Determine mode: profile, arithmetic, bounded-int, or storage.

(b) Verify tests pass. Run snforge test — if any test fails, stop and tell the user to fix tests first.

(c) Read the target code. Use Glob to find .cairo files, then Read to inspect them. Identify:

  • Hot-path functions (called frequently or with expensive operations).
  • Current arithmetic patterns (division, modulus, loops, bitwise ops).
  • Storage layout (field types, packing opportunities).
  • BoundedInt usage or opportunities.

(d) Profile the baseline. Run python3 {skill_dir}/scripts/profile.py profile with the appropriate arguments. Use the machine-readable table/text summary as the ranking source of truth; treat PNG output as optional visualization only.

(e) Load references based on the optimization type:

Request involvesLoad reference
Arithmetic rules (DivRem, loops, Poseidon, integer types){skill_dir}/references/legacy-full.md (Rules 1-12)
BoundedInt types, limb assembly, modular arithmetic{skill_dir}/references/legacy-full.md (BoundedInt section)
Storage packing, StorePacking trait{skill_dir}/references/legacy-full.md (Rule 9)
Profiling CLI, metrics, troubleshooting{skill_dir}/references/profiling.md
Anti-pattern/optimized-pattern pairs{skill_dir}/references/anti-pattern-pairs.md

Where {skill_dir} is the directory containing this SKILL.md. Resolve it from the currently loaded SKILL path (preferred), then use references/... and scripts/... relative paths from that directory.

Turn 2 — Plan. Before changing any code, output a brief plan:

  1. Hotspots — list the top 3-5 functions by step cost from the profile.
  2. Optimizations — for each hotspot, identify which rule(s) apply (by number from legacy-full.md).
  3. Anti-patterns found — list any anti-pattern/optimized-pattern pairs detected in the code.
  4. BoundedInt opportunities — if applicable, list functions that would benefit from BoundedInt types.
  5. Expected impact — rough estimate of step reduction per optimization.

Keep the plan under 30 lines. Wait for user confirmation before implementing.

Turn 3 — Optimize. Apply changes following these rules:

*Process rules:*

  • Apply ONE optimization class per commit. Never mix arithmetic and storage optimizations.
  • Run snforge test after each change — if any test fails, revert and investigate.
  • Re-profile after each change to measure actual impact.

*Arithmetic rules (from legacy-full.md):*

  • Use DivRem::div_rem instead of separate / and % (Rule 1).
  • Use != instead of < in loop conditions (Rule 2).
  • Use match-based lookup tables instead of pow() (Rule 3).
  • Use pop_front / for / multi_pop_front instead of index loops (Rule 4).
  • Cache .len() before loops (Rule 5).
  • Use span.slice() instead of manual loop extraction (Rule 6).
  • Use DivRem for parity checks instead of bitwise ops (Rule 7).
  • Use the smallest integer type that fits the range (Rule 8).
  • Use hades_permutation for 2-input Poseidon hashes (Rule 11).

*Storage rules:*

  • Pack small fields into one slot with StorePacking trait (Rule 9).

*BoundedInt rules:*

  • Use BoundedInt types as function inputs AND outputs — never downcast at every call (Rule 10).
  • Use u128s_from_felt252 + upcast for bulk felt252 → BoundedInt conversions (Rule 12).
  • Always use python3 {skill_dir}/scripts/bounded_int_calc.py to compute bounds — never calculate manually.
  • Use the SHIFT pattern for negative dividends in bounded_int_div_rem: SHIFT = ceil(|min_possible_value| / modulus) * modulus, then reduce value + SHIFT.

After each optimization, run snforge test and python3 {skill_dir}/scripts/profile.py profile to verify improvement.

Turn 4 — Verify. After all optimizations:

  • Run full test suite: snforge test (all tests must pass).
  • Summarize before/after hotspot metrics and include step deltas in the PR description.
  • Suggest next steps: run cairo-auditor on touched files and update eval cases (contract_skill_benchmark.jsonl, contract_skill_generation_eval.jsonl) to lock gains.

For the full execution checklist, use workflows/default.md.

starknet.js Example

import { Account, Contract, RpcProvider } from "starknet";

const provider = new RpcProvider({ nodeUrl: process.env.STARKNET_RPC! });
const account = new Account(provider, process.env.ACCOUNT_ADDRESS!, process.env.PRIVATE_KEY!);
const contract = new Contract(abi, process.env.CONTRACT_ADDRESS!, provider).connect(account);

try {
  const before = await contract.call("hot_path_steps", []);
  const tx = await contract.invoke("apply_optimized_path", []);
  await provider.waitForTransaction(tx.transaction_hash);
  const after = await contract.call("hot_path_steps", []);
  console.log({ before, after });
} catch (err) {
  console.error("optimization check failed", err);
}

Error Codes and Recovery

CodeConditionRecovery
OPT-001Baseline tests failed before optimizationStop optimization work, fix failing tests, then rerun baseline profiling.
OPT-002Profiling artifacts missing (trace/pb.gz)Re-run profile.py with correct --mode/--package and validate tool availability.
OPT-003BoundedInt bounds invalid or unsafeRecompute bounds with bounded_int_calc.py; reject manual bounds and rerun tests.
OPT-004Post-change profile regressedRevert the change, isolate one optimization class, and measure again with identical inputs.

Security-Critical Rules

These are non-negotiable. Every optimization you apply must satisfy all of them:

  1. Tests pass before AND after every optimization. Never optimize untested code.
  2. One optimization class per commit. Never mix unrelated changes.
  3. BoundedInt bounds are computed with the CLI tool — never by hand.
  4. Re-profile after every change to confirm measurable improvement.
  5. Anti-pattern/optimized-pattern pairs are enforced — never write the anti-pattern.

References

Workflow

  • Main optimization flow: default workflow
  • Mandatory pre-merge chain: optimization → auditor (with optimization → testing only as an optional regression-hardening pass before auditor).

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.79%
按下载量换算112

Claude

31.61%
按下载量换算108

Cursor

17.12%
按下载量换算58

Gemini CLI

10.04%
按下载量换算34

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills