{"id":29945514,"url":"https://github.com/ronakmunjapara/copilot-memory-bank","last_synced_at":"2026-04-18T14:04:44.554Z","repository":{"id":305193713,"uuid":"1022269229","full_name":"ronakmunjapara/copilot-memory-bank","owner":"ronakmunjapara","description":"A CLI tool to enable persistent memory for GitHub Copilot by managing structured markdown documentation.","archived":false,"fork":false,"pushed_at":"2025-07-18T18:46:01.000Z","size":25,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-04T20:18:40.984Z","etag":null,"topics":["ai","cli","cli-tool","developer-tools","documentation","github-copilot","github-copilot-chat","markdown","memory-bank","productivity","templates"],"latest_commit_sha":null,"homepage":"https://shiny-cucurucho-018948.netlify.app/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ronakmunjapara.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-07-18T18:41:25.000Z","updated_at":"2025-07-18T19:24:20.000Z","dependencies_parsed_at":"2025-07-18T21:21:42.408Z","dependency_job_id":"8d941e51-8261-41da-9d43-e887fa7461a4","html_url":"https://github.com/ronakmunjapara/copilot-memory-bank","commit_stats":null,"previous_names":["ronakmunjapara/copilot-memory-bank"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ronakmunjapara/copilot-memory-bank","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronakmunjapara%2Fcopilot-memory-bank","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronakmunjapara%2Fcopilot-memory-bank/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronakmunjapara%2Fcopilot-memory-bank/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronakmunjapara%2Fcopilot-memory-bank/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ronakmunjapara","download_url":"https://codeload.github.com/ronakmunjapara/copilot-memory-bank/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronakmunjapara%2Fcopilot-memory-bank/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31971500,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"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":["ai","cli","cli-tool","developer-tools","documentation","github-copilot","github-copilot-chat","markdown","memory-bank","productivity","templates"],"created_at":"2025-08-03T05:01:47.417Z","updated_at":"2026-04-18T14:04:40.882Z","avatar_url":"https://github.com/ronakmunjapara.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Copilot Memory Bank\n\n🧠 A CLI tool to enable persistent memory for GitHub Copilot by managing structured markdown documentation.\n\n## Overview\n\nGitHub Copilot doesn't retain memory between sessions. This tool solves that by scaffolding a persistent \"Memory Bank\" that documents your evolving project state for Copilot to consume.\n\n## Features\n\n- **🚀 Quick Setup**: Initialize with `npx github-copilot-bank init`\n- **📝 Smart Templates**: Pre-built markdown templates for different aspects of your project\n- **🔄 Flexible Updates**: Options to force overwrite or update missing files only\n- **🤖 AI-Optimized**: Templates designed to be easily consumed by GitHub Copilot\n\n## Installation\n\n### Global Installation\n```bash\nnpm install -g copilot-memory-bank\ncopilot-memory-bank init\n```\n\n### One-time Use (Recommended)\n```bash\nnpx copilot-memory-bank init\n```\n\n## Usage\n\n### Initialize Memory Bank\n```bash\n# Basic initialization\nnpx copilot-memory-bank init\n\n# Include Copilot instruction file\nnpx copilot-memory-bank init --with-instruction\n\n# Force overwrite existing files\nnpx copilot-memory-bank init --force\n\n# Update only missing files\nnpx copilot-memory-bank init --update\n```\n\n### CLI Options\n\n- `--force`: Overwrite existing memory bank files\n- `--update`: Regenerate only missing templates  \n- `--with-instruction`: Add `copilot-instruction.md`\n\n## Generated Structure\n\nAfter running the init command, you'll get:\n\n```\n📁 memory-bank/\n├── product-context.md      # Project overview and technical stack\n├── active-context.md       # Current tasks and team assignments\n├── progress.md            # Changelog-style progress log\n├── decision-log.md        # Architectural decisions with rationale\n├── system-patterns.md     # Code patterns and conventions\n└── copilot-instruction.md # Instructions for GitHub Copilot (optional)\n```\n\n## Template Contents\n\n### `product-context.md`\n- Project name, description, and version\n- Business goals and target audience\n- Core features and technical stack\n- Key dependencies\n\n### `active-context.md`\n- Current sprint/iteration information\n- Tasks in progress with assignments\n- Current focus areas and blockers\n- Pending decisions\n\n### `progress.md`\n- Chronological log of completed work\n- Current progress and next steps\n- Resolved issues and milestones\n\n### `decision-log.md`\n- Architectural and implementation decisions\n- Context, rationale, and consequences\n- Decision status tracking\n\n### `system-patterns.md`\n- Architecture and code patterns\n- Naming conventions and style guides\n- Reusable components and best practices\n\n### `copilot-instruction.md` (Optional)\n- Direct instructions for GitHub Copilot\n- Context file explanations\n- Project priorities and constraints\n\n## Best Practices\n\n1. **Keep It Updated**: Regularly update the memory bank as your project evolves\n2. **Be Specific**: Fill in detailed, project-specific information in the templates\n3. **Reference in Conversations**: Mention the memory bank when asking Copilot for help\n4. **Team Alignment**: Ensure all team members contribute to keeping it current\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nMIT License - see LICENSE file for details.\n\n## Support\n\nIf you encounter any issues or have suggestions, please create an issue on the GitHub repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fronakmunjapara%2Fcopilot-memory-bank","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fronakmunjapara%2Fcopilot-memory-bank","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fronakmunjapara%2Fcopilot-memory-bank/lists"}