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

complexitycomplexity 搜索

Agent Skill

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

总安装

449

周安装

18

GitHub Stars

公开资料未说明

下载量

145
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add v1-io/v1tamins --skill "complexity"

简介

complexity 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于算法复杂度分析、性能优化或系统设计相关的技术调研。
  • 通过 npx skills add v1-io/v1tamins --skill "complexity" 安装,需确认权限范围和维护状态。
  • 使用前建议核实是否会触发联网、命令执行或文件读写,确保符合企业安全策略。
  • 可结合来源仓库和原始 README 进一步了解具体功能和适用场景。

SKILL.md

name
complexity
description
Reduce cognitive complexity of functions while preserving behavior
allowed-tools

Reduce Cognitive Complexity

Refactor functions to reduce cognitive complexity score while maintaining identical behavior.

Usage

/complexity [file:function]

Examples:

/complexity                                    # Analyze current diff
/complexity services/analyst/core/query.py    # Analyze specific file
/complexity query.py:process_result           # Analyze specific function

Understanding Cognitive Complexity

What increments complexity (+1 each):

  • Control flow: if, else if, else, ternary operators
  • Loops: for, foreach, while, do while
  • Exception handling: catch
  • Switch statements: switch, case
  • Jump statements: goto, break, continue (labeled)
  • Binary logical operators: &&, || in conditions
  • Recursive function calls

Nesting multiplier:

  • Each nesting level adds +1 to structures nested inside
  • Deeper nesting = harder to understand

What's free (no increment):

  • Function/method calls (encourages extraction)
  • Simple return statements

Target: Keep cognitive complexity under 15 per function

Refactoring Strategies

1. Return Early (Reduce Nesting)

# Before: Complexity 6
def calculate(data):
    if data is not None:  # +1
        total = 0
        for item in data: # +1 +1 (nested)
            if item > 0:  # +1 +2 (nested)
                total += item * 2
        return total

# After: Complexity 4
def calculate(data):
    if data is None:      # +1
        return None
    total = 0
    for item in data:     # +1
        if item > 0:      # +1 +1 (nested)
            total += item * 2
    return total

2. Extract Complex Conditions

# Before: Complexity 5
def process_eligible_users(users):
    for user in users:             # +1
        if ((user.is_active and    # +1 +1 +1 +1
            user.has_profile) or
            user.age > 18):
            user.process()

# After: Complexity 3
def process_eligible_users(users):
    for user in users:             # +1
        if is_eligible_user(user): # +1 +1
            user.process()

def is_eligible_user(user):
    return (user.is_active and user.has_profile) or user.age > 18

3. Break Down Large Functions

Extract logical blocks into separate functions with single responsibilities.

Process

  1. Analyze the target function:

- Current complexity score - What's contributing to it - Deeply nested structures (2+ levels) - Complex boolean conditions

  1. Preserve existing tests - understand coverage before changes
  1. Refactor using strategies above:

- Start with early returns to flatten nesting - Extract complex conditions into named helpers - Break down into smaller functions if still above target - Use clear, descriptive names

  1. Verify behavior - run existing tests
  1. Add tests if needed - for new helper functions with complex logic

Critical Requirements

  • ✅ Maintain identical behavior
  • ✅ Follow existing code patterns
  • ✅ Use descriptive names for extracted functions
  • ✅ Keep complexity under 15 per function
  • Run tests to verify correctness

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

30.64%
按下载量换算44

windsurf

20.83%
按下载量换算30

trae

18.19%
按下载量换算26

OpenCode

12.85%
按下载量换算19

Codex

8.46%
按下载量换算12

Antigravity

3.49%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

权限需确认

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

安装前确认

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

来源信息

继续浏览同类 Skills