{"id":27990902,"url":"https://github.com/przbadu/coding-assistant-template","last_synced_at":"2026-01-24T10:06:12.890Z","repository":{"id":291903882,"uuid":"979161702","full_name":"przbadu/coding-assistant-template","owner":"przbadu","description":"Template for AI coding Assistant that contains ai_docs, ai_specs and .claude repo","archived":false,"fork":false,"pushed_at":"2025-05-07T05:08:50.000Z","size":5,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-08T16:54:09.723Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/przbadu.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}},"created_at":"2025-05-07T05:05:18.000Z","updated_at":"2025-05-07T13:45:04.000Z","dependencies_parsed_at":"2025-05-07T06:32:37.453Z","dependency_job_id":null,"html_url":"https://github.com/przbadu/coding-assistant-template","commit_stats":null,"previous_names":["przbadu/coding-assistant-template"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/przbadu/coding-assistant-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/przbadu%2Fcoding-assistant-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/przbadu%2Fcoding-assistant-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/przbadu%2Fcoding-assistant-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/przbadu%2Fcoding-assistant-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/przbadu","download_url":"https://codeload.github.com/przbadu/coding-assistant-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/przbadu%2Fcoding-assistant-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28724377,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T08:27:05.734Z","status":"ssl_error","status_checked_at":"2026-01-24T08:27:01.197Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2025-05-08T16:52:10.657Z","updated_at":"2026-01-24T10:06:12.872Z","avatar_url":"https://github.com/przbadu.png","language":null,"readme":"# Three important folders\n\nGet more examples of what contents to put inside these directories from:\n\n- https://github.com/przbadu/pocket-pick\n\n[![Agentic Claude Code : 3 Codebase Folders for TOP 1% AI Coding](https://img.youtube.com/vi/hGg3nWp7afg/0.jpg)](https://www.youtube.com/watch?v=hGg3nWp7afg)\n\n\n## 1. ai-docs\n\nThis is your AI coding tools persistent memory. A knowledge repository your ai tools can instantly access.\n\n`ai-docs` contains all the ai documentations, third party documentation that are helpful for the AI tools like [claude code](https://docs.anthropic.com/en/docs/claude-code/overview), [cline](https://cline.bot/), [aider](https://aider.chat/), [codex](https://github.com/openai/codex) etc.\n\nIt can contains:\n\n- API docs \u0026 integrations\n- Architecture docs / design docs\n- Hidden non-code business logic\n- Project-specific patterns\n\n## 2. ai-specs (Specifications / Plan)\n\nThese are your specifications. Also known as `PRDs`, feature documents, or in simple words plans. This is where you detail the work you want done before handing it off to your ai tools.\n\n\u003e PLAN == PROMPT\n\u003e\n\u003e GREAT PLANNING == GREAT PROMPTING\n\n## 3. .claude (or .llm)\n\nReusable prompts you can use with your ai tools. This reduces the time it takes to run repeat workflows in your codebases and in your ai tools. Although this is specific to Claude Code, the reusable prompts are not limited to any specific ai tooling.\n\n```\n.claude\n  | - commands\n  |   - context_prime.md\n  settings.json\n```\n\n** `context_prime.md` example prompt\n\n```md\nREAD README.md, THEN run git ls-files to understand the context of the project.\n```\n\nThis simple prompt if given to ai coding assistent will have context of your entire project.\n\n\u003e NOTE: if you use .claude directory you can directly access context_prime by typing `/` in claude code.\n\n### Example ultra diff review\n**Not limited to context prime**: You can create `ultra-diff-review` and any other context as you like.\n\n```markdown\n# Ultra Diff Review\n\u003e Execute each task in the order given to conduct a thorough code review.\n\n## Task 1: Create diff.txt\n\n## Task 2: git diff and append\n\nThen run git diff and append the output to the file.\n\n## Task 3: just-prompt multi-llm tool call\n\nThen use that file as the input to this just-prompt tool call.\n\nprompts_from_file_to_file(\n  from_file = diff.md,\n  models = \"openai:03-mini, anthropic:claude-3-7-sonnet-20250219:4k, gemini:gemini-2.0-flash-thinking-exp\",\n  output_dif= ultra_diff_review/\n)\n\n## Task 4: Read the output files and synthesize\n\nThen read the output files and think hard to synthesize the results into a new single file called `ultra_diff_review/fusion_ultra_diff_review.md` following the original instructions plus any additional instructions or callouts you think are needed to create the best possible review.\n```\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprzbadu%2Fcoding-assistant-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprzbadu%2Fcoding-assistant-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprzbadu%2Fcoding-assistant-template/lists"}