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

athena-package雅典娜包

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

1

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

  • 它创建 Athena 笔记应用的导入包(ZIP 格式),包含 manifest.json、Markdown 笔记和可选资产文件。
  • 使用时需遵循 aurora 标签规范组织 note 索引,支持 YAML 前置元数据和二进制资源引用,详见 references/athena-spec.md。
  • 安装前请确认是否具备 GitHub 访问权限,并评估是否会触发网络请求或令牌写入,避免安全风险。
  • athena-package 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Athena Package Creator

Create validated .athena import packages for the Athena note-taking app. These are ZIP archives containing a manifest, markdown notes with aurora tags, and optional assets.

Package Format Overview

package.athena (ZIP)
├── manifest.json              # Required: note index with aurora tags
├── notes/
│   ├── project-plan.md        # Markdown notes with optional YAML frontmatter
│   ├── meeting-notes.md
│   └── ...
└── assets/
    ├── diagram.png            # Binary assets referenced from notes
    └── ...

Read references/athena-spec.md for full schema details when handling unusual configurations.

Creation Workflow

Step 1: Gather Content

Collect all content to package:

  • From an athena-work processing session (most common)
  • From conversation results the user wants to save
  • From uploaded files the user wants to import
  • From generated content (research, summaries, analyses)

Step 2: Prepare Notes

For each note, create a markdown file with:

  1. Slug filename — lowercase, hyphenated, .md extension (e.g., project-plan.md)
  2. Mandatory header format (see below)
  3. Optional YAML frontmatter — only title and aurora are parsed; these override manifest values

Place all note files in the notes/ directory.

Mandatory Note Header Format

ALWAYS use this exact structure for every note:

# note title

> short description

---

note content here...
  • # title — Must match the manifest title for this note
  • > description — One-line summary of the note's content
  • --- — Horizontal rule separator; always present before body content
  • Body content follows in standard markdown

Example:

# Market Analysis Q1 2026

> Competitive landscape analysis covering AI assistant market trends and growth

---

## Overview

The AI assistant market grew 40% year-over-year...

Step 3: Assign Aurora Tags

Every note requires an aurora tag. Use this table for selection:

Aurora ValueUse WhenExamples
commitmentsObligations, promises, deadlines, action itemsTask lists, deadline trackers, promises made
focusDeep work, projects needing concentrationProject plans, strategy docs, specs
opsOperations, processes, recurring tasksRunbooks, checklists, SOPs
collabCollaboration, meetings, shared workMeeting notes, team decisions, feedback
lifePersonal, wellbeing, non-workPersonal goals, health notes, hobbies
exploreResearch, ideas, explorationResearch findings, brainstorms, discoveries
archiveCompleted/archived itemsFinished projects, historical records
libraryReference material, resourcesGuides, documentation, collected resources

Default selection guidance:

  • Documentation and guides: library
  • Research and analysis: explore
  • Actionable items with owners/deadlines: commitments
  • Project plans and strategy: focus
  • Meeting summaries: collab

Ask the user when the appropriate tag is ambiguous or when notes span multiple categories.

Step 4: Handle Cross-References

Note-to-note links — Use relative paths:

[Display Title](notes/other-note.md)

Asset references — Use standard markdown image/link syntax:

![Alt text](assets/filename.ext)
[Download report](assets/report.pdf)

Athena's importer remaps these paths to internal UUIDs. References that don't match any file in the package are left unchanged.

Step 5: Build manifest.json

Create the manifest with this structure:

{
  "version": 1,
  "format": "athena",
  "generatedAt": "<ISO 8601 timestamp>",
  "source": "claude",
  "notes": [
    {
      "file": "notes/slug-name.md",
      "title": "Display Title",
      "aurora": "focus",
      "assets": [
        { "name": "diagram.png", "file": "assets/diagram.png", "type": "image" }
      ]
    }
  ]
}

Required fields: version (must be 1), format (must be "athena"), notes array (at least one entry), and for each note: file, title, aurora.

Optional fields: generatedAt, source, notes[].assets (may be omitted or empty array).

Step 6: Validate, Fix, and Create

Run the validation-fix-revalidation loop:

  1. Prepare staging directory — Create a temporary directory with manifest.json, notes/, and assets/ subdirectories
  2. Validate — Run the validation script: python3 ${CLAUDE_PLUGIN_ROOT}/skills/athena-package/scripts/validate_athena_package.py <staging-dir>
  3. Fix issues — If validation reports errors, fix them:

- Missing files: create or remove from manifest - Invalid aurora tags: correct to valid values - Header format errors: add/fix # title + > description + --- - Cross-reference targets missing: fix paths or remove references

  1. Revalidate — Run validation again until clean (exit code 0)
  2. Create package — Run the creation script: python3 ${CLAUDE_PLUGIN_ROOT}/skills/athena-package/scripts/create_athena_package.py <staging-dir> [output-path]
  3. Deliver — Report the output file path and summary to the user

Validation Feedback Loop

Never skip validation. The .athena format is strict — Athena's importer rejects malformed packages. The validate-fix-revalidate cycle catches issues before the user tries to import.

Common validation errors and fixes:

ErrorFix
"manifest.json not found"Create the manifest file
"invalid aurora tag 'X'"Replace with a valid aurora value
"note file 'notes/X.md' not found"Create the file or remove from manifest
"disk file 'notes/X.md' not in manifest"Add to manifest or remove the file
"note missing header format"Add # title\n\n> description\n\n---
"cross-reference target 'notes/X.md' not found"Fix the path or create the target
"asset 'assets/X.png' not found"Add the file or remove the reference

Example

Input: 2 notes from a research session with 1 image asset.

Staging directory:

research-output/
├── manifest.json
├── notes/
│   ├── executive-summary.md
│   └── market-analysis.md
└── assets/
    └── market-chart.png

manifest.json:

{
  "version": 1,
  "format": "athena",
  "generatedAt": "2026-02-07T14:30:00Z",
  "source": "claude",
  "notes": [
    {
      "file": "notes/executive-summary.md",
      "title": "Executive Summary",
      "aurora": "focus",
      "assets": []
    },
    {
      "file": "notes/market-analysis.md",
      "title": "Market Analysis",
      "aurora": "explore",
      "assets": [
        { "name": "market-chart.png", "file": "assets/market-chart.png", "type": "image" }
      ]
    }
  ]
}

notes/executive-summary.md:

# Executive Summary

> High-level overview of Q1 2026 strategy findings

---

Based on our [Market Analysis](notes/market-analysis.md), three key themes emerge...

### Key Decisions
1. Prioritize mobile-first experience
2. Launch AI features in March

notes/market-analysis.md:

# Market Analysis

> Competitive landscape analysis for the AI assistant market

---

## Overview

![Market Share Chart](assets/market-chart.png)

The AI assistant market grew 40% YoY...

Result: research-output.athena (ZIP, 3 files, ready for import)

Error Handling

ErrorRecovery
No content to packageAsk the user what to include
Validation fails after 3 fix attemptsShow remaining errors; ask user for guidance
Script not foundReport the issue; manually create the ZIP structure
Python not availableReport the issue; manually create the ZIP
Output directory not writableTry current directory; ask user for alternative

Reference Materials

  • references/athena-spec.md — Full .athena import format specification: manifest.json schema, required/optional fields, note format with frontmatter override rules, asset handling, cross-reference syntax, aurora tag values, and import behavior (Inbox placement, deduplication, UUID remapping). Read when handling unusual package configurations or debugging import failures.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.9%
按下载量换算24

Claude

30.22%
按下载量换算22

Cursor

18.52%
按下载量换算14

Gemini CLI

9.75%
按下载量换算7

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills