Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

athena-work雅典娜工作

Agent Skill

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

总安装

216

周安装

9

GitHub Stars

1

下载量

72
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bluewaves-creations/bluewaves-skills --skill athena-work

简介

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

  • 它处理 Athena 导出的 .athenabrief 研究包,解析笔记摘要、AI 生成简报和二进制资产用于渐进式披露。
  • 使用时需先阅读 instructions.md 指南,再解压 package.athenabrief ZIP 文件并按 brief.md 结构组织内容。
  • 安装前请确认是否具备 GitHub 访问权限,并评估是否会触发网络请求或令牌写入,避免安全风险。
  • athena-work 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Athena Brief Processor

Process .athenabrief research packages exported from the Athena note-taking app. These are ZIP archives containing curated notes, AI-generated summaries, a research brief, and binary assets arranged for progressive disclosure.

Package Structure Overview

package.athenabrief (ZIP)
├── instructions.md        # Static reading guide (start here)
├── brief.md               # Research brief, report, and note index
├── summaries.json         # Machine-readable note summaries
├── manifest.json          # Full machine-readable index and statistics
├── references/*.md        # Full note content with YAML frontmatter
└── assets/*               # Binary attachments (images, PDFs)

Read references/athenabrief-spec.md for full schema details when encountering unusual fields or edge cases.

Processing Workflow

Step 1: Extract and Orient

Extract the .athenabrief ZIP to a temporary working directory. Read instructions.md first to understand the package's progressive disclosure model. This file is static across all packages and confirms the reading order.

Step 2: Progressive Disclosure Reads

Read files in this order, stopping as early as possible:

  1. brief.md — Read the research objective, suggested web research, research report, and note index table. This provides the high-level context and tells you what the brief is about.
  2. summaries.json — Read the machine-readable note summaries. Each entry has generalSummary, contextualSummary, keyContributions, and knowledgeEntries. This gives you enough detail to plan your approach.
  3. Short-circuit check — Decide whether you need deeper detail (see decision matrix below). In ~80% of cases, brief.md + summaries.json provide sufficient context.
  4. manifest.json — Read only when you need statistics, relevance scores, sub-query coverage, or the full research plan. Skip if summaries.json was sufficient.
  5. **references/*.md** — Read individual notes only when you need the full text. Use the manifest or summaries to identify which notes are relevant. Each note has YAML frontmatter with metadata and the full markdown body.
  6. **assets/*** — Read binary assets only when referenced in the work or explicitly requested by the user.

Step 3: Short-Circuit Decision Matrix

After reading brief.md and summaries.json, use this matrix:

SignalAction
User gave specific instructionsFollow them; read references only for cited notes
Brief has clear research objective + report covers itSummarize findings from brief.md + summaries; skip references
User asks "what's in this brief?"Summarize from brief.md table + summaries.json; skip references
Task requires synthesis across notesRead relevant references (use summaries to pick which)
Task requires exact quotes or dataRead the specific reference notes cited
Task requires web researchNote the webResearchInstructions from brief.md; search the web
No user instructions at allUse brief's research objective as the task; process accordingly

Step 4: Engagement Rules

Ask the user for clarification when ANY of these apply:

  • Imprecise brief — The research objective is vague and multiple interpretations exist
  • Fuzzy search instructions — The web research instructions are ambiguous
  • Insufficient knowledge — The brief references domains you cannot reliably address
  • Contradictory data — Notes contain conflicting information with no clear resolution
  • Scope ambiguity — Unclear whether the user wants a summary, analysis, new content, or something else

When the brief contains clear instructions and no ambiguity exists, proceed without asking. Zero-instruction processing is a core feature: the brief itself is the instruction set.

Step 5: Execute and Package

Execute the work based on the brief content and any user instructions. Delegate to other installed skills as needed (e.g., web search, image generation, document creation).

When producing notes as output, ALWAYS use this mandatory header format:

# note title

> short description

---

note content here...

The # title is the note's display name. The > description is a one-line summary. The --- separator always precedes body content.

After completing the work, ALWAYS use the athena-package skill to package results for import back into Athena. Pass all produced notes, relevant assets, and appropriate aurora tags to the packaging step.

Metadata Precedence

When the same data appears in multiple files:

  • manifest.json is authoritative for IDs, paths, and scores
  • summaries.json is authoritative for note summaries
  • YAML frontmatter in references is convenience — use when reading individual notes
  • brief.md tables are human-readable summaries — use for quick orientation

Multi-Brief Workflows

When the user uploads multiple .athenabrief packages:

  1. Process each brief independently first
  2. Look for cross-brief connections using knowledgeEntries (shared entities, themes, linked notes)
  3. Synthesize findings across briefs when the user asks for combined analysis
  4. Package all results into a single .athena package unless the user requests separate packages

Delegation Patterns

The brief may require capabilities beyond text processing:

Brief contentDelegate to
Web research instructions presentWeb search tools
"Create a presentation" in objectivePresentation skills if available
"Generate images" in objectiveImage generation skills if available
Code-related analysisCode analysis tools
No delegation neededProcess directly

Always check what skills and tools are available before promising delegation.

Error Handling

ErrorRecovery
ZIP extraction failsReport the error; ask user to re-export from Athena
instructions.md missingProceed with brief.md; the reading order is documented here
brief.md missingFall back to summaries.json for orientation; warn user
summaries.json malformedFall back to manifest.json + brief.md table
manifest.json malformedUse brief.md table + read references directly
Reference note missingSkip it; warn user; use summary data instead
Asset file missingNote the broken reference; continue processing
All core files missingReport package appears corrupt; ask for re-export

Graceful Degradation Hierarchy

If files are missing or malformed, fall back in this order:

  1. brief.md + summaries.json (ideal path)
  2. brief.md + manifest.json (summaries unavailable)
  3. brief.md alone (both JSON files broken)
  4. manifest.json + references/*.md (brief missing)
  5. references/*.md scanned directly (minimal package)

At each level, warn the user about missing data and reduced accuracy.

Example

Input: User uploads q1-strategy.athenabrief

Processing:

  1. Extract ZIP, read instructions.md (standard reading guide)
  2. Read brief.md — Research objective: "Review Q1 product strategy and roadmap priorities"
  3. Read summaries.json — 5 notes covering roadmap, standups, competitor analysis, sprint retros, launch checklist
  4. Short-circuit: User said "summarize this brief" — brief.md + summaries.json sufficient
  5. Produce executive summary note + key findings note + action items note

Output: Hand off 3 notes to athena-package skill:

  • "Q1 Strategy Summary" (aurora: focus)
  • "Key Findings" (aurora: explore)
  • "Action Items" (aurora: commitments)

Reference Materials

  • references/athenabrief-spec.md — Full .athenabrief format specification: ZIP structure, brief.md sections, summaries.json schema, manifest.json schema, reference note YAML frontmatter, asset naming conventions. Read when encountering unusual fields, debugging malformed packages, or building custom extraction logic.
  • references/processing-strategies.md — Edge case handling, token optimization strategies, graceful degradation details, and advanced multi-brief workflows. Read when facing complex briefs, performance concerns, or unusual package configurations.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.63%
按下载量换算26

Claude

29.28%
按下载量换算21

Cursor

19.19%
按下载量换算14

Gemini CLI

9.24%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills