{"id":49077031,"url":"https://github.com/luispabon/ai-bits-and-pieces","last_synced_at":"2026-04-20T10:11:43.622Z","repository":{"id":351632276,"uuid":"1211319886","full_name":"luispabon/ai-bits-and-pieces","owner":"luispabon","description":"Miscellaneous prompts, skills and the like for working with LLMs","archived":false,"fork":false,"pushed_at":"2026-04-15T19:45:30.000Z","size":53,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-15T21:31:37.324Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/luispabon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-04-15T09:19:56.000Z","updated_at":"2026-04-15T19:45:35.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/luispabon/ai-bits-and-pieces","commit_stats":null,"previous_names":["luispabon/ai-bits-and-pieces"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/luispabon/ai-bits-and-pieces","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luispabon%2Fai-bits-and-pieces","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luispabon%2Fai-bits-and-pieces/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luispabon%2Fai-bits-and-pieces/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luispabon%2Fai-bits-and-pieces/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/luispabon","download_url":"https://codeload.github.com/luispabon/ai-bits-and-pieces/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luispabon%2Fai-bits-and-pieces/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32042458,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-20T10:11:42.830Z","updated_at":"2026-04-20T10:11:43.613Z","avatar_url":"https://github.com/luispabon.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ai-bits-and-pieces\n\nThis repository collects reusable coding-agent prompts, skills, and supporting prompt fragments.\n\n## Layout\n\n- `skills/` contains reusable skills.\n- `skills/\u003ccategory\u003e/\u003cskill_name\u003e/SKILL.md` is the main skill file.\n- `skills/\u003ccategory\u003e/\u003cskill_name\u003e/agents/openai.yaml` holds UI metadata when needed.\n- `skills/\u003ccategory\u003e/\u003cskill_name\u003e/references/` holds longer reference material.\n- `skills/\u003ccategory\u003e/\u003cskill_name\u003e/scripts/` holds deterministic helper scripts.\n- `skills/\u003ccategory\u003e/\u003cskill_name\u003e/assets/` holds output templates or other bundled files.\n- `system_prompts/` holds local system prompt variants.\n\n## Skill Format\n\nAll skills in this repository should follow the same structure:\n\n1. `SKILL.md` with YAML frontmatter containing only:\n   - `name`\n   - `description`\n2. A short Markdown body that defines the skill workflow and guardrails.\n3. Optional resource folders only when they are actually needed.\n\nRecommended `SKILL.md` sections:\n\n- `Overview`\n- `Workflow`\n- `Artifacts`\n- `Research Rule`\n- `Plan Structure`\n- `Interaction Policy`\n\nKeep the skill body concise. Put long reference material in `references/` instead of expanding `SKILL.md`.\n\n## Naming\n\n- Repository paths use underscores, for example `skills/coding_loop/planner/`.\n- Skill names inside frontmatter use the canonical trigger name for the skill.\n- Keep directory names short and filesystem-safe.\n\n## Planning Skills\n\nThe `skills/coding_loop/planner/` skill is the canonical example for planning workflows.\n\nIts key rules are:\n\n- Ask for a high-level description if the user only invokes the skill by name.\n- Do not write planning files until the feature is well understood.\n- Create `.project_planning/YYYY-MM-DD_FEATURE_NAME/` before generating planning artifacts.\n- Write the initial request, high-level overview, and decision log in one `overview.md` file.\n- Offer optional research every time.\n- If research is used, run it in a sub-agent with the smallest useful context and a restricted write scope.\n- Keep all planning writes inside the planning directory.\n- Treat the loop as a chain: `planner` -\u003e `executor` -\u003e `reviewer` -\u003e `finaliser`.\n- Keep the chain rules in `skills/coding_loop/README.md` so sibling skills stay aligned.\n- After the planner finishes, suggest `/clear` and hand off to `executor` with the planning folder path.\n- Require the planning folder path for `executor`, `reviewer`, and `finaliser`; if it is missing, they must stop and ask for it.\n\n## Coding Loop Skills\n\nThe `coding_loop` family currently includes:\n\n- `planner`\n- `executor`\n- `reviewer`\n- `finaliser`\n\nEach one should stay narrow and should reference the shared chain contract instead of duplicating logic.\n\n## Adding a New Skill\n\n1. Create `skills/\u003ccategory\u003e/\u003cskill_name\u003e/`.\n2. Add `SKILL.md` with the required frontmatter and workflow.\n3. Add `agents/openai.yaml` if the skill should appear in a skill list UI.\n4. Add `references/`, `scripts/`, or `assets/` only when needed.\n5. Keep the new skill aligned with the structure used by the existing skills.\n\n## Installing Skills\n\nUse `make install-skills` to copy every skill in this repository into the global skill locations for Codex, Claude, Junie, Cursor, and OpenCode.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluispabon%2Fai-bits-and-pieces","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fluispabon%2Fai-bits-and-pieces","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluispabon%2Fai-bits-and-pieces/lists"}