feat(skill): add recsys-pipeline-architect#1733
Open
mturac wants to merge 2 commits into
Open
Conversation
A community skill for designing composable recommendation, ranking, and feed pipelines using the six-stage Source→Hydrator→Filter→Scorer→Selector →SideEffect framework popularized by xAI's open-sourced For You algorithm. Independent MIT reimplementation of the pattern; covers a domain-specific architectural workflow (multi-action scoring trade-offs, candidate isolation, online vs offline) that frontier models don't handle by default. - Adds skills/recsys-pipeline-architect/SKILL.md - Regenerates docs/README.skills.md via `npm run build` - `npm run skill:validate` → PASS for all 345 skills
Contributor
There was a problem hiding this comment.
main, but PRs should target staged.
The main branch is auto-published from staged and should not receive direct PRs.
Please close this PR and re-open it against the staged branch.
You can change the base branch using the Edit button at the top of this PR,
or run: gh pr edit 1733 --base staged
Contributor
|
🔴 Contributor Reputation Check: HIGH risk
Maintainers: please review this contributor before merging. |
ee54d08 to
49c2bd3
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a new community skill: recsys-pipeline-architect under
skills/.What this skill does
A spec-and-scaffold skill for designing composable recommendation, ranking, and feed pipelines using the six-stage Source → Hydrator → Filter → Scorer → Selector → SideEffect framework popularized by xAI's open-sourced For You algorithm (Apache 2.0). This skill is an independent reimplementation of the pattern (MIT) — no code copied from the original.
When invoked, it walks Copilot through eight clarifying steps (use case → sources → hydrations → filters → scorers → selector → side effects → scaffold), surfaces the architectural trade-offs you'd otherwise default through silently (multi-action vs single-score, candidate isolation vs joint, online vs offline batch), and produces a runnable scaffold in the user's stack.
Why it isn't covered by default model behavior
Per the What We Don't Accept → Duplicate Existing Model Strengths Without Meaningful Uplift guideline: this skill is not "tell Copilot to write generic TypeScript well." The six-stage framework, the multi-action vs single-score trade-off, and the candidate-isolation rule are domain-specific patterns from production recsys research. Frontier models without this skill consistently:
The skill addresses these with hard rules and surfaces the trade-offs explicitly. The upstream repo has 5 reference docs that go deeper on each (interfaces in 4 languages, multi-action scoring, candidate isolation, filter cookbook, scorer cookbook).
PR contents
skills/recsys-pipeline-architect/SKILL.md(115 lines, single-file)docs/README.skills.mdvianpm run buildnpm run skill:validate→ ✅recsys-pipeline-architect is valid(and all 345 skills passed)name,description,origin: communityUpstream
npx skills add mturac/recsys-pipeline-architect(also covers Cursor, Codex, Cline, Gemini CLI, OpenCode, and more)Allow edits from maintainers: enabled. Happy to revise length, split into multiple skills, or move to a different category if you'd prefer.