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

circuit-fibsqrt电路 fibsqrt

Agent Skill

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

总安装

792

周安装

34

GitHub Stars

93

下载量

277
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill circuit-fibsqrt

简介

circuit-fibsqrt 指导将数学计算实现为门级电路,适用于文本化电路仿真场景。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中构建平方根或斐波那契等函数电路时使用。
  • 涵盖组合逻辑与顺序逻辑设计,支持事件驱动仿真环境。
  • 需确认所用仿真工具格式兼容性,避免依赖特定硬件平台。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Circuit-Fibsqrt

Overview

This skill provides guidance for implementing mathematical computations as gate-level circuits. It covers combinational logic (adders, comparators, multiplexers) and sequential logic (feedback-based iteration) in text-based circuit simulators that use event-driven simulation.

When to Use This Skill

Use this skill when:

  • Building circuits that compute mathematical functions (square root, Fibonacci, etc.)
  • Working with text-based gate netlists (e.g., gates.txt format)
  • Implementing multi-bit arithmetic operations at the gate level
  • Debugging circuits in event-driven simulators with feedback loops
  • Optimizing gate counts to meet resource constraints

Approach: Component-First Development

Step 1: Understand the Simulator Semantics

Before writing any circuit code:

  1. Read example files carefully - Examine any provided example gate files to understand:

- Input signal handling (e.g., out{i} = out{i} pattern for preserving inputs) - Gate syntax and argument ordering - How feedback loops are represented

  1. Establish conventions - Document clearly:

- Mux semantics: Does mux(sel, a, b) select a when sel=0 or sel=1? - Signal naming conventions - Bit ordering (LSB vs MSB first)

  1. Test simulator behavior - Create minimal test circuits to verify:

- Feedback loop behavior (toggle tests) - Multi-cycle convergence - Event-driven vs synchronous semantics

Step 2: Paper-Trace Algorithms First

Before implementing complex algorithms:

  1. Work through small examples by hand - For integer square root, trace through isqrt(16), isqrt(17), isqrt(100)
  2. Verify mathematical correctness - Ensure formulas are correct before coding (e.g., Newton-Raphson, binary search bounds)
  3. Identify iteration counts - Determine how many iterations are needed for the input range

Step 3: Estimate Resource Usage

Before implementation:

  1. Calculate expected gate counts - A 32-bit multiplier may require 30,000+ gates
  2. Compare against limits - If limit is 32,000 gates, avoid multiplication-heavy approaches
  3. Choose appropriate algorithms - Binary search isqrt avoids multiplication; comparison-based approaches are gate-efficient

Step 4: Build and Test Components Independently

Implement in isolation before combining:

  1. Primitive gates first:

- AND, OR, XOR, NOT - MUX (multiplexer)

  1. Arithmetic building blocks:

- Half adder, full adder - N-bit ripple-carry adder - N-bit subtractor (adder with inverted operand + carry-in) - N-bit comparator (A < B, A == B)

  1. Test each component:

- Unit test adders with known values - Verify comparators with edge cases (0, max value, equal values) - Test mux selection in both directions

Step 5: Implement Algorithm-Specific Logic

For isqrt (integer square root):

  • Binary search approach: Start with bounds [0, 2^16], narrow by comparing mid^2 with input
  • Avoid direct multiplication if gate-constrained; use iterative addition or precomputed squares
  • Handle edge cases: isqrt(0)=0, isqrt(1)=1

For Fibonacci:

  • Implement as sequential state machine using feedback
  • Two registers: fib_prev and fib_curr
  • Iterate based on iteration count from isqrt result
  • Handle edge cases: fib(0)=0, fib(1)=1

Step 6: Combine and Integrate

When combining components:

  • Use clear signal naming to track data flow
  • Verify interface widths match between components
  • Test the combined circuit with known input/output pairs

Verification Strategies

Unit Testing

  1. Test primitives in isolation - Create separate test scripts for each component
  2. Use known test vectors - For adders: 0+0=0, 1+1=2, max+1=overflow
  3. Edge case coverage:

- Zero inputs - Maximum value inputs - Boundary conditions (e.g., perfect squares for isqrt)

Integration Testing

  1. Test with small inputs first - Verify fib(isqrt(1)), fib(isqrt(4)), fib(isqrt(9))
  2. Verify intermediate values - Check isqrt output before Fibonacci computation
  3. Test large inputs - Ensure overflow handling works correctly

Debugging Techniques

  1. Add debug outputs - Temporarily expose internal signals for inspection
  2. Trace signal propagation - Follow a known input through the circuit manually
  3. Binary search for bugs - If output is wrong, test intermediate stages to isolate the issue

Common Pitfalls

Input Signal Handling

Mistake: Not preserving input signals in the gate file.

Solution: Many simulators require explicit input preservation:

out0 = out0   # Preserve input bit 0
out1 = out1   # Preserve input bit 1
...

Read example files to identify this pattern before implementation.

Algorithm Implementation Errors

Mistake: Implementing formulas without verification.

Example: Using test_val = 2*res + 1 when the correct formula is different for the chosen iteration method.

Solution: Paper-trace the algorithm with concrete values before coding.

Gate Count Explosion

Mistake: Using multiplication without estimating gate cost.

Example: A 32x32 multiplier can require 30,000+ gates, exceeding typical limits.

Solution:

  • Estimate gates before implementation
  • Prefer comparison-based or additive approaches when possible
  • Consider iterative algorithms that reuse circuitry

Off-by-One Errors

Mistake: Getting fib(k-1) instead of fib(k) due to iteration count errors.

Solution:

  • Clearly define what iteration 0, 1, 2,... produce
  • Trace through fib(0), fib(1), fib(2) by hand to verify indexing

Feedback Loop Confusion

Mistake: Misunderstanding how feedback stabilizes in event-driven simulation.

Example: A toggle test showing 0 after even iterations is correct, not broken.

Solution:

  • Test feedback loops with minimal circuits first
  • Understand that value after N steps depends on initial value and operation

Mux Argument Order

Mistake: Confusing which input is selected when selector is 0 vs 1.

Solution:

  • Establish and document convention at the start
  • Test with a minimal mux circuit before using in larger designs

Recommended Workflow

  1. Read all provided examples and documentation
  2. Paper-trace the algorithm with test values
  3. Estimate gate counts for chosen approach
  4. Build and test primitive gates
  5. Build and test arithmetic components
  6. Build and test algorithm-specific logic
  7. Integrate components
  8. Test with edge cases
  9. Optimize if needed (reduce gates, fix bugs)

Testing Checklist

  • Input signals preserved correctly
  • Adder produces correct sums
  • Comparator handles all cases (less, equal, greater)
  • isqrt(0) = 0
  • isqrt(1) = 1
  • isqrt(perfect square) = exact root
  • fib(0) = 0
  • fib(1) = 1
  • Combined circuit matches expected outputs
  • Gate count within limits

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

28.14%
按下载量换算78

Gemini CLI

22.11%
按下载量换算61

Codex

19.76%
按下载量换算55

Antigravity

13.88%
按下载量换算38

OpenCode

7.27%
按下载量换算20

windsurf

3.73%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills