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

session-create会话创建

Agent Skill

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

总安装

447

周安装

19

GitHub Stars

公开资料未说明

下载量

157
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/michael-menard/monorepo --skill session-create

简介

session-create 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理时使用。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

/session-create - Open a Context Session

Description

Opens a new context session at the beginning of a leader agent's workflow. The session record tracks token usage, agent identity, and story context across multi-agent workflows. Workers inherit this session via the companion session-inherit skill.

Session tracking is telemetry — it must never gate or block a workflow. If the session cannot be created (DB unavailable, null return), the leader emits a warning and continues normally.

Usage

/session-create                                      # called at start of leader workflow
/session-create storyId=WINT-1234 phase=execute      # with story and phase context

Parameters

ParameterRequiredDefaultDescription
agentNameYes*(current agent name)*The name of the leader agent opening the session
storyIdNonullStory ID for this workflow (e.g. WINT-1234)
phaseNonullCurrent workflow phase (e.g. execute, plan, qa)
sessionIdNo*(auto-generated UUID)*Override the session UUID (rarely needed)

What It Does

This skill:

  1. Calls mcp__postgres-knowledgebase__sessionCreate with agentName, storyId, and phase
  2. Records the returned session_id and emits the structured SESSION CREATED output block
  3. Handles null returns (DB error) gracefully — emits SESSION UNAVAILABLE and continues

Execution Steps

Step 1: Invoke sessionCreate

Call the MCP tool with required and optional fields:

const result = await mcp__postgres_knowledgebase__sessionCreate({
  agentName: 'dev-execute-leader', // required — name of THIS agent
  storyId: 'WINT-2090', // optional
  phase: 'execute', // optional
  // sessionId: crypto.randomUUID()  // omit to auto-generate
})

SessionCreateInput fields:

FieldTypeRequiredNotes
agentNamestring (min 1)YesName of the leader agent
sessionIdUUID stringNoAuto-generated if omitted
storyIdstring \nullNoStory identifier
phasestring \nullNoWorkflow phase label
inputTokensint >= 0NoDefault: 0
outputTokensint >= 0NoDefault: 0
cachedTokensint >= 0NoDefault: 0
startedAtDateNoDefaults to now()

Step 2: Handle the result

Success pathresult is not null:

if (result && result.sessionId) {
  // Emit the structured output block (see Output section below)
}

Null-return path — DB error or connection failure:

if (result === null) {
  // Emit SESSION UNAVAILABLE warning and continue
}

Step 3: Emit structured output

On success, always emit the following block so workers can parse the session ID:

SESSION CREATED
  session_id: a1b2c3d4-e5f6-7890-abcd-ef1234567890
  agent:      dev-execute-leader
  story_id:   WINT-2090
  phase:      execute
The session_id line must match the regex: /SESSION CREATED\n\s+session_id:\s+([0-9a-f-]{36})/

Output

Success

After a successful sessionCreate call, emit:

SESSION CREATED
  session_id: {uuid returned by sessionCreate}
  agent:      {agentName}
  story_id:   {storyId or "—"}
  phase:      {phase or "—"}

Null Return (Graceful Degradation)

If sessionCreate returns null (DB unavailable or insertion error):

SESSION UNAVAILABLE — continuing without session tracking

Then continue the workflow normally. Do not block, retry, or raise an error. Session tracking is telemetry, not a gate.

Session Lifecycle

The full session lifecycle across a multi-agent workflow:

  1. Leader opens — calls session-createsessionCreate → emits SESSION CREATED
  2. Workers inherit — each worker calls session-inheritsessionQuery(activeOnly: true) → emits SESSION INHERITED
  3. Workers update tokens — call sessionUpdate({sessionId, mode: 'incremental', inputTokens, outputTokens})
  4. Leader closes — the leader (and ONLY the leader that opened the session) calls sessionComplete
  5. Periodic cleanupsessionCleanup({retentionDays: 90}) archives old sessions (future: WINT-2100)
Workers MUST NOT call sessionComplete. See the session-inherit skill for the full restriction.

Graceful Degradation

Session tracking is purely telemetry. The following conditions must NOT block the workflow:

ConditionBehavior
DB connection unavailableEmit SESSION UNAVAILABLE — continuing without session tracking and proceed
sessionCreate returns nullSame as above
MCP tool unavailableLog warning, proceed without session
Network timeoutLog warning, proceed without session

The leader's downstream work (plan execution, file writes, code generation) must continue regardless of session state.

Examples

Minimal invocation

const session = await mcp__postgres_knowledgebase__sessionCreate({
  agentName: 'dev-execute-leader',
})
// Emits:
// SESSION CREATED
//   session_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6
//   agent:      dev-execute-leader
//   story_id:   —
//   phase:      —

Full invocation with context

const session = await mcp__postgres_knowledgebase__sessionCreate({
  agentName: 'dev-execute-leader',
  storyId: 'WINT-2090',
  phase: 'execute',
})
// Emits:
// SESSION CREATED
//   session_id: 3fa85f64-5717-4562-b3fc-2c963f66afa6
//   agent:      dev-execute-leader
//   story_id:   WINT-2090
//   phase:      execute

Null-return path

const session = await mcp__postgres_knowledgebase__sessionCreate({
  agentName: 'dev-execute-leader',
  storyId: 'WINT-2090',
  phase: 'execute',
})

if (!session) {
  // Emit:
  // SESSION UNAVAILABLE — continuing without session tracking
  // then continue with the rest of the workflow normally
}

Integration Notes

  • The session_id from SESSION CREATED should be passed to spawned workers via their prompt context so they can call session-inherit
  • Workers use sessionQuery({activeOnly: true, limit: 50}) and filter client-side — they do NOT receive a sessionId filter directly
  • The leader is solely responsible for calling sessionComplete at the end of its workflow

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.91%
按下载量换算55

Claude

30.5%
按下载量换算48

Cursor

16.15%
按下载量换算25

Gemini CLI

9.07%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills