chore(ecosystem): re-add scitex-notification and scitex-plt#12
Closed
ywatanabe1989 wants to merge 2 commits into
Closed
chore(ecosystem): re-add scitex-notification and scitex-plt#12ywatanabe1989 wants to merge 2 commits into
ywatanabe1989 wants to merge 2 commits into
Conversation
Both packages exist as real GitHub repos and remain bridged via sys.modules in scitex-python. They were dropped from ECOSYSTEM in an earlier rewrite but are still active ecosystem members: - scitex-notification: published; scitex.notification → scitex_notification (alias-cleanup PR #252 in scitex-python) - scitex-plt: alias-shim package wrapping figrecipe; scitex.plt is bridged to scitex_plt → figrecipe Without these entries, dev tools (sync, version-check, fix-mismatches) silently skip the two repos. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
…026-04 batch
Adds the 24 packages extracted in the 2026-04 standalonization wave so
dev tooling (sync, version-check, fix-mismatches, etc.) sees them.
scitex-{benchmark, bridge, capture, config, context, cv, datetime,
decorators, dsp, events, gen, git, introspect, linalg, msword, nn,
os, pd, resource, security, session, sh, tex, web}
ECOSYSTEM size: 42 → 66 entries.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Collaborator
Author
|
Closing as obsolete — develop has moved substantially since this PR was opened (the underlying work has been superseded or absorbed into newer commits). If anything from here is still desired, please re-open or file a fresh PR. |
ywatanabe1989
added a commit
that referenced
this pull request
Jun 7, 2026
…001 in as Superseded (#142) * docs(adr): ADR-0002 reverses direction (audit → security) + brings ADR-0001 onto develop as Superseded Per operator's 1b call mid-W1 (after scitex-audit 0.2.0 was already published): scitex-SECURITY is the canonical survivor name; scitex-AUDIT becomes the deprecated shim. ADR-0001 brought onto develop with status flipped to 'Superseded by ADR-0002' (its file was previously dangling on origin/docs/adr-absorb-security only — never merged). ADR-0002 documents: - The reversal decision + operator's naming rationale ('security' > 'audit' for the unified-package name). - The half-shipped state to recover from (scitex-audit 0.2.0 stays on PyPI; no yank). - The new W1-reverse PR list: Phase 1: scitex-security NEXT (0.2.0) — absorbs audit orchestrator + scitex_audit.github logic. Cancel on-hold #12. Phase 2: scitex-audit NEXT (0.3.0) — thin re-export shim of scitex-security; hard-error CLI redirect per skill 11 §5; dep scitex-security>=0.2.0. Phase 3: scitex-dev registry — REVERSE #141 (un-archive scitex-security, archive scitex-audit instead). Phase 4: scitex-python umbrella — REVERSE #322 (re-point [security] and the LazyModule + alias_map back to scitex_security). Phase 5: release order: ADR PR → scitex-security 0.2.0 → publish → scitex-audit 0.3.0 → umbrella reversal → close #12. - Auto-symlink REVERSE-migration: scitex-security NEXT detects ~/.scitex/audit/github-alerts/ on first import and symlinks it back to ~/.scitex/security/runtime/ (mirror of the 0.2.0 migration). - Carryover lessons: explicit gh --head/--base on every PR (cwd-detect lesson from W1's #23/#139/#140 misfires). NO CODE CHANGES in this PR — docs-only. Lead sanity-checks before Phase 1 execution. Refs: superseded ADR-0001 (resurrected here); operator's 2026-06-07-afternoon-JST direction call. * docs(adr): flip ADR-0002 to Accepted; lock 0.2.0/0.3.0 versions + CLI shape + #12 cancellation order (lead 2026-06-07)
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Summary
Re-add two packages that were dropped from ECOSYSTEM in an earlier rewrite but remain active ecosystem members:
Without these entries, dev tools (sync, version-check, fix-mismatches) silently skip the two repos.
Test plan
python -c "from scitex_dev.ecosystem import ECOSYSTEM; assert 'scitex-notification' in ECOSYSTEM; assert 'scitex-plt' in ECOSYSTEM"— passes