Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

hooks-session-start-hookhooks 会话启动钩子

Agent Skill

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

总安装

1,337

周安装

34

GitHub Stars

28

下载量

280
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill hooks-session-start-hook

简介

用于根据关键词或线索快速查找、检索和筛选相关信息。

  • 适用于需要从大量数据中定位候选结果的研究或开发场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装。
  • 支持 Codex、Claude、Cursor、Gemini CLI,安装方式为 github。
  • hooks-session-start-hook 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/hooks:session-start-hook

Generate a SessionStart hook that prepares your repository for Claude Code on the web — installing dependencies, configuring environment variables, and verifying that tests and linters work.

When to Use This Skill

Use this skill when...Use /hooks:hooks-configuration instead when...
Setting up a repo for Claude Code on the webConfiguring other hook types (PreToolUse, Stop, etc.)
Need automatic dependency install in web sessionsNeed general hooks knowledge or debugging
Want tests/linters verified on session startWriting custom hook logic from scratch
Onboarding a project to remote Claude CodeUnderstanding hook lifecycle events

Context

Detect project stack:

  • Lockfiles:!find. -maxdepth 1 \(-name 'package-lock.json' -o -name 'yarn.lock' -o -name 'pnpm-lock.yaml' -o -name 'bun.lockb' -o -name 'poetry.lock' -o -name 'uv.lock' -o -name 'Cargo.lock' -o -name 'go.sum' -o -name 'Gemfile.lock' \)
  • Project files:!find. -maxdepth 1 \(-name 'package.json' -o -name 'pyproject.toml' -o -name 'requirements.txt' -o -name 'Cargo.toml' -o -name 'go.mod' -o -name 'Gemfile' -o -name 'pom.xml' \) -o -maxdepth 1 -name 'build.gradle*'
  • Linter configs:!find. -maxdepth 1 \(-name 'biome.json' -o -name 'biome.jsonc' -o -name '.eslintrc*' -o -name 'eslint.config.*' \)
  • Existing settings:!find.claude -maxdepth 1 -name 'settings.json' -type f
  • Existing hooks dir:!find. -maxdepth 2 -type d -name 'scripts'

Parameters

FlagDefaultDescription
--remote-onlyoffWrap script in CLAUDE_CODE_REMOTE guard — hook exits immediately in local sessions
--no-verifyoffSkip test/linter verification step in the generated script

Execution

Step 1: Detect project stack

Identify all languages and tooling from the context above.

Language detection:

File PresentLanguagePackage Manager (from lockfile)
package.jsonNode.jsnpm (package-lock.json), yarn (yarn.lock), pnpm (pnpm-lock.yaml), bun (bun.lockb)
pyproject.tomlPythonpoetry (poetry.lock), uv (uv.lock), pip (fallback)
requirements.txtPythonpip
Cargo.tomlRustcargo
go.modGogo modules
GemfileRubybundler
pom.xmlJavamaven
build.gradle*Java/Kotlingradle

Test runner detection:

LanguageHow to DetectTest Command
Node.jsscripts.test in package.jsonnpm test / bun test / etc.
Python[tool.pytest] in pyproject.toml, or pytest in depspytest
Rustalways availablecargo test
Goalways availablego test./...
RubyGemfile contains rspec or minitestbundle exec rspec / bundle exec rake test
Javapom.xml / build.gradlemvn test / gradle test

Linter detection:

Config FileLinterCommand
biome.json / biome.jsoncBiomenpx biome check.
.eslintrc* / eslint.config.*ESLintnpx eslint.
[tool.ruff] in pyproject.tomlRuffruff check.
Cargo.tomlClippycargo clippy

Report detected stack to user before generating.

Step 2: Generate hook script

Create the script at scripts/claude-session-start.sh (or .claude/hooks/session-start.sh if no scripts/ directory exists).

Script template — adapt per detected stack:

#!/bin/bash
# Claude Code SessionStart Hook
# Generated by /hooks:session-start-hook
# Installs dependencies and verifies tooling for web sessions

{{ if --remote-only }}
# Only run in remote/web sessions
if [ "$CLAUDE_CODE_REMOTE" != "true" ]; then
  exit 0
fi
{{ endif }}

CONTEXT_PARTS=()

# ──── Dependency Installation ────

{{ if Node.js detected }}
if [ -f "package.json" ]; then
  {{ npm ci / yarn install --frozen-lockfile / pnpm install --frozen-lockfile / bun install --frozen-lockfile }}
  CONTEXT_PARTS+=("Node.js dependencies installed via {{ pm }}")
fi
{{ endif }}

{{ if Python detected }}
if [ -f "pyproject.toml" ]; then
  {{ poetry install / uv sync / pip install -e '.[dev]' }}
  CONTEXT_PARTS+=("Python dependencies installed via {{ pm }}")
elif [ -f "requirements.txt" ]; then
  pip install -r requirements.txt 2>/dev/null
  CONTEXT_PARTS+=("Python dependencies installed via pip")
fi
{{ endif }}

{{ if Rust detected }}
if [ -f "Cargo.toml" ]; then
  cargo fetch 2>/dev/null
  CONTEXT_PARTS+=("Rust dependencies fetched")
fi
{{ endif }}

{{ if Go detected }}
if [ -f "go.mod" ]; then
  go mod download 2>/dev/null
  CONTEXT_PARTS+=("Go dependencies downloaded")
fi
{{ endif }}

{{ if Ruby detected }}
if [ -f "Gemfile" ]; then
  bundle install 2>/dev/null
  CONTEXT_PARTS+=("Ruby dependencies installed via bundler")
fi
{{ endif }}

{{ if Java/maven detected }}
if [ -f "pom.xml" ]; then
  mvn dependency:resolve -q 2>/dev/null
  CONTEXT_PARTS+=("Java dependencies resolved via maven")
fi
{{ endif }}

{{ if Java/gradle detected }}
if [ -f "build.gradle" ] || [ -f "build.gradle.kts" ]; then
  gradle dependencies --quiet 2>/dev/null
  CONTEXT_PARTS+=("Java/Kotlin dependencies resolved via gradle")
fi
{{ endif }}

# ──── Environment Variables ────

if [ -n "$CLAUDE_ENV_FILE" ]; then
  {{ per language: export PATH, NODE_ENV, PYTHONDONTWRITEBYTECODE, etc. }}
fi

{{ unless --no-verify }}
# ──── Verify Tooling ────

{{ if test runner detected }}
if {{ test command --bail / -x / quick mode }} 2>/dev/null; then
  CONTEXT_PARTS+=("Tests: passing")
else
  CONTEXT_PARTS+=("Tests: FAILING - investigate before making changes")
fi
{{ endif }}

{{ if linter detected }}
if {{ lint command --max-diagnostics=0 / --quiet }} 2>/dev/null; then
  CONTEXT_PARTS+=("Linter: clean")
else
  CONTEXT_PARTS+=("Linter: issues detected")
fi
{{ endif }}
{{ end unless }}

# ──── Report Context ────

CONTEXT=$(printf '%s\n' "${CONTEXT_PARTS[@]}")
if [ -n "$CONTEXT" ]; then
  jq -n --arg ctx "$CONTEXT" '{
    "hookSpecificOutput": {
      "hookEventName": "SessionStart",
      "additionalContext": $ctx
    }
  }'
fi

exit 0

Adapt the template by:

  1. Including only sections for detected languages
  2. Using the correct package manager commands with frozen lockfile flags
  3. Using the correct test runner and linter commands
  4. Setting appropriate environment variables per language

Step 3: Configure .claude/settings.json

Read existing .claude/settings.json if it exists. Merge the SessionStart hook — preserve all existing configuration.

If a SessionStart hook already exists, ask the user whether to:

  • Replace the existing SessionStart hook
  • Add alongside the existing hook (both will run)
  • Abort and keep existing configuration

Configuration to merge:

{
  "hooks": {
    "SessionStart": [
      {
        "matcher": "startup",
        "hooks": [
          {
            "type": "command",
            "command": "bash \"$CLAUDE_PROJECT_DIR/scripts/claude-session-start.sh\"",
            "timeout": 120
          }
        ]
      }
    ]
  }
}

Use timeout: 120 (2 minutes) for dependency installation. Adjust path if script is in .claude/hooks/ instead of scripts/.

Step 4: Finalize

  1. Make the script executable: chmod +x <script-path>
  2. Create .claude/ directory if needed for settings.json
  3. Report summary of what was created

Step 5: Verify (unless --no-verify)

Run the generated script locally to confirm it executes without errors. Report results.

Post-Actions

After generating the hook:

  1. Suggest committing the new files: scripts/claude-session-start.sh.claude/settings.json
  2. If --remote-only was NOT used, mention the flag for web-only behavior
  3. If the project needs network access beyond defaults, remind about Claude Code web network settings
  4. Mention matcher options: "startup" (new sessions), "resume" (resumed), "" (all events)

SessionStart Matcher Reference

MatcherFires When
"startup"New session starts
"resume"Session is resumed
"clear"After /clear command
"compact"After context compaction
"" (empty)All SessionStart events

Agentic Optimizations

ContextApproach
Quick setup, skip verification/hooks:session-start-hook --remote-only --no-verify
Full setup with verification/hooks:session-start-hook
Web-only with tests/hooks:session-start-hook --remote-only
Dependency install commandsUse --frozen-lockfile / ci variants for reproducibility
Test verificationUse --bail=1 / -x for fast failure
Linter verificationUse --max-diagnostics=0 / --quiet for pass/fail only

Quick Reference

ItemValue
Script locationscripts/claude-session-start.sh or .claude/hooks/session-start.sh
Settings location.claude/settings.json
Timeout120 seconds (adjustable)
Output formatJSON with hookSpecificOutput.additionalContext
Environment persistenceVia CLAUDE_ENV_FILE
Remote detectionCLAUDE_CODE_REMOTE=true

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.85%
按下载量换算106

Claude

27.71%
按下载量换算78

Cursor

17.89%
按下载量换算50

Gemini CLI

10.3%
按下载量换算29

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills