Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计未展示

suparank%2fsession超级%2fsession

Agent Skill

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

总安装

517

周安装

22

GitHub Stars

10

下载量

181
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/egebese/suparank --skill suparank/session

简介

suparank/session 提供信息查找、检索与筛选能力,适合按任务线索快速定位内容。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等平台的研究与数据筛选场景。
  • 通过 npx skills add 从 GitHub 安装,实际功能需参考原始项目说明。
  • 使用前请检查其是否具备联网、命令执行或文件访问权限。
  • suparank%2fsession 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Suparank Session Management

You manage the user's content session - saved articles, workflow state, and content storage.

File Locations

  • Session state: .claude/suparank-session.json (in project root)
  • Saved content: .claude/suparank-content/ (in project root)
  • Project config: .claude/suparank.json (in project root)

Commands

Detect what the user wants and execute the appropriate action:


Show Session Status

Triggers: "show session", "session status", "what's in my session", "show my articles"

  1. Read .claude/suparank-session.json
  2. If it doesn't exist, say: "No active session. Create content with /suparank to start."
  3. If it exists, display:
Session Status
══════════════
Workflow: [workflow_id]
Request: [original request]
Phase: [current_phase]
Articles: [saved count] / [total expected]

Articles:
  1. [title] - [word_count] words - [status] - Saved [date]
  2. [title] - [word_count] words - [status] - Saved [date]
  ...

Research: [Available / Not done]

List Saved Content

Triggers: "list articles", "list saved content", "show past articles", "what articles do I have"

  1. Check if .claude/suparank-content/ directory exists
  2. If not, say: "No saved content yet. Create content with /suparank to start."
  3. If it exists, list all subdirectories (each is a saved article)
  4. For each, read metadata.json to get title, date, word count

Display:

Saved Articles
══════════════
1. 2026-02-23-how-ai-is-changing/
   Title: How AI is Changing Content Marketing
   Words: 2,800 | Keywords: AI content marketing
   Saved: 2026-02-23 10:30

2. 2026-02-23-seo-best-practices/
   Title: SEO Best Practices for 2026
   Words: 3,100 | Keywords: SEO best practices
   Saved: 2026-02-23 11:45

Save Article

Triggers: "save this article", "save content", "save my article"

This is typically called automatically by the pipeline/create skills, but can be invoked manually.

  1. The user should provide or have just written:

- title: Article title - content: Full article markdown - keywords: Target keywords (array) - meta_description: SEO meta description

  1. Generate a folder name: YYYY-MM-DD-slug-from-title
  2. Create the directory: .claude/suparank-content/[folder-name]/
  3. Write the article to article.md
  4. Write metadata to metadata.json:
{
  "title": "Article Title",
  "slug": "article-title",
  "version": 1,
  "keywords": ["keyword1", "keyword2"],
  "meta_description": "SEO description...",
  "word_count": 2800,
  "saved_at": "2026-02-23T10:30:00Z",
  "updated_at": "2026-02-23T10:30:00Z",
  "published_to": [
    {
      "platform": "wordpress",
      "post_id": "12345",
      "url": "https://myblog.com/article-title",
      "published_at": "2026-02-23T11:00:00Z",
      "status": "draft"
    }
  ],
  "image_urls": [
    {
      "url": "https://fal.ai/...",
      "alt_text": "Article hero image",
      "type": "cover"
    }
  ]
}

When updating an existing article, increment version and update updated_at.

  1. Update .claude/suparank-session.json to add this article to the articles array:
{
  "workflow_id": "wf_[timestamp]",
  "articles": [
    {
      "id": "article-1",
      "title": "Article Title",
      "folder": ".claude/suparank-content/2026-02-23-article-title/",
      "keywords": ["keyword1"],
      "meta_description": "...",
      "word_count": 2800,
      "status": "saved",
      "published_to": [],
      "image_urls": [],
      "saved_at": "2026-02-23T10:30:00Z"
    }
  ],
  "saved_at": "2026-02-23T10:30:00Z"
}
  1. Confirm: "Article saved! [title] ([word_count] words) →.claude/suparank-content/[folder]/"

Load Article

Triggers: "load article", "open article", "bring back article", "edit my article about..."

  1. If the user specifies a folder name or title, find it in .claude/suparank-content/
  2. If not specified, run "List Saved Content" first and ask them to choose
  3. Read article.md and metadata.json from the folder
  4. Load the article into the session by updating .claude/suparank-session.json
  5. Display the article title and first few lines
  6. Say: "Article loaded into session. You can now optimize or publish it."

Remove Article from Session

Triggers: "remove article", "delete from session", "remove article 2"

  1. Read .claude/suparank-session.json
  2. If the user specifies a number, remove that article from the session's articles array
  3. This does NOT delete the files from .claude/suparank-content/ - just removes from active session
  4. Update the session file
  5. Confirm: "Article [title] removed from session. Files still saved in.claude/suparank-content/[folder]/"

Clear Session

Triggers: "clear session", "start fresh", "reset session"

  1. Ask for confirmation: "This will clear your active session (all article references). Saved files in.claude/suparank-content/ will NOT be deleted. Continue?"
  2. If confirmed, delete or reset .claude/suparank-session.json to:
{
  "workflow_id": null,
  "articles": [],
  "research_results": {},
  "saved_at": null
}
  1. Confirm: "Session cleared. Saved content files are still in.claude/suparank-content/"

Delete Saved Content

Triggers: "delete article files", "permanently delete", "remove saved files"

  1. This PERMANENTLY deletes files from disk
  2. Ask for confirmation with the specific folder name
  3. If confirmed, delete the folder from .claude/suparank-content/
  4. Also remove from session if present
  5. Confirm: "Permanently deleted [folder]. This cannot be undone."

Session File Schema

The session file .claude/suparank-session.json tracks the current workflow:

{
  "workflow_id": "wf_1709234567890",
  "request": "Write 3 articles about AI content tools",
  "current_phase": "creation",
  "total_articles": 3,
  "articles": [
    {
      "id": "article-1",
      "title": "How AI is Changing Content Marketing",
      "folder": ".claude/suparank-content/2026-02-23-how-ai-is-changing/",
      "keywords": ["AI content marketing"],
      "meta_description": "...",
      "word_count": 2800,
      "status": "saved",
      "published_to": [],
      "image_urls": [],
      "saved_at": "2026-02-23T10:30:00Z"
    }
  ],
  "research_results": {
    "keywords": {
      "primary": [
        { "keyword": "AI content tools", "volume": "2.4K", "difficulty": 35, "intent": "commercial" }
      ],
      "longtail": [
        { "keyword": "best AI tools for blog writing", "volume": "720", "difficulty": 18, "content_type": "listicle" }
      ],
      "questions": [
        { "question": "What are the best AI content tools?", "volume": "590", "snippet_opportunity": true }
      ],
      "selected_primary": "AI content tools",
      "selected_secondary": ["AI writing software", "content automation"]
    },
    "seo_strategy": {
      "search_intent": "commercial",
      "content_type": "listicle",
      "recommended_title": "10 Best AI Content Tools in 2026",
      "outline": ["Introduction", "Tool 1...", "Conclusion", "FAQ"]
    },
    "topical_map": {
      "pillar": "AI Content Tools Guide",
      "clusters": ["AI writing tools", "AI SEO tools", "AI image tools"]
    },
    "content_calendar": {
      "articles": [
        { "order": 1, "title": "...", "keyword": "...", "type": "guide" }
      ]
    }
  },
  "saved_at": "2026-02-23T10:30:00Z"
}

Directory Initialization

Before writing ANY files, ALWAYS run:

mkdir -p .claude/suparank-content

This ensures both .claude/ and .claude/suparank-content/ exist.

Important Notes

  • Always run directory initialization before any file write operation
  • Session is project-scoped (different projects have independent sessions)
  • Content folder names use format: YYYY-MM-DD-slug-from-title
  • Never delete files without explicit user confirmation
  • Article status can be: "saved", "published", "draft"
  • When updating an article, increment version in metadata.json and update updated_at

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

39.6%
按下载量换算72

Claude

29.24%
按下载量换算53

Cursor

18.25%
按下载量换算33

Gemini CLI

9.18%
按下载量换算17

安全审计

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

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills