{"id":42328224,"url":"https://github.com/mrwogu/promptscript-registry","last_synced_at":"2026-02-01T23:00:34.570Z","repository":{"id":334066492,"uuid":"1139839438","full_name":"mrwogu/promptscript-registry","owner":"mrwogu","description":"Official registry of PromptScript configurations - reusable AI prompts for GitHub Copilot, Claude Code, Cursor and more","archived":false,"fork":false,"pushed_at":"2026-01-27T13:07:13.000Z","size":72,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-27T23:29:18.267Z","etag":null,"topics":["ai-prompts","claude","copilot","cursor","llm","prompt-engineering","promptscript"],"latest_commit_sha":null,"homepage":"https://getpromptscript.dev","language":null,"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/mrwogu.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-22T13:39:45.000Z","updated_at":"2026-01-27T13:07:29.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/mrwogu/promptscript-registry","commit_stats":null,"previous_names":["mrwogu/promptscript-registry"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/mrwogu/promptscript-registry","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrwogu%2Fpromptscript-registry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrwogu%2Fpromptscript-registry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrwogu%2Fpromptscript-registry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrwogu%2Fpromptscript-registry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrwogu","download_url":"https://codeload.github.com/mrwogu/promptscript-registry/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrwogu%2Fpromptscript-registry/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28993725,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T22:01:47.507Z","status":"ssl_error","status_checked_at":"2026-02-01T21:58:37.335Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["ai-prompts","claude","copilot","cursor","llm","prompt-engineering","promptscript"],"created_at":"2026-01-27T13:16:04.202Z","updated_at":"2026-02-01T23:00:34.541Z","avatar_url":"https://github.com/mrwogu.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# PromptScript Registry\n\nOfficial collection of AI instruction configurations for [PromptScript](https://github.com/mrwogu/promptscript).\n\n## Registry Contents\n\n| Namespace | Count | Description |\n|-----------|------:|-------------|\n| `@prompts/` | 632 | General-purpose AI personas |\n| `@fragments/` | 441 | Reusable mixins and patterns |\n| `@skills/` | 28 | Development workflow skills |\n| `@roles/` | 18 | Developer, creative, professional personas |\n| `@stacks/` | 7 | Framework configurations |\n| `@agents/` | 5 | Specialized AI agents |\n| `@core/` | 3 | Universal foundations |\n| **Total** | **1134** | |\n\n## Quick Start\n\n### 1. Install CLI\n\n```bash\nnpm install -g @promptscript/cli\n```\n\n### 2. Initialize Project\n\n```bash\ncd your-project\nprs init\n```\n\n### 3. Configure\n\nEdit `.promptscript/project.prs`:\n\n```promptscript\n@meta {\n  id: \"my-project\"\n  syntax: \"1.0.0\"\n}\n\n@inherit @stacks/react\n@use @fragments/testing\n@use @fragments/typescript\n```\n\n### 4. Compile\n\n```bash\nprs compile\n```\n\nGenerates:\n- `.github/copilot-instructions.md` (GitHub Copilot)\n- `CLAUDE.md` (Claude Code)\n- `.cursor/rules/project.mdc` (Cursor)\n\n## Namespaces\n\n### `@stacks/` - Framework Configurations\n\n| Stack | Description |\n|-------|-------------|\n| `@stacks/react` | React 18+ with TypeScript |\n| `@stacks/vue` | Vue 3 with Composition API |\n| `@stacks/node` | Node.js backend |\n| `@stacks/python` | Python with type hints |\n| `@stacks/rust` | Rust with clippy |\n| `@stacks/go` | Go with standard layout |\n| `@stacks/typescript-lib` | TypeScript library |\n\n### `@roles/` - AI Personas\n\n| Category | Roles |\n|----------|-------|\n| Developer | `fullstack` `frontend` `backend` `devops` `dba` `senior` `qa` |\n| Creative | `writer` `storyteller` `copywriter` |\n| Professional | `consultant` `coach` `analyst` `tech-writer` |\n| Specialist | `teacher` `translator` `reviewer` `terminal` |\n\n### `@fragments/` - Reusable Mixins\n\n| Category | Count | Examples |\n|----------|------:|----------|\n| `testing/` | 157 | TDD, test generation, QA patterns |\n| `agents/` | 139 | Agent behaviors, beast modes |\n| `security/` | 72 | OWASP, vulnerability scanning |\n| `documentation/` | 18 | Doc generation patterns |\n| `refactoring/` | 16 | Code improvement patterns |\n| `tasks/` | 12 | Task automation |\n| `review/` | 8 | Code review patterns |\n| `standards/` | 7 | Coding standards |\n\n### `@prompts/` - General Purpose\n\n| Category | Count | Examples |\n|----------|------:|----------|\n| `coding/` | 250 | Programming, debugging |\n| `general/` | 241 | Versatile assistants |\n| `business/` | 58 | Marketing, consulting |\n| `education/` | 49 | Teaching, tutoring |\n| `writing/` | 34 | Creative writing |\n\n### `@skills/` - Development Workflows\n\nDefined in `@skills/base.prs`:\n\n| Skill | Trigger |\n|-------|---------|\n| `committing` | Git commits |\n| `debugging` | Bug investigation |\n| `testing-code` | Writing tests |\n| `code-reviewing` | PR reviews |\n| `security-auditing` | Security checks |\n| `documenting` | Documentation |\n| `refactoring` | Code cleanup |\n| `pull-requesting` | Creating PRs |\n| `performance-optimizing` | Speed optimization |\n\n## Inheritance\n\n### `@inherit` - Base Configuration\n\nOne per file. Defines primary source.\n\n```promptscript\n@inherit @stacks/react\n```\n\n### `@use` - Mixins\n\nMultiple allowed. Later overrides earlier.\n\n```promptscript\n@inherit @stacks/react\n@use @fragments/testing\n@use @fragments/security/owasp\n```\n\n### Precedence\n\n```\n@inherit → @use #1 → @use #2 → Local definitions (wins)\n```\n\n## Configuration\n\n### `promptscript.yaml`\n\n```yaml\nversion: '1'\n\nproject:\n  id: my-project\n\nregistry:\n  git:\n    url: https://github.com/mrwogu/promptscript-registry.git\n    ref: main\n\ntargets:\n  - github\n  - claude\n  - cursor\n```\n\n### Version Pinning\n\n```yaml\nregistry:\n  git:\n    ref: v1.0.0\n```\n\nOr inline:\n\n```promptscript\n@inherit @stacks/react@v1.0.0\n```\n\n## Contributing\n\n1. Fork repository\n2. Add `.prs` file in appropriate namespace\n3. Ensure `@meta.id` matches file path\n4. Validate: `prs validate`\n5. Update catalog: `npm run rebuild`\n6. Submit pull request\n\nSee [CONTRIBUTING.md](./CONTRIBUTING.md) for details.\n\n## Attributions\n\n| Source | License | Content |\n|--------|---------|---------|\n| [awesome-chatgpt-prompts](https://github.com/f/awesome-chatgpt-prompts) | CC0-1.0 | 632 prompts |\n| [awesome-copilot](https://github.com/github/awesome-copilot) | CC0-1.0 | 434 fragments |\n| [awesome-claude-skills](https://github.com/ComposioHQ/awesome-claude-skills) | MIT | 28 skills |\n\nSee [ATTRIBUTIONS.md](./ATTRIBUTIONS.md) for details.\n\n## Links\n\n- **Documentation:** [getpromptscript.dev](https://getpromptscript.dev)\n- **Main Repository:** [github.com/mrwogu/promptscript](https://github.com/mrwogu/promptscript)\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrwogu%2Fpromptscript-registry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrwogu%2Fpromptscript-registry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrwogu%2Fpromptscript-registry/lists"}