aeon

Aeon

GitHub Actions上でエージェントのスキルを定期実行し、設定・編集・再スケジュール・デバッグ・自動化候補の発見まで支援するフレームワーク。

AIスキル大辞典による日本語要約
品質評価97/100評価確度:十分
人気度(GitHub Star) 97発掘スコア 70
01

このSkillでできること

  • GitHubリポジトリ上のAeonインスタンスを設定する
  • スキルの有効化、編集、実行間隔の変更、実行トラブルの確認を行う
  • コーディングエージェントとの作業を定期実行スキルへ整理する
  • 過去の作業履歴から自動化候補を見つける
02

使い方

01
STEP 1

Aeonのリポジトリと対象インスタンスを確認する

02
STEP 2

aeon.ymlで有効なスキルとスケジュールを確認する

03
STEP 3

必要に応じてスキルの設定や内容を変更する

04
STEP 4

実行履歴とログで結果や失敗を検証する

03

Skillのインストール

このGitHubリポジトリにあるSkillを確認し、現在の環境に適した方法でインストールしてください。
インストール後、正常に利用できることを確認し、基本的な使い方も簡潔に説明してください。

Repository:
https://github.com/aeonfun/aeon
手動でインストールする

README / SKILL.mdから機械抽出できたコマンドのみ表示しています。推測したコマンドではありません。

gh repo create <name> --private
git clone --bare https://github.com/aeonfun/aeon.git
git -C aeon.git push --mirror https://github.com/<owner>/<name>.git
rm -rf aeon.git && git clone https://github.com/<owner>/<name>.git && cd <name>
git remote add upstream https://github.com/aeonfun/aeon.git
gh repo set-default <owner>/<name>      # REQUIRED — see below
---
name: my-skill
description: One line — what it does and what it sends.
metadata:
title: My Skill
mode: read-only
category: basics
var: ""
tags:
- content
requires:
- SOME_API_KEY?
---
Today is ${today}. <the prompt — plain instructions, including judgment calls>
1. <the procedure — 43 of 77 skills lead with this>
<curl / WebFetch / `./secretcurl` / `gh api` — how this skill fetches>
Report via `./notify` (use `./notify -f file.md` for anything multi-line).
Send nothing if there's nothing worth reporting.
Append what you did to `memory/logs/${today}.md` under a `### <skill-name>` heading.
04

このSkillを使うプロンプト例

Skill名を明示すると、意図したSkillを使わせやすくなります。自動発動型では必須とは限りません。

Aeonで毎朝のレポート作成を定期実行したい。現在の設定を確認し、必要なスキルとスケジュールを提案してください。
出力例を見る
対象リポジトリ、使用するスキル、実行時刻、確認すべき設定項目、実行後の検証方法を整理します。
05

安全性チェック

自動解析による参考情報です。Skillの安全性を保証するものではありません。

外部API通信検出あり
Shellコマンド実行明確な記述なし
ファイル読み取り明確な記述なし
ファイル書き込み明確な記述なし
ネットワークアクセス検出あり
認証情報検出あり
検出根拠を見る
  • network: Y` plus the repo variable `ANTHROPIC_BASE_URL` — e.g. `https://api.deepseek.com/anthropic`. ### Harness — which CLI runs the skill `claude` (default) o
  • credential: `. - **Any Anthropic-compatible endpoint:** `ANTHROPIC_API_KEY` plus the repo variable `ANTHROPIC_BASE_URL` — e.g. `https://api.deepseek.com/anthropic`.
  • credential: nd add the quotes if they're missing. - **Auth:** `XAI_API_KEY`, or an X account (SuperGrok / X Premium+) via the dashboard's **Connect X account**, whi
06

関連Skill