Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

serenaserena 搜索

Agent Skill

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

总安装

218

周安装

9

GitHub Stars

64

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dianel555/dskills --skill serena

简介

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

  • 适用于语义级代码导航与项目记忆管理类开发辅助场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限与网络访问能力。
  • 使用前建议核实维护状态及是否涉及联网、命令执行等敏感操作。
  • serena 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Serena - Semantic Code Understanding

IDE-like semantic code operations via CLI. Provides symbol-level code navigation, editing, and project memory.

Prerequisites

pip install serena-agent typer pyyaml

Quick Start

First-time setup: Launch the Web Dashboard to initialize and register the project:

python -m tools dashboard serve --open-browser

This will:

  • Initialize Serena configuration
  • Register the current project in ~/.serena/serena_config.yml
  • Open the Web Dashboard for monitoring and configuration

Configuration: Edit .env file in skills/serena/ directory:

SERENA_CONTEXT=claude-code
SERENA_MODES=interactive,editing,onboarding
SERENA_PROJECT=.

Usage

Basic Command Structure

python -m tools [GLOBAL OPTIONS] <command> [COMMAND OPTIONS]

Global Options (must be specified before the command):

  • -p, --project PATH - Project directory (default: current directory, env: SERENA_PROJECT)
  • -c, --context TEXT - Execution context (auto-detected if not specified, env: SERENA_CONTEXT)
  • -m, --mode TEXT - Operation modes (can be specified multiple times, env: SERENA_MODES)

Working with Different Projects

Important: When working with projects in different locations (especially cross-drive on Windows), use --project:

# Correct: Use --project for different project locations
python -m tools --project "/path/to/project" symbol find MyClass
python -m tools --project "E:\MyProject" file search "pattern"

# Incorrect: Don't use --path with absolute paths from different drives
python -m tools file search "pattern" --path "E:\MyProject"  # Will fail!

The --path option in subcommands expects relative paths within the project. Always use --project to set the project root first.

Common Operations

# Dashboard
python -m tools dashboard serve --open-browser
python -m tools dashboard info

# Symbol operations
python -m tools symbol find MyClass --body
python -m tools symbol overview src/main.py
python -m tools symbol refs MyClass/method
python -m tools symbol rename OldName NewName --path src/file.py

# Memory operations
python -m tools memory list
python -m tools memory read project_overview
python -m tools memory write api_notes --content "..."

# File operations
python -m tools file list --recursive
python -m tools file find "**/*.py"
python -m tools file search "TODO:.*" --path src

# Extended tools
python -m tools cmd run "git status"
python -m tools config read config.json

Tool Routing Policy

Prefer Serena Over Built-in Tools

TaskAvoidUse Serena CLI
Find functiongrep "def func"symbol find func --body
List file structurecat file.pysymbol overview file.py
Find usagesgrep "func("symbol refs func
Edit functionEdit toolsymbol replace func --path file.py
RenameManual find/replacesymbol rename old new --path file.py

When to Use Built-in Tools

  • Simple text search (non-code patterns)
  • Configuration files (JSON, YAML)
  • Documentation files (Markdown)

Command Reference

Dashboard Commands

CommandDescription
dashboard serve [--open-browser] [--browser-cmd <path>]Start Web Dashboard server
dashboard infoShow current configuration
dashboard toolsList active and available tools
dashboard modesList active and available modes
dashboard contextsList active and available contexts

Symbol Commands

CommandDescription
symbol find <name> [--body] [--depth N] [--path file]Find symbols by name
symbol overview <path>List all symbols in file
symbol refs <name> [--path file]Find symbol references
symbol replace <name> --path <file> --body <code>Replace symbol body
symbol insert-after <name> --path <file> --content <code>Insert after symbol
symbol insert-before <name> --path <file> --content <code>Insert before symbol
symbol rename <name> <new> --path <file>Rename symbol

Memory Commands

CommandDescription
memory listList all memories
memory read <name>Read memory content
memory write <name> --content <text>Create/update memory
memory edit <name> --content <text>Edit memory
memory delete <name>Delete memory

File Commands

CommandDescription
file list [--path dir] [--recursive]List directory
file find <pattern>Find files by glob pattern
file search <pattern> [--path dir]Search for regex pattern

Extended Commands

CommandDescription
cmd run <command> [--cwd dir] [--timeout N]Execute shell command
cmd script <path> [--args "..."]Execute script file
`config read <path> [--format json\yaml]`Read config file
config update <path> <key> <value>Update config value

Workflow Commands

CommandDescription
workflow onboardingRun project onboarding
workflow checkCheck onboarding status
workflow tools [--scope all]List available tools

Workflow Examples

Phase 1: Exploration

python -m tools symbol overview src/main.py           # Understand file structure
python -m tools symbol find MyClass --depth 1         # Explore class members
python -m tools symbol find MyClass/method --body     # Get implementation details

Phase 2: Analysis

python -m tools symbol refs MyClass/method            # Impact analysis
python -m tools memory list                           # Check project knowledge
python -m tools memory read architecture              # Retrieve context

Phase 3: Modification

python -m tools symbol find target --body             # Verify target
python -m tools symbol replace target --path f --body "..."  # Edit
python -m tools symbol rename old new --path f        # Refactor

Error Handling

All CLI output is JSON:

// Success
{"result": <data>}

// Error
{"error": {"code": "ERROR_CODE", "message": "description"}}
Error CodeRecovery
INVALID_ARGSCheck --help
TOOL_NOT_FOUNDUse workflow tools
INIT_FAILEDCheck serena-agent installation
RUNTIME_ERRORCheck error message

Anti-Patterns

ProhibitedCorrect
Read entire file to find functionsymbol find func --body
Grep for function callssymbol refs func
Manual search-replace renamesymbol rename old new --path f
Skip impact analysissymbol refs before editing

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.82%
按下载量换算27

Claude

28.47%
按下载量换算20

Cursor

19.98%
按下载量换算14

Gemini CLI

10.3%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills