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

sicpsicp 命令行

Agent Skill

sicp 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

203

周安装

8

GitHub Stars

17

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/plurigrid/asi --skill sicp

简介

sicp 用于处理 GitHub 仓库协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中整理 Issue、PR 和代码变更时使用。

  • 它支持工作流管理和任务追踪,提升开发协作效率。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令添加技能,具体用法请参考原始 README。
  • 安装前建议确认权限范围,避免不必要的网络请求。
  • sicp 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

SICP Skill

*"Programs must be written for people to read, and only incidentally for machines to execute."* — Abelson & Sussman

Geometric morphism translation from sicp.info preserving the hierarchical node structure as an ACSet with GF(3) coloring for trifurcated processing.

Overview

Structure and Interpretation of Computer Programs (Second Edition) by Harold Abelson and Gerald Jay Sussman, with Julie Sussman Foreword by Alan J. Perlis © 1996 Massachusetts Institute of Technology

The wizard book for computational thinking—procedures as abstractions, data as abstractions, and the interpreter as the ultimate abstraction.

Chapters

Chapter 1: Building Abstractions with Procedures [PLUS]

  • 1-1: The Elements of Programming (expressions, naming, evaluation)
  • 1-2: Procedures and the Processes They Generate (recursion, iteration, orders of growth)
  • 1-3: Formulating Abstractions with Higher-Order Procedures (λ, returned values)

Key concepts: Substitution model, lexical scoping, fixed points, Newton's method

Chapter 2: Building Abstractions with Data [ERGODIC]

  • 2-1: Introduction to Data Abstraction (rational numbers, barriers)
  • 2-2: Hierarchical Data and the Closure Property (sequences, trees, picture language)
  • 2-3: Symbolic Data (quotation, differentiation, sets, Huffman encoding)
  • 2-4: Multiple Representations for Abstract Data (tagged data, data-directed programming)
  • 2-5: Systems with Generic Operations (type coercion, symbolic algebra)

Key concepts: Pairs, cons/car/cdr, closure property, abstraction barriers, message passing

Chapter 3: Modularity, Objects, and State [PLUS]

  • 3-1: Assignment and Local State (set!, costs of assignment)
  • 3-2: The Environment Model of Evaluation (frames, procedure objects)
  • 3-3: Modeling with Mutable Data (queues, tables, digital circuits, constraints)
  • 3-4: Concurrency: Time Is of the Essence (serializers, deadlock)
  • 3-5: Streams (delayed evaluation, infinite streams, signal processing)

Key concepts: State, identity, time, streams vs objects duality

Chapter 4: Metalinguistic Abstraction [PLUS]

  • 4-1: The Metacircular Evaluator (eval/apply, syntax procedures, environments)
  • 4-2: Variations on a Scheme (lazy evaluation, normal vs applicative order)
  • 4-3: Variations on a Scheme: Nondeterministic Computing (amb, backtracking)
  • 4-4: Logic Programming (unification, pattern matching, query systems)

Key concepts: eval/apply loop, special forms, thunks, amb evaluator, Prolog-style logic

Chapter 5: Computing with Register Machines [ERGODIC]

  • 5-1: Designing Register Machines (data paths, controllers, subroutines)
  • 5-2: A Register-Machine Simulator (the machine model, assembler)
  • 5-3: Storage Allocation and Garbage Collection (vectors, stop-and-copy)
  • 5-4: The Explicit-Control Evaluator (machine code for Scheme)
  • 5-5: Compilation (structure of compiler, lexical addressing, interfacing)

Key concepts: Register allocation, continuation-passing, tail recursion, compilation

GF(3) Conservation

The Info file nodes distribute perfectly across GF(3) trits:

Total nodes: 138
MINUS (-1):  46  ████████████████
ERGODIC (0): 46  ████████████████
PLUS (+1):   46  ████████████████
Sum mod 3:   0
Conserved:   ✓ BALANCED

This perfect 46/46/46 distribution enables optimal trifurcated parallel processing.

ACSet Schema (Geometric Morphism)

The translation from Info to Skill uses a geometric morphism f: InfoTopos → SkillTopos:

Objects (Ob):
  Node      - Info nodes (sections, subsections)
  Edge      - Navigation and reference links
  Content   - Extracted text and code blocks

Morphisms (Hom):
  next: Node → Node     - Sequential navigation
  prev: Node → Node     - Backward navigation
  up:   Node → Node     - Hierarchical parent
  menu: Node → Node     - Chapter/section containment
  xref: Node → Node     - Cross-references (*Note)

Attributes:
  trit: Node → GF(3)    - Deterministic color assignment
  text: Node → String   - Node content

Integration with Gay.jl

The GF(3) coloring uses the same SplitMix64 hash as Gay.jl:

using Gay

# Color SICP nodes deterministically
for node in sicp_nodes
    seed = hash(node.id)
    color = gay_color(seed)  # Returns palette with GF(3) trit
    node.trit = color.trit
end

# Verify conservation
@assert sum(n.trit for n in sicp_nodes) % 3 == 0

Commands

# Read in Emacs
info sicp

# Re-translate with geometric morphism
bb info_to_skill_morphism.bb translate sicp.info

# Verify grammar and GF(3) conservation
bb info_to_skill_morphism.bb verify sicp.info

# Parse to CRDT-style sexp
bb info_to_skill_morphism.bb parse sicp.info > sicp.sexp

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.14%
按下载量换算24

Claude

28.13%
按下载量换算18

Cursor

19.53%
按下载量换算13

Gemini CLI

8.48%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills