Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing to Comic Sol
Comment thread
wenn-id marked this conversation as resolved.

`wenn-id/comic-sol-lab` is the canonical public repository for Comic Sol. Development is review-first: create a focused branch, open a pull request into `main`, and keep unrelated changes separate.
`wenn-id/comicsol` is the canonical public repository for Comic Sol. Development is review-first: create a focused branch, open a pull request into `main`, and keep unrelated changes separate.

## Development setup

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ invocation drives planning, character consistency, image generation, visual QA,
selective repair, deterministic lettering and composition, and PDF export. It is
not a web app or hosted product. No build service is required.
Comment thread
wenn-id marked this conversation as resolved.

This repository, [`wenn-id/comic-sol-lab`](https://github.com/wenn-id/comic-sol-lab),
This repository, [`wenn-id/comicsol`](https://github.com/wenn-id/comicsol),
is the canonical, independent home of Comic Sol. New development, issues, pull
requests, documentation, and releases happen here.

Expand All @@ -20,7 +20,7 @@ Clone the public repository directly into the Codex skills directory, then insta
the one pinned dependency:
Comment thread
wenn-id marked this conversation as resolved.

```bash
git clone https://github.com/wenn-id/comic-sol-lab.git \
git clone https://github.com/wenn-id/comicsol.git \
"${CODEX_HOME:-$HOME/.codex}/skills/comic-sol"
cd "${CODEX_HOME:-$HOME/.codex}/skills/comic-sol"
python3.11 -m pip install -r requirements.txt
Expand All @@ -33,7 +33,7 @@ beneath the Codex skills directory configured by your Codex installation. Keep
Windows PowerShell:
Comment thread
wenn-id marked this conversation as resolved.

```powershell
git clone https://github.com/wenn-id/comic-sol-lab.git `
git clone https://github.com/wenn-id/comicsol.git `
"$env:USERPROFILE\.codex\skills\comic-sol"
Set-Location "$env:USERPROFILE\.codex\skills\comic-sol"
py -3.11 -m pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The latest published prerelease or stable release receives security fixes. Older

Comment thread
wenn-id marked this conversation as resolved.
Do not open a public issue for a vulnerability, leaked credential, unsafe archive behavior, path-containment bypass, arbitrary file write, or dependency compromise.

Use GitHub's private vulnerability reporting for `wenn-id/comic-sol-lab` when available. If that interface is unavailable, contact the repository owner privately through the contact method shown on the owner's GitHub profile and include:
Use GitHub's private vulnerability reporting for `wenn-id/comicsol` when available. If that interface is unavailable, contact the repository owner privately through the contact method shown on the owner's GitHub profile and include:

- affected version or commit;
- reproduction steps and impact;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

Comment thread
wenn-id marked this conversation as resolved.
## Global Constraints

- Work only in private repository `wenn-id/comic-sol-lab` on an `ai/*` branch.
- Work only in the canonical repository `wenn-id/comicsol` on an `ai/*` branch.
- Do not modify or push `wenn-id/comic-sol/main`.
- Preserve existing schema-v1 projects unless a migration is explicit and tested.
- Use stdlib before new dependencies; add no runtime dependency for locking or transactions.
Expand Down Expand Up @@ -1182,7 +1182,7 @@ git status --short
git diff --cached --check
git commit -m "fix: close Integrity Core review blockers"
git push origin HEAD
gh pr create --repo wenn-id/comic-sol-lab \
gh pr create --repo wenn-id/comicsol \
--base ai/post-event-development \
--head ai/integrity-core \
--title "feat: harden Comic Sol Integrity Core" \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Comment thread
wenn-id marked this conversation as resolved.
**Status:** Approved design; Integrity Core implementation plan complete

**Repository:** `wenn-id/comic-sol-lab` (private)
**Repository:** `wenn-id/comicsol` (then private; now public)

**Development branch:** `ai/post-event-development`

Expand Down
2 changes: 1 addition & 1 deletion docs/superpowers/specs/2026-07-30-comic-quality-design.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Comment thread
wenn-id marked this conversation as resolved.
**Status:** Approved design awaiting implementation plan

**Repository:** `wenn-id/comic-sol-lab` (private)
**Repository:** `wenn-id/comicsol` (then private; now public)

**Development branch:** `ai/comic-quality`

Expand Down
3 changes: 2 additions & 1 deletion tests/test_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -952,9 +952,10 @@ def test_readme_is_judge_runnable_without_a_build_service(self):
def test_public_surface_uses_the_canonical_independent_repository(self):
Comment thread
wenn-id marked this conversation as resolved.
readme = self.readme()
Comment thread
wenn-id marked this conversation as resolved.
workflow = (ROOT / ".github/workflows/tests.yml").read_text("utf-8")
Comment thread
wenn-id marked this conversation as resolved.
self.assertIn("https://github.com/wenn-id/comic-sol-lab", readme)
self.assertIn("https://github.com/wenn-id/comicsol", readme)
self.assertIn("canonical, independent home", readme)
self.assertNotIn("https://github.com/wenn-id/comic-sol.git", readme)
self.assertNotIn("comic-sol-lab", readme)
self.assertIn("branches: [ main ]", workflow)
self.assertNotIn("ai/post-event-development", workflow)
for name in ("CONTRIBUTING.md", "SECURITY.md"):
Expand Down
Loading