Copilot/sync rabbit data - #23
Open
5hy7xz92nd-oss wants to merge 46 commits into
Open
Conversation
…test-run-develop-repeat Add repository-wide PoC validation and regression coverage
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: 5hy7xz92nd-oss <249378113+5hy7xz92nd-oss@users.noreply.github.com>
Co-authored-by: 5hy7xz92nd-oss <249378113+5hy7xz92nd-oss@users.noreply.github.com>
Co-authored-by: 5hy7xz92nd-oss <249378113+5hy7xz92nd-oss@users.noreply.github.com>
…phic-blueprint
…ck-merge-into-13
…zed-architecture
…evelopment-101
…phic-blueprint
…9037156-5ff9ba77-5a95-4efd-94b2-b543e449f694
Agent-Logs-Url: https://github.com/5hy7xz92nd-oss/exploitarium/sessions/f54d71c7-dd80-44db-b19c-a02b8d851ee0 Co-authored-by: 5hy7xz92nd-oss <249378113+5hy7xz92nd-oss@users.noreply.github.com>
…037156-cd7955bc-0ce9-4309-a99a-81995eb4a0b5
…9037156-6ffb0e1d-9205-49bd-9569-d81b97ec3e6c
…phic-blueprint
…9037156-6ffb0e1d-9205-49bd-9569-d81b97ec3e6c
5hy7xz92nd-oss
marked this pull request as draft
August 9, 2026 14:47
5hy7xz92nd-oss
marked this pull request as ready for review
August 9, 2026 14:47
There was a problem hiding this comment.
Pull request overview
This pull request introduces a small repository validator to sanity-check PoC-related entrypoints/manifests (Python syntax compilation + package.json validation) and adds a corresponding unit test, alongside a new GitHub Copilot instructions file under .github/instructions.
Changes:
- Add
validate_pocs.pyto discover/validate Python files andpackage.jsonmanifests and provide a CLI entrypoint. - Add
tests/test_validate_pocs.pyto cover discovery and “repo validates cleanly”. - Add a Copilot instructions markdown file under
.github/instructions.
Reviewed changes
Copilot reviewed 3 out of 17 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
validate_pocs.py |
New validator script for compiling Python files and validating package.json content. |
tests/test_validate_pocs.py |
Adds unittest coverage for discovery and clean validation. |
.github/instructions/*.instructions.md |
Adds Copilot custom instructions content (currently includes problematic filename/content). |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
+10
to
+12
| from pathlib import Path | ||
| from typing import List, Dict, Tuple | ||
|
|
Comment on lines
+15
to
+18
| self.assertTrue(any(path.name == "run_demo.py" for path in python_targets)) | ||
| self.assertTrue(any(path.name == "package.json" for path in package_targets)) | ||
| self.assertGreater(len(python_targets), 20) | ||
| self.assertGreater(len(package_targets), 0) |
| @@ -0,0 +1,1487 @@ | |||
| @5hy7xz92nd-oss @copilot @copilot @copilot @we-tech-company @copilot @5hy7xz92nd-oss 🕴️🔃〰️⤴️@copilot🌎 REALITY | |||
Comment on lines
+494
to
+498
| Add validate_pocs.py to discover Python files and package.json manifests and validate them (compile/JSON/scripts checks). | ||
| Add tests/test_validate_pocs.py to verify discovery and that validation passes on the repo state. | ||
| Adjust the README heading formatting. | ||
| Reviewed changes | ||
| Copilot reviewed 2 out of 17 changed files in this pull request and generated 3 comments. |
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.
No description provided.