AgentSkillsCN

session-query

查询过往的 PI 会话,获取上下文信息、决策内容、代码变更或其他相关资料。当您需要回顾父会话或任意会话文件中的历史记录时,此技能便能派上用场。

SKILL.md
--- frontmatter
name: session-query
description: Query previous pi sessions to retrieve context, decisions, code changes, or other information. Use when you need to look up what happened in a parent session or any other session file.
disable-model-invocation: true

Session Query

Query pi session files to retrieve context from past conversations.

This skill is automatically invoked in handed-off sessions when you need to look up details from the parent session.

Usage

Use the session_query tool:

code
session_query(sessionPath, question)
  • sessionPath: Full path to the session file (provided in the "Parent session:" line)
  • question: Specific question about that session (e.g., "What files were modified?" or "What approach was chosen?")

Examples

code
session_query("/path/to/session.jsonl", "What files were modified?")
session_query("/path/to/session.jsonl", "What approach was chosen for authentication?")
session_query("/path/to/session.jsonl", "Summarize the key decisions made")

The tool loads the session and uses an LLM to answer your question based on its contents. Ask specific questions for best results.