Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问许可证需确认审计异常

andromeda-messages仙女座讯息

Agent Skill

andromeda-messages 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

245

周安装

10

GitHub Stars

公开资料未说明

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/michailbul/laniameda-skills --skill andromeda-messages

简介

提供仙女座星系应用的完整 CRUD API 接口,支持消息增删改查与星系锁定/解锁控制功能。

  • 适用于集成和管理跨语言消息系统,支持别名映射与多环境部署(生产/本地)。
  • 通过 Bearer Token 认证访问 RESTful 端点,返回结构化 JSON 数据与操作结果。
  • 需配置 ADMIN_TOKEN 并确保网络可达;本地部署示例可用于开发与测试用途。
  • 操作涉及数据持久化与系统状态变更,建议在非生产环境先行验证接口行为。

SKILL.md

Andromeda Messages

Full CRUD API for the Andromeda galaxy app plus galaxy lock/unlock control.

Base URL

Use the deployed app base URL for the current environment.

  • Current production: https://andromeda.laniameda.space
  • Legacy redirect source: https://www.mishabuloichyk.com
  • Local standalone repo example: http://localhost:3331

Auth

Authorization: Bearer <ADMIN_TOKEN>

Use the repo's configured ADMIN_TOKEN.


Galaxy Name Aliases

The galaxy field accepts any of these:

Send thisResolves to
"Your Dreams" / "dreams" / "мечты"sagittarius
"Your Soulmate" / "soulmate" / "partner" / "laniakea" / "партнёр"wormhole
"Your Family" / "family" / "семья"carina
"Your Life" / "life" / "жизнь"andromeda
"Your Antidreams" / "antidreams" / "антимечты"kepler
Raw IDs (sagittarius, wormhole, etc.)also work

Always confirm with the canonical display name, not the internal ID.


Production Safety Rules

These rules are mandatory. The Andromeda backend is live production data.

  1. Never write with raw galaxy IDs (kepler, andromeda, etc.) unless Michael explicitly asks for raw-ID debugging. Use canonical display names in API requests.
  2. Always resolve and state the target before mutating: Your Life → andromeda, Your Antidreams → kepler, etc.
  3. Before any create, update, delete, lock, unlock, import, or cleanup, run a read check for the target galaxy and note its current node count.
  4. After any mutation, re-read the target galaxy and confirm the new count or changed node.
  5. For high-risk operations, also check Your Antidreams after the mutation. It should stay empty unless the user explicitly requested an antidream entry.
  6. Never use spaceGraph:seedGalaxy, bulk imports, clearGalaxy, direct Convex mutations, or scripts against production unless Michael explicitly approves the exact galaxy and action in the current conversation.
  7. Any bulk operation must first create a timestamped backup of affected nodes and edges.

Antidreams Hard Guard

Your Antidreams is kepler. Treat it as protected.

  • Do not infer Your Antidreams from vague phrasing.
  • Do not use kepler for life, dreams, family, partner/soulmate, or positive aspiration content.
  • Only write to Your Antidreams when the user explicitly says Your Antidreams, antidreams, or антимечты.
  • If the content reads like a dream, relationship goal, family goal, life goal, or positive aspiration, stop and ask before writing to Your Antidreams.
  • If nodes appear in Your Antidreams unexpectedly, immediately stop, back up kepler nodes and edges, report counts, and ask before moving or deleting unless Michael directly asks to clear them.

Node Routes (/api/andromeda)

POST — Create a node

curl -s -X POST "$BASE_URL/api/andromeda" \
  -H "Authorization: Bearer $ADMIN_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"galaxy":"Your Life","title":"Short title","content":"Full message text","nodeType":"STATION"}'

GET — List nodes in a galaxy

curl -s "$BASE_URL/api/andromeda?galaxy=Your+Life" \
  -H "Authorization: Bearer $ADMIN_TOKEN"

PATCH — Update a node

curl -s -X PATCH "$BASE_URL/api/andromeda" \
  -H "Authorization: Bearer $ADMIN_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"nodeId":"<id>","title":"New title","content":"New content"}'

DELETE — Delete a node

curl -s -X DELETE "$BASE_URL/api/andromeda?nodeId=<id>" \
  -H "Authorization: Bearer $ADMIN_TOKEN"

Galaxy Lock Routes (/api/andromeda/galaxy)

GET — List all galaxy lock states

curl -s "$BASE_URL/api/andromeda/galaxy" \
  -H "Authorization: Bearer $ADMIN_TOKEN"

POST — Lock or unlock a galaxy

curl -s -X POST "$BASE_URL/api/andromeda/galaxy" \
  -H "Authorization: Bearer $ADMIN_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"galaxy":"Your Life","locked":false}'

Set locked: false to unlock, locked: true to lock.


nodeType Options

  • STATION — main message node
  • RELAY — connecting or transition node
  • SENSOR — observation or detail node

Workflow Examples

Add to Your Dreams: title "Morning Light", content "..." Use POST /api/andromeda, then confirm the canonical galaxy name.

Unlock Your Life Use POST /api/andromeda/galaxy with {"galaxy":"Your Life","locked":false}.

List all nodes in Your Family Use GET /api/andromeda?galaxy=Your+Family.

Delete the node with id X Use DELETE /api/andromeda?nodeId=X.

Update title of node X to "..." Use PATCH /api/andromeda with {nodeId, title}.


Notes

  • Changes are live immediately through Convex
  • Galaxy lock state lives in the galaxySettings table
  • Admin UI route: /admin/andromeda

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.81%
按下载量换算29

Claude

30.43%
按下载量换算24

Cursor

17.83%
按下载量换算14

Gemini CLI

9.76%
按下载量换算8

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills