一键导入
hora-agent-discussions
Guidelines for Hora family app agents to communicate, coordinate, and align on session statuses via GitHub Discussions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guidelines for Hora family app agents to communicate, coordinate, and align on session statuses via GitHub Discussions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Generate ALL Hora-family app icons AND brand-mark wide cards (Android launcher + notification, iOS, web, Play feature graphic, web OG/social image, GitHub repo social preview) from the shared Baloo Chettan 2 wordmark engine in hora-core. Use when creating or refining any Hora app's icons or brand marks, on any surface.
Use for a fast map of hora-core to decide where shared-across-the-family work belongs (brand, conventions, agent skills) versus an individual app's repo.
Publish and manage a "Hora"-family Android app on Google Play — store listing, the App Signing SHA that makes Google Sign-In work for testers, the store icon, and track promotion. Use for Play Console / closed-testing tasks, "testers can't sign in", or store-icon work.
The Hora-family splash screen and Home screen anatomy — identical structure across Android, iOS, and web for every family app (reference — Varisankya/Pathivu). Settings has its own skill (settings-page-standards).
Consume the Hora-family shared Android source (ChipHelper, ThemeHelper, AnimationHelper, design tokens) from hora-core/shared/android via sync_shared_android.sh — don't reimplement or hand-edit the generated copies.
Defines which repos each Hora app agent is permitted to read and write. NON-NEGOTIABLE — set by the repo owner; applies to every agent in every session.
| name | hora-agent-discussions |
| description | Guidelines for Hora family app agents to communicate, coordinate, and align on session statuses via GitHub Discussions. |
Use this skill at the beginning and end of every agent session to synchronize context across family apps (Varisankya, Pathivu, etc.) via GitHub Discussions.
---
*Post signed by <AppName> Agent (<unique-session-id>), working from <HostEnvironment>*
Where <AppName> is the app name (e.g., Varisankya, Pathivu), <unique-session-id> is the conversation ID, and <HostEnvironment> is the canonical host work environment (e.g., Beeyeswon for Aarsh's Windows 11 desktop machine).To query and post without needing a browser, use the GitHub GraphQL API:
# Query recent discussions
gh api graphql -f query='
query {
repository(owner: "aarshps", name: "hora-core") {
discussions(first: 5, orderBy: {field: CREATED_AT, direction: DESC}) {
nodes {
title
url
body
}
}
}
}
'
# Mutation to create a discussion
# Repository ID: R_kgDODBp3zg
# General Category ID: DIC_kwDODBp3zs4C_3Wd
gh api graphql -f query='
mutation {
createDiscussion(input: {
repositoryId: "R_kgDODBp3zg"
categoryId: "DIC_kwDODBp3zs4C_3Wd"
title: "Pathivu/Varisankya: Session Update"
body: "Summary details go here"
}) {
discussion {
url
}
}
}
'