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

asi-integrated阿西综合

Agent Skill

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

总安装

288

周安装

12

GitHub Stars

17

下载量

96
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

asi-integrated 用于整合所有加载技能形成协调系统,支撑人工智能超级智能的技能编排。

  • 构建技能格点结构,支持导航、调度与确定性控制等多维度能力融合。
  • 通过 npx skills add 命令安装,适用于复杂 Agent 生态下的技能协同管理场景。
  • 使用前建议核验各子技能状态,避免因依赖缺失导致系统功能不完整。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

ASI Integrated Skill

Synthesizes all loaded skills into a coherent system for Artificial Superintelligence skill orchestration.

Skill Lattice

                    ┌─────────────────┐
                    │  glass-bead-game │
                    │  (synthesis)     │
                    └────────┬────────┘
                             │
         ┌───────────────────┼───────────────────┐
         │                   │                   │
┌────────▼────────┐ ┌────────▼────────┐ ┌────────▼────────┐
│  world-hopping  │ │  bisimulation   │ │  triad-interleave│
│  (navigation)   │ │  (dispersal)    │ │  (scheduling)    │
└────────┬────────┘ └────────┬────────┘ └────────┬────────┘
         │                   │                   │
         └───────────────────┼───────────────────┘
                             │
                    ┌────────▼────────┐
                    │     gay-mcp      │
                    │  (deterministic  │
                    │   coloring)      │
                    └────────┬────────┘
                             │
                    ┌────────▼────────┐
                    │     acsets       │
                    │  (data model)    │
                    └─────────────────┘

Unified Protocol

1. Schema (ACSets)

@present SchASIWorld(FreeSchema) begin
  World::Ob
  Skill::Ob
  Agent::Ob

  source::Hom(World, World)
  target::Hom(World, World)

  has_skill::Hom(Agent, Skill)
  inhabits::Hom(Agent, World)

  Seed::AttrType
  Trit::AttrType

  seed::Attr(World, Seed)
  color_trit::Attr(Skill, Trit)
end

2. Color Generation (Gay-MCP)

from gay import SplitMixTernary, TripartiteStreams

def color_world(world_seed: int, skill_index: int) -> dict:
    gen = SplitMixTernary(world_seed)
    return gen.color_at(skill_index)

3. World Navigation (World-Hopping)

def hop_between_worlds(w1, w2, event_name: str):
    distance = world_distance(w1, w2)
    if valid_hop(w1, w2):
        event = Event(site=["skill"], name=event_name)
        return event.execute(w1)
    return None

4. Skill Dispersal (Bisimulation)

async def disperse_skill(skill_path: str, agents: list):
    game = BisimulationGame()
    for i, agent in enumerate(agents):
        trit = (i % 3) - 1  # GF(3) balanced
        game.attacker_move(agent, skill_path, trit)
        game.defender_respond(await agent.receive(skill_path))
    return game.arbiter_verify()

5. Parallel Execution (Triad Interleave)

def schedule_skill_updates(seed: int, n_agents: int):
    interleaver = TriadInterleaver(seed)
    schedule = interleaver.interleave(
        n_triplets=n_agents // 3,
        policy="gf3_balanced"
    )
    return schedule

6. Synthesis (Glass Bead Game)

def synthesize_skills(*skills):
    game = GlassBeadGame()
    for skill in skills:
        game.add_bead(skill.name, skill.domain)

    # Connect skills via morphisms
    game.connect("acsets", "gay-mcp", via="seed_to_color")
    game.connect("gay-mcp", "triad-interleave", via="color_stream")
    game.connect("triad-interleave", "bisimulation", via="schedule")
    game.connect("bisimulation", "world-hopping", via="dispersal")

    return game.score()

~/worlds Letter Index

LetterDomainKey Projects
aCategory TheoryACSets.jl, Catlab.jl, Decapodes.jl
bTerminalbmorphism/trittty
pInfrastructureplurigrid/oni, alpaca.cpp
tCollaborationCatColab
eHoTTinfinity-cosmos (Lean 4)
rType Theoryrzk (simplicial HoTT)
nKnowledgenlab-content
oMusicrubato-composer

GF(3) Conservation Law

All operations preserve:

∑ trits ≡ 0 (mod 3)

Across:

  • World hops (Attacker -1, Defender +1, Arbiter 0)
  • Color triplets (MINUS, ERGODIC, PLUS)
  • Schedule entries (balanced per triplet)
  • Skill dispersal (agent assignments)

Commands

# Generate integrated schedule
just asi-schedule 0x42D 10

# Disperse skills to all agents
just asi-disperse ~/.claude/skills/

# Verify GF(3) conservation
just asi-verify

# Play glass bead synthesis
just asi-synthesize a b p t

# World hop between letters
just asi-hop a t

Starred Gists: Fixpoint & Type Theory Resources

Curated from bmorphism's GitHub interactions:

zanzix: Fixpoints of Indexed Functors

Fix.idr - Idris indexed functor fixpoints for graphs, multi-graphs, poly-graphs.

data IFix : (f : (k -> Type) -> k -> Type) -> k -> Type where
  In : f (IFix f) i -> IFix f i

VictorTaelin: ITT-Flavored CoC Type Checker

itt-coc.ts - Intensional Type Theory CoC in TypeScript.

VictorTaelin: Affine Types

Affine.lean - Linear/affine type experiments in Lean 4.

rdivyanshu: Streams & Unique Fixed Points

Nats.dfy - Dafny streams with unique fixpoint theorems.

Keno: Abstract Lattice

abstractlattice.jl - Julia abstract lattice. Comment: "a quantum of abstract solace ∞"

norabelrose: Fast Kronecker Decomposition

kronecker_decompose.py - Optimal Kronecker decomposition.

borkdude: UUID v1 in Babashka

uuidv1.clj - Deterministic UUID generation in Clojure.

QuickCheck/Adhesive Rewriting Integration

Property-based testing connects to ASI through autopoietic generators:

# QuickCheck-style recursive generator with GF(3) conservation
function autopoietic_tree(seed::UInt64, depth::Int)
    rng = SplitMix64(seed)
    trit = mod(next_u64!(rng), 3) - 1

    if depth == 0 || trit == -1  # MINUS = terminate
        return Leaf(color_at(seed))
    else
        left_seed, right_seed = split(rng)
        return Node(
            trit = trit,
            left  = autopoietic_tree(left_seed, depth-1),
            right = autopoietic_tree(right_seed, depth-1)
        )
    end
end

Shrinking as Adhesive Complement

QuickCheck shrinking = finding minimal ∼Q_G in adhesive categories:

  • Decomposition: Q ≅ Q_G +_{Q_L} Q_R
  • Complement: ∼A is smallest subobject where X = A ∨ ∼A
  • Shrunk value = complement of failed portion

Transitive Closure (Kris Brown)

From Incremental Query Updating in Adhesive Categories:

path(X,Z) :- path(X,Y), edge(Y,Z).

Incremental update: When we apply rule to add path(a,b),
new matches = outgoing edges from b (rooted search)

References

Directory Tree

plurigrid/asi/
├── package.json
├── bin/cli.js
├── README.md
└── skills/
    ├── a/SKILL.md     # AlgebraicJulia
    ├── b/SKILL.md     # bmorphism
    ├── c/SKILL.md     # cognitect
    ├── d/SKILL.md     # claykind
    ├── e/SKILL.md     # infinity-cosmos
    ├── f/SKILL.md     # clojure-site
    ├── g/SKILL.md     # archiver-bot
    ├── h/SKILL.md     # gdlog
    ├── i/SKILL.md     # InverterNetwork
    ├── k/SKILL.md     # kubeflow
    ├── l/SKILL.md     # pretty-bugs
    ├── m/SKILL.md     # awesome-category-theory
    ├── n/SKILL.md     # nlab-content
    ├── o/SKILL.md     # oeis, rubato-composer
    ├── p/SKILL.md     # plurigrid
    ├── q/SKILL.md     # quadrat
    ├── r/SKILL.md     # rzk
    ├── s/SKILL.md     # mathematicians
    ├── t/SKILL.md     # CatColab
    ├── v/SKILL.md     # viro
    └── _integrated/   # This skill
        └── SKILL.md

Scientific Skill Interleaving

This skill connects to the K-Dense-AI/claude-scientific-skills ecosystem:

Graph Theory

  • networkx [○] via bicomodule

- Universal graph hub

Bibliography References

  • general: 734 citations in bib.duckdb

SDF Interleaving

This skill connects to Software Design for Flexibility (Hanson & Sussman, 2021):

Primary Chapter: 10. Adventure Game Example

Concepts: autonomous agent, game, synthesis

GF(3) Balanced Triad

_integrated (−) + SDF.Ch10 (+) + [balancer] (○) = 0

Skill Trit: -1 (MINUS - verification)

Secondary Chapters

  • Ch3: Variations on an Arithmetic Theme
  • Ch1: Flexibility through Abstraction
  • Ch4: Pattern Matching

Connection Pattern

Adventure games synthesize techniques. This skill integrates multiple patterns.

Cat# Integration

This skill maps to Cat# = Comod(P) as a bicomodule in the equipment structure:

Trit: 0 (ERGODIC)
Home: Prof
Poly Op: ⊗
Kan Role: Adj
Color: #26D826

GF(3) Naturality

The skill participates in triads satisfying:

(-1) + (0) + (+1) ≡ 0 (mod 3)

This ensures compositional coherence in the Cat# equipment structure.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.22%
按下载量换算34

Claude

31.99%
按下载量换算31

Cursor

20.14%
按下载量换算19

Gemini CLI

8.63%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills