Skip to content

Copilot/awesome ai drivendevelopment 101 - #24

Open
5hy7xz92nd-oss wants to merge 125 commits into
bikini:mainfrom
5hy7xz92nd-oss:copilot/awesome-ai-drivendevelopment-101
Open

Copilot/awesome ai drivendevelopment 101#24
5hy7xz92nd-oss wants to merge 125 commits into
bikini:mainfrom
5hy7xz92nd-oss:copilot/awesome-ai-drivendevelopment-101

Conversation

@5hy7xz92nd-oss

Copy link
Copy Markdown

No description provided.

Copilot AI and others added 30 commits July 13, 2026 08:42
…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>
Copilot AI and others added 22 commits August 9, 2026 11:13
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>
Co-authored-by: 5hy7xz92nd-oss <249378113+5hy7xz92nd-oss@users.noreply.github.com>
validate_pocs: tests pass on repo as-is, no changes needed
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>
…-integrations

Upgrade repository validation integrations and CI
Co-authored-by: 5hy7xz92nd-oss <249378113+5hy7xz92nd-oss@users.noreply.github.com>
Co-authored-by: 5hy7xz92nd-oss <249378113+5hy7xz92nd-oss@users.noreply.github.com>
Copilot AI lite review requested due to automatic review settings August 9, 2026 14:55

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This pull request introduces a repository-wide validation tool to sanity-check PoC entrypoints/manifests and ensure the root catalog stays consistent with the on-disk PoC directories, and wires those checks into CI.

Changes:

  • Add validate_pocs.py to discover and validate Python/JS/JSON manifests plus README/catalog consistency.
  • Add tests/test_validate_pocs.py to exercise discovery/validation and fixture behavior.
  • Document the validation workflow in README.md, add CI workflow, and expand .gitignore.

Reviewed changes

Copilot reviewed 5 out of 6 changed files in this pull request and generated 7 comments.

Show a summary per file
File Description
validate_pocs.py New validator that discovers PoC-related files and performs syntax/manifest/catalog checks.
tests/test_validate_pocs.py Unit tests for discovery + repository/fixture validation behavior.
README.md Adds a “Validation” section describing how to run checks locally and in CI.
.gitignore Ignores common Python/Node/test artifacts (caches, venvs, coverage, etc.).
.github/workflows/validate.yml CI job to run unit tests and repository validation on pushes/PRs.
.github/instructions/*.instructions.md Adds Copilot instruction content under .github/instructions/.

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

Comment thread validate_pocs.py
import shutil
import subprocess
import sys
import tomllib
Comment on lines +1 to +12
import json
import tempfile
import unittest
from pathlib import Path

import validate_pocs


class ValidatePocsTest(unittest.TestCase):
def setUp(self) -> None:
self.repo_root = Path(__file__).resolve().parents[1]

Comment thread README.md

## Validation

Repository integrity checks live in `validate_pocs.py` and cover:
Comment thread README.md
- JavaScript syntax via `node --check`
- Per-entry `README.md` presence and root catalog consistency

Run locally:
- name: Run unit tests
run: python -m unittest discover -s tests -v

- name: Validate repository integrations
@@ -0,0 +1,1487 @@
@5hy7xz92nd-oss @copilot @copilot @copilot @we-tech-company @copilot @5hy7xz92nd-oss 🕴️🔃〰️⤴️@copilot🌎 REALITY
Comment thread validate_pocs.py Outdated
Comment on lines +74 to +76
def discover_json_targets(root: Path) -> List[Path]:
root = root.resolve()
return sorted(path for path in root.rglob("*.json") if not _is_excluded(path, root))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants