share-learning
SolidPromote a team-relevant learning to the shared team-knowledge repo, deduping against existing notes first. Triggers "share this", "promote to the team repo", "add to the knowledge base", or after a gotcha/decision/convention worth team-wide awareness.
AI & Automation 42 stars
3 forks Updated today MIT
Install
Quality Score: 86/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# share-learning
Promote a single learning to the team's shared knowledge repo (`darkroomengineering/team-knowledge`) —
the "public corpus" tier of the knowledge system (see `docs/knowledge-system.md`). Local,
personal knowledge stays in auto-memory; this skill is only for things another teammate's
agent would benefit from knowing.
## When to use
Use when a learning meets the shared-tier bar from `AGENTS.md` (Knowledge Routing): an
architecture decision the team must follow, a library gotcha that affects everyone, a
convention, an incident postmortem, or a reusable pattern. If it is a personal preference,
local project state, or an external pointer, let auto-memory handle it instead — do NOT
post it.
## Inputs
Invoked as `/share-learning <kind> "<text>"` where `<kind>` is one of:
`decision`, `convention`, `gotcha`, `incident`, `pattern`.
If invoked without arguments, infer the most likely `kind` and a concise `text` from the
recent conversation, then show the user what you intend to post and confirm before posting.
## Steps
1. **Resolve the repo.** Read `$KNOWLEDGE_REPO` from the environment; default is
`darkroomengineering/team-knowledge`. If `$KNOWLEDGE_REPO` is unset and you do not want
to use the default, stop and tell the user to set it (see `docs/knowledge-system.md` for
setup).
2. **Dedup against the index (required).** Fetch the current index:
```bash
gh api repos/$KNOWLEDGE_REPO/contents/INDEX.md --jq .content | base64 -d
```
Scan the ...
Details
- Author
- darkroomengineering
- Repository
- darkroomengineering/cc-settings
- Created
- 7 months ago
- Last Updated
- today
- Language
- TypeScript
- License
- MIT
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
Code & Development Listed
capturing-learnings
Use whenever a team learns something new — a gotcha, a convention, an incident, a pattern — and route it to the right durable location automatically.
0 Updated today
Expeed-Software AI & Automation Solid
learn
Use when the user says "learn", "save this insight", or wants to persist valuable knowledge from the current session to AGENTS.md or docs/
1 Updated yesterday
gzb1128