cellin 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cellin-0.1.1/.github/ISSUE_TEMPLATE/architecture_proposal.yml +49 -0
- cellin-0.1.1/.github/ISSUE_TEMPLATE/bug_report.yml +70 -0
- cellin-0.1.1/.github/ISSUE_TEMPLATE/config.yml +5 -0
- cellin-0.1.1/.github/ISSUE_TEMPLATE/documentation_request.yml +35 -0
- cellin-0.1.1/.github/ISSUE_TEMPLATE/feature_request.yml +48 -0
- cellin-0.1.1/.github/ISSUE_TEMPLATE/performance_issue.yml +51 -0
- cellin-0.1.1/.github/ISSUE_TEMPLATE/refactor_hotspot.yml +49 -0
- cellin-0.1.1/.github/ISSUE_TEMPLATE/repo_rigor.yml +46 -0
- cellin-0.1.1/.github/PULL_REQUEST_TEMPLATE/bug_fix.md +32 -0
- cellin-0.1.1/.github/PULL_REQUEST_TEMPLATE/docs.md +32 -0
- cellin-0.1.1/.github/PULL_REQUEST_TEMPLATE/feature.md +32 -0
- cellin-0.1.1/.github/PULL_REQUEST_TEMPLATE/refactor.md +32 -0
- cellin-0.1.1/.github/PULL_REQUEST_TEMPLATE/release_rigor.md +32 -0
- cellin-0.1.1/.github/PULL_REQUEST_TEMPLATE/security_fix.md +32 -0
- cellin-0.1.1/.github/PULL_REQUEST_TEMPLATE.md +33 -0
- cellin-0.1.1/.github/release.yml +26 -0
- cellin-0.1.1/.github/rulesets/default-branch-release-grade.json +44 -0
- cellin-0.1.1/.github/workflows/release-please.yml +36 -0
- cellin-0.1.1/.github/workflows/release.yml +107 -0
- cellin-0.1.1/.github/workflows/rolling-release.yml +110 -0
- cellin-0.1.1/.github/workflows/verify.yml +104 -0
- cellin-0.1.1/.gitignore +195 -0
- cellin-0.1.1/.python-version +1 -0
- cellin-0.1.1/.release-please-manifest.json +3 -0
- cellin-0.1.1/CHANGELOG.md +9 -0
- cellin-0.1.1/CODEOWNERS +4 -0
- cellin-0.1.1/CONTRIBUTING.md +97 -0
- cellin-0.1.1/LICENSE +21 -0
- cellin-0.1.1/Makefile +63 -0
- cellin-0.1.1/PKG-INFO +89 -0
- cellin-0.1.1/README.md +45 -0
- cellin-0.1.1/RELEASING.md +94 -0
- cellin-0.1.1/SECURITY.md +22 -0
- cellin-0.1.1/docs/architecture/README.md +18 -0
- cellin-0.1.1/docs/evals/README.md +32 -0
- cellin-0.1.1/docs/index.md +25 -0
- cellin-0.1.1/evals/__init__.py +1 -0
- cellin-0.1.1/evals/benchmarks/__init__.py +1 -0
- cellin-0.1.1/evals/benchmarks/dreaming/__init__.py +5 -0
- cellin-0.1.1/evals/benchmarks/dreaming/cases.py +5 -0
- cellin-0.1.1/evals/benchmarks/retrieval/__init__.py +1 -0
- cellin-0.1.1/evals/benchmarks/retrieval/cases.py +5 -0
- cellin-0.1.1/evals/corpora/contradiction_memory.json +26 -0
- cellin-0.1.1/evals/corpora/conversation_memory.json +38 -0
- cellin-0.1.1/evals/corpora/multimodal_artifacts.json +62 -0
- cellin-0.1.1/evals/corpora/project_memory.json +38 -0
- cellin-0.1.1/evals/corpora/recency_trap.json +26 -0
- cellin-0.1.1/evals/fixtures/__init__.py +1 -0
- cellin-0.1.1/evals/fixtures/dreaming/__init__.py +1 -0
- cellin-0.1.1/evals/fixtures/dreaming/atlas_corpus.json +35 -0
- cellin-0.1.1/evals/fixtures/ingest/__init__.py +1 -0
- cellin-0.1.1/evals/fixtures/ingest/sample_dataset.json +62 -0
- cellin-0.1.1/examples/starter/README.md +9 -0
- cellin-0.1.1/examples/starter/cellin-starter.json +6 -0
- cellin-0.1.1/examples/starter/seed_envelopes.json +62 -0
- cellin-0.1.1/lefthook.yml +12 -0
- cellin-0.1.1/mkdocs.yml +11 -0
- cellin-0.1.1/pyproject.toml +74 -0
- cellin-0.1.1/release-please-config.json +16 -0
- cellin-0.1.1/renovate.json +4 -0
- cellin-0.1.1/scripts/release/verify_version.py +105 -0
- cellin-0.1.1/src/cellin/__about__.py +5 -0
- cellin-0.1.1/src/cellin/__init__.py +5 -0
- cellin-0.1.1/src/cellin/cli/__init__.py +5 -0
- cellin-0.1.1/src/cellin/cli/__main__.py +8 -0
- cellin-0.1.1/src/cellin/cli/app.py +259 -0
- cellin-0.1.1/src/cellin/cli/config.py +108 -0
- cellin-0.1.1/src/cellin/core/__init__.py +89 -0
- cellin-0.1.1/src/cellin/core/contracts.py +222 -0
- cellin-0.1.1/src/cellin/core/models.py +242 -0
- cellin-0.1.1/src/cellin/dreaming/__init__.py +30 -0
- cellin-0.1.1/src/cellin/dreaming/benchmarks.py +26 -0
- cellin-0.1.1/src/cellin/dreaming/models.py +110 -0
- cellin-0.1.1/src/cellin/dreaming/scheduler.py +72 -0
- cellin-0.1.1/src/cellin/dreaming/service.py +96 -0
- cellin-0.1.1/src/cellin/dreaming/strategies.py +414 -0
- cellin-0.1.1/src/cellin/evals/__init__.py +18 -0
- cellin-0.1.1/src/cellin/evals/__main__.py +27 -0
- cellin-0.1.1/src/cellin/evals/assets.py +179 -0
- cellin-0.1.1/src/cellin/evals/retrieval_benchmarks.py +37 -0
- cellin-0.1.1/src/cellin/evals/runner.py +404 -0
- cellin-0.1.1/src/cellin/evals/smoke.py +31 -0
- cellin-0.1.1/src/cellin/ingest/__init__.py +22 -0
- cellin-0.1.1/src/cellin/ingest/adapters.py +150 -0
- cellin-0.1.1/src/cellin/ingest/envelope.py +31 -0
- cellin-0.1.1/src/cellin/ingest/pipeline.py +156 -0
- cellin-0.1.1/src/cellin/py.typed +1 -0
- cellin-0.1.1/src/cellin/ranking/__init__.py +6 -0
- cellin-0.1.1/src/cellin/ranking/profiles.py +67 -0
- cellin-0.1.1/src/cellin/ranking/weighted.py +121 -0
- cellin-0.1.1/src/cellin/retrieval/__init__.py +6 -0
- cellin-0.1.1/src/cellin/retrieval/candidate_generation.py +97 -0
- cellin-0.1.1/src/cellin/retrieval/service.py +69 -0
- cellin-0.1.1/src/cellin/runtime/__init__.py +6 -0
- cellin-0.1.1/src/cellin/runtime/builtins.py +43 -0
- cellin-0.1.1/src/cellin/runtime/registry.py +125 -0
- cellin-0.1.1/src/cellin/stores/__init__.py +6 -0
- cellin-0.1.1/src/cellin/stores/sqlite.py +235 -0
- cellin-0.1.1/src/cellin/stores/vector_index.py +60 -0
- cellin-0.1.1/tests/contracts/test_registry.py +81 -0
- cellin-0.1.1/tests/evals/test_assets.py +116 -0
- cellin-0.1.1/tests/evals/test_runner.py +35 -0
- cellin-0.1.1/tests/evals/test_smoke.py +13 -0
- cellin-0.1.1/tests/integration/cli/test_cli.py +93 -0
- cellin-0.1.1/tests/integration/dreaming/test_dreaming.py +256 -0
- cellin-0.1.1/tests/integration/ingest/test_pipeline.py +64 -0
- cellin-0.1.1/tests/integration/retrieval/test_weighted_retriever.py +280 -0
- cellin-0.1.1/tests/unit/test_package.py +9 -0
- cellin-0.1.1/uv.lock +1051 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
name: Architecture or design issue
|
|
2
|
+
description: Capture a boundary problem, design debt item, or structural change.
|
|
3
|
+
title: "[Architecture]: "
|
|
4
|
+
labels: ["architecture"]
|
|
5
|
+
body:
|
|
6
|
+
- type: markdown
|
|
7
|
+
attributes:
|
|
8
|
+
value: |
|
|
9
|
+
Use this for confirmed boundary problems, coupling issues, or design changes.
|
|
10
|
+
|
|
11
|
+
- type: textarea
|
|
12
|
+
id: seam
|
|
13
|
+
attributes:
|
|
14
|
+
label: Affected boundary or seam
|
|
15
|
+
description: Which subsystem boundary or design contract is the issue about?
|
|
16
|
+
validations:
|
|
17
|
+
required: true
|
|
18
|
+
|
|
19
|
+
- type: textarea
|
|
20
|
+
id: current_problem
|
|
21
|
+
attributes:
|
|
22
|
+
label: Current problem
|
|
23
|
+
description: What is structurally wrong or expensive today?
|
|
24
|
+
validations:
|
|
25
|
+
required: true
|
|
26
|
+
|
|
27
|
+
- type: textarea
|
|
28
|
+
id: evidence
|
|
29
|
+
attributes:
|
|
30
|
+
label: Evidence
|
|
31
|
+
description: Commands, metrics, traces, or examples that show the problem.
|
|
32
|
+
render: shell
|
|
33
|
+
validations:
|
|
34
|
+
required: true
|
|
35
|
+
|
|
36
|
+
- type: textarea
|
|
37
|
+
id: proposed_direction
|
|
38
|
+
attributes:
|
|
39
|
+
label: Proposed direction
|
|
40
|
+
description: What boundary, ownership, or architecture change should happen?
|
|
41
|
+
|
|
42
|
+
- type: textarea
|
|
43
|
+
id: acceptance
|
|
44
|
+
attributes:
|
|
45
|
+
label: Acceptance criteria
|
|
46
|
+
description: What outcome or simplification would close this issue?
|
|
47
|
+
placeholder: |
|
|
48
|
+
- [ ] ...
|
|
49
|
+
- [ ] ...
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
name: Bug report
|
|
2
|
+
description: Report a reproducible problem with Cellin.
|
|
3
|
+
title: "[Bug]: "
|
|
4
|
+
labels: ["bug"]
|
|
5
|
+
body:
|
|
6
|
+
- type: markdown
|
|
7
|
+
attributes:
|
|
8
|
+
value: |
|
|
9
|
+
Thanks for reporting a bug.
|
|
10
|
+
Please provide enough detail to reproduce and verify a fix.
|
|
11
|
+
|
|
12
|
+
- type: textarea
|
|
13
|
+
id: summary
|
|
14
|
+
attributes:
|
|
15
|
+
label: Summary
|
|
16
|
+
description: What happened?
|
|
17
|
+
placeholder: A short description of the bug.
|
|
18
|
+
validations:
|
|
19
|
+
required: true
|
|
20
|
+
|
|
21
|
+
- type: textarea
|
|
22
|
+
id: repro_steps
|
|
23
|
+
attributes:
|
|
24
|
+
label: Reproduction steps
|
|
25
|
+
description: Exact commands, fixtures, and environment details needed to reproduce.
|
|
26
|
+
placeholder: |
|
|
27
|
+
1. ...
|
|
28
|
+
2. ...
|
|
29
|
+
3. ...
|
|
30
|
+
validations:
|
|
31
|
+
required: true
|
|
32
|
+
|
|
33
|
+
- type: textarea
|
|
34
|
+
id: expected
|
|
35
|
+
attributes:
|
|
36
|
+
label: Expected behavior
|
|
37
|
+
validations:
|
|
38
|
+
required: true
|
|
39
|
+
|
|
40
|
+
- type: textarea
|
|
41
|
+
id: actual
|
|
42
|
+
attributes:
|
|
43
|
+
label: Actual behavior
|
|
44
|
+
validations:
|
|
45
|
+
required: true
|
|
46
|
+
|
|
47
|
+
- type: textarea
|
|
48
|
+
id: evidence
|
|
49
|
+
attributes:
|
|
50
|
+
label: Logs and output
|
|
51
|
+
description: Paste CLI output, stack traces, or relevant JSON snippets.
|
|
52
|
+
render: shell
|
|
53
|
+
|
|
54
|
+
- type: input
|
|
55
|
+
id: version
|
|
56
|
+
attributes:
|
|
57
|
+
label: Version or commit
|
|
58
|
+
description: Git SHA, tag, or package version.
|
|
59
|
+
placeholder: e.g. 0.1.1 or 76aa2a1
|
|
60
|
+
validations:
|
|
61
|
+
required: true
|
|
62
|
+
|
|
63
|
+
- type: input
|
|
64
|
+
id: environment
|
|
65
|
+
attributes:
|
|
66
|
+
label: Environment
|
|
67
|
+
description: OS, Python version, and relevant tooling versions.
|
|
68
|
+
placeholder: e.g. macOS 15, Python 3.12.10, uv 0.7.x
|
|
69
|
+
validations:
|
|
70
|
+
required: true
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
name: Documentation issue
|
|
2
|
+
description: Report missing, outdated, or unclear documentation.
|
|
3
|
+
title: "[Docs]: "
|
|
4
|
+
labels: ["documentation"]
|
|
5
|
+
body:
|
|
6
|
+
- type: textarea
|
|
7
|
+
id: gap
|
|
8
|
+
attributes:
|
|
9
|
+
label: Documentation gap
|
|
10
|
+
description: What is missing, unclear, or incorrect?
|
|
11
|
+
validations:
|
|
12
|
+
required: true
|
|
13
|
+
|
|
14
|
+
- type: textarea
|
|
15
|
+
id: audience
|
|
16
|
+
attributes:
|
|
17
|
+
label: Affected audience
|
|
18
|
+
description: Who is blocked or confused by this gap?
|
|
19
|
+
validations:
|
|
20
|
+
required: true
|
|
21
|
+
|
|
22
|
+
- type: textarea
|
|
23
|
+
id: sources
|
|
24
|
+
attributes:
|
|
25
|
+
label: Source material
|
|
26
|
+
description: Code paths, commands, examples, or screenshots that the docs should reflect.
|
|
27
|
+
|
|
28
|
+
- type: textarea
|
|
29
|
+
id: acceptance
|
|
30
|
+
attributes:
|
|
31
|
+
label: Acceptance criteria
|
|
32
|
+
description: What should a reader be able to do after this is fixed?
|
|
33
|
+
placeholder: |
|
|
34
|
+
- [ ] ...
|
|
35
|
+
- [ ] ...
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
name: Feature request
|
|
2
|
+
description: Propose an improvement or new capability.
|
|
3
|
+
title: "[Feature]: "
|
|
4
|
+
labels: ["enhancement"]
|
|
5
|
+
body:
|
|
6
|
+
- type: markdown
|
|
7
|
+
attributes:
|
|
8
|
+
value: |
|
|
9
|
+
Thanks for the idea.
|
|
10
|
+
Focus on user problem, expected behavior, and success criteria.
|
|
11
|
+
|
|
12
|
+
- type: textarea
|
|
13
|
+
id: problem
|
|
14
|
+
attributes:
|
|
15
|
+
label: Problem statement
|
|
16
|
+
description: What user pain does this solve?
|
|
17
|
+
placeholder: As a ..., I need ... because ...
|
|
18
|
+
validations:
|
|
19
|
+
required: true
|
|
20
|
+
|
|
21
|
+
- type: textarea
|
|
22
|
+
id: proposal
|
|
23
|
+
attributes:
|
|
24
|
+
label: Proposed solution
|
|
25
|
+
description: Describe behavior, CLI changes, APIs, or UX.
|
|
26
|
+
validations:
|
|
27
|
+
required: true
|
|
28
|
+
|
|
29
|
+
- type: textarea
|
|
30
|
+
id: alternatives
|
|
31
|
+
attributes:
|
|
32
|
+
label: Alternatives considered
|
|
33
|
+
description: Other options and why they are less suitable.
|
|
34
|
+
|
|
35
|
+
- type: textarea
|
|
36
|
+
id: impact
|
|
37
|
+
attributes:
|
|
38
|
+
label: Impact and scope
|
|
39
|
+
description: Affected runtime surfaces, docs, tests, performance, or compatibility.
|
|
40
|
+
|
|
41
|
+
- type: textarea
|
|
42
|
+
id: acceptance
|
|
43
|
+
attributes:
|
|
44
|
+
label: Acceptance criteria
|
|
45
|
+
description: What must be true for this to be considered done?
|
|
46
|
+
placeholder: |
|
|
47
|
+
- [ ] ...
|
|
48
|
+
- [ ] ...
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
name: Performance or efficiency issue
|
|
2
|
+
description: Report a measured slowdown, waste pattern, or inefficiency.
|
|
3
|
+
title: "[Performance]: "
|
|
4
|
+
labels: ["performance"]
|
|
5
|
+
body:
|
|
6
|
+
- type: markdown
|
|
7
|
+
attributes:
|
|
8
|
+
value: |
|
|
9
|
+
Use this for measured regressions or confirmed waste patterns.
|
|
10
|
+
|
|
11
|
+
- type: textarea
|
|
12
|
+
id: summary
|
|
13
|
+
attributes:
|
|
14
|
+
label: Summary
|
|
15
|
+
description: What is slow or wasteful?
|
|
16
|
+
validations:
|
|
17
|
+
required: true
|
|
18
|
+
|
|
19
|
+
- type: textarea
|
|
20
|
+
id: workload
|
|
21
|
+
attributes:
|
|
22
|
+
label: Workload or scenario
|
|
23
|
+
description: Which command, fixture, or corpus shows the problem?
|
|
24
|
+
validations:
|
|
25
|
+
required: true
|
|
26
|
+
|
|
27
|
+
- type: textarea
|
|
28
|
+
id: evidence
|
|
29
|
+
attributes:
|
|
30
|
+
label: Evidence
|
|
31
|
+
description: Include timings, counts, ratios, or profiling output.
|
|
32
|
+
render: shell
|
|
33
|
+
validations:
|
|
34
|
+
required: true
|
|
35
|
+
|
|
36
|
+
- type: textarea
|
|
37
|
+
id: impact
|
|
38
|
+
attributes:
|
|
39
|
+
label: User or system impact
|
|
40
|
+
description: Latency, CPU, memory, write amplification, or token cost impact.
|
|
41
|
+
validations:
|
|
42
|
+
required: true
|
|
43
|
+
|
|
44
|
+
- type: textarea
|
|
45
|
+
id: acceptance
|
|
46
|
+
attributes:
|
|
47
|
+
label: Acceptance criteria
|
|
48
|
+
description: What measurable improvement should close this issue?
|
|
49
|
+
placeholder: |
|
|
50
|
+
- [ ] ...
|
|
51
|
+
- [ ] ...
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
name: Refactor hotspot
|
|
2
|
+
description: Capture a verified maintainability hotspot or cleanup seam.
|
|
3
|
+
title: "[Refactor]: "
|
|
4
|
+
labels: ["refactor"]
|
|
5
|
+
body:
|
|
6
|
+
- type: markdown
|
|
7
|
+
attributes:
|
|
8
|
+
value: |
|
|
9
|
+
Use this for hotspots backed by concrete evidence, not just a large file or a vague smell.
|
|
10
|
+
|
|
11
|
+
- type: textarea
|
|
12
|
+
id: hotspot
|
|
13
|
+
attributes:
|
|
14
|
+
label: Hotspot summary
|
|
15
|
+
description: Which file, module, or seam is costly to change?
|
|
16
|
+
validations:
|
|
17
|
+
required: true
|
|
18
|
+
|
|
19
|
+
- type: textarea
|
|
20
|
+
id: evidence
|
|
21
|
+
attributes:
|
|
22
|
+
label: Evidence of change pain
|
|
23
|
+
description: Include churn, complexity, duplication, fan-in, or test-friction evidence.
|
|
24
|
+
render: shell
|
|
25
|
+
validations:
|
|
26
|
+
required: true
|
|
27
|
+
|
|
28
|
+
- type: textarea
|
|
29
|
+
id: target
|
|
30
|
+
attributes:
|
|
31
|
+
label: Proposed refactor target
|
|
32
|
+
description: What narrower seam or ownership change would reduce the cost?
|
|
33
|
+
validations:
|
|
34
|
+
required: true
|
|
35
|
+
|
|
36
|
+
- type: textarea
|
|
37
|
+
id: non_goals
|
|
38
|
+
attributes:
|
|
39
|
+
label: Non-goals
|
|
40
|
+
description: What should not be expanded into this refactor?
|
|
41
|
+
|
|
42
|
+
- type: textarea
|
|
43
|
+
id: acceptance
|
|
44
|
+
attributes:
|
|
45
|
+
label: Acceptance criteria
|
|
46
|
+
description: What will be simpler or safer after the refactor?
|
|
47
|
+
placeholder: |
|
|
48
|
+
- [ ] ...
|
|
49
|
+
- [ ] ...
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
name: Repo rigor or automation issue
|
|
2
|
+
description: Capture CI, release, governance, or workflow hardening work.
|
|
3
|
+
title: "[Rigor]: "
|
|
4
|
+
labels: ["rigor-uplift"]
|
|
5
|
+
body:
|
|
6
|
+
- type: textarea
|
|
7
|
+
id: summary
|
|
8
|
+
attributes:
|
|
9
|
+
label: Summary
|
|
10
|
+
description: What repo hygiene, automation, or governance gap exists?
|
|
11
|
+
validations:
|
|
12
|
+
required: true
|
|
13
|
+
|
|
14
|
+
- type: textarea
|
|
15
|
+
id: affected_surface
|
|
16
|
+
attributes:
|
|
17
|
+
label: Affected surface
|
|
18
|
+
description: Which workflow, ruleset, hook, template, or automation is involved?
|
|
19
|
+
validations:
|
|
20
|
+
required: true
|
|
21
|
+
|
|
22
|
+
- type: textarea
|
|
23
|
+
id: evidence
|
|
24
|
+
attributes:
|
|
25
|
+
label: Evidence
|
|
26
|
+
description: Commands, workflow runs, or examples that show the gap.
|
|
27
|
+
render: shell
|
|
28
|
+
validations:
|
|
29
|
+
required: true
|
|
30
|
+
|
|
31
|
+
- type: textarea
|
|
32
|
+
id: desired_enforcement
|
|
33
|
+
attributes:
|
|
34
|
+
label: Desired enforcement or behavior
|
|
35
|
+
description: What should the repo do instead?
|
|
36
|
+
validations:
|
|
37
|
+
required: true
|
|
38
|
+
|
|
39
|
+
- type: textarea
|
|
40
|
+
id: acceptance
|
|
41
|
+
attributes:
|
|
42
|
+
label: Acceptance criteria
|
|
43
|
+
description: What checks or guarantees should exist when this is done?
|
|
44
|
+
placeholder: |
|
|
45
|
+
- [ ] ...
|
|
46
|
+
- [ ] ...
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
## Summary
|
|
2
|
+
|
|
3
|
+
Describe the bug and the intended behavior after this fix.
|
|
4
|
+
|
|
5
|
+
## Changes
|
|
6
|
+
|
|
7
|
+
-
|
|
8
|
+
|
|
9
|
+
## Validation
|
|
10
|
+
|
|
11
|
+
Commands and checks run:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
make release-smoke
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Additional targeted validation:
|
|
18
|
+
|
|
19
|
+
-
|
|
20
|
+
|
|
21
|
+
## Risk and compatibility
|
|
22
|
+
|
|
23
|
+
- User-visible behavior change:
|
|
24
|
+
- Migration required:
|
|
25
|
+
- Backward-compatibility risk:
|
|
26
|
+
|
|
27
|
+
## Checklist
|
|
28
|
+
|
|
29
|
+
- [ ] Reproduction or regression coverage added or updated
|
|
30
|
+
- [ ] Docs or examples updated if behavior changed
|
|
31
|
+
- [ ] No unrelated changes included
|
|
32
|
+
- [ ] Ready for review
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
## Summary
|
|
2
|
+
|
|
3
|
+
Describe the documentation gap and what this PR fixes.
|
|
4
|
+
|
|
5
|
+
## Changes
|
|
6
|
+
|
|
7
|
+
-
|
|
8
|
+
|
|
9
|
+
## Validation
|
|
10
|
+
|
|
11
|
+
Commands and checks run:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
make docs
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Additional targeted validation:
|
|
18
|
+
|
|
19
|
+
-
|
|
20
|
+
|
|
21
|
+
## Documentation notes
|
|
22
|
+
|
|
23
|
+
- Affected audience:
|
|
24
|
+
- Related code or workflows:
|
|
25
|
+
- Follow-up docs needed:
|
|
26
|
+
|
|
27
|
+
## Checklist
|
|
28
|
+
|
|
29
|
+
- [ ] Commands and examples were checked against the current repo
|
|
30
|
+
- [ ] Screenshots or logs refreshed if needed
|
|
31
|
+
- [ ] No unrelated source changes included
|
|
32
|
+
- [ ] Ready for review
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
## Summary
|
|
2
|
+
|
|
3
|
+
Describe the user problem and the capability this change adds.
|
|
4
|
+
|
|
5
|
+
## Changes
|
|
6
|
+
|
|
7
|
+
-
|
|
8
|
+
|
|
9
|
+
## Validation
|
|
10
|
+
|
|
11
|
+
Commands and checks run:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
make release-smoke
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Additional targeted validation:
|
|
18
|
+
|
|
19
|
+
-
|
|
20
|
+
|
|
21
|
+
## Scope and compatibility
|
|
22
|
+
|
|
23
|
+
- New surface area:
|
|
24
|
+
- Follow-up work:
|
|
25
|
+
- Breaking changes:
|
|
26
|
+
|
|
27
|
+
## Checklist
|
|
28
|
+
|
|
29
|
+
- [ ] Tests or evals added or updated
|
|
30
|
+
- [ ] Docs, examples, or starter flows updated
|
|
31
|
+
- [ ] Compatibility notes included if needed
|
|
32
|
+
- [ ] Ready for review
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
## Summary
|
|
2
|
+
|
|
3
|
+
Describe the hotspot or seam this refactor addresses.
|
|
4
|
+
|
|
5
|
+
## Changes
|
|
6
|
+
|
|
7
|
+
-
|
|
8
|
+
|
|
9
|
+
## Validation
|
|
10
|
+
|
|
11
|
+
Commands and checks run:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
make release-smoke
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Additional targeted validation:
|
|
18
|
+
|
|
19
|
+
-
|
|
20
|
+
|
|
21
|
+
## Refactor notes
|
|
22
|
+
|
|
23
|
+
- Verified hotspot or evidence:
|
|
24
|
+
- Non-goals:
|
|
25
|
+
- Behavior changes:
|
|
26
|
+
|
|
27
|
+
## Checklist
|
|
28
|
+
|
|
29
|
+
- [ ] Existing behavior preserved or intentionally changed
|
|
30
|
+
- [ ] Tests updated where seams moved
|
|
31
|
+
- [ ] Docs updated if the public surface changed
|
|
32
|
+
- [ ] Ready for review
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
## Summary
|
|
2
|
+
|
|
3
|
+
Describe the release, CI, governance, or automation change.
|
|
4
|
+
|
|
5
|
+
## Changes
|
|
6
|
+
|
|
7
|
+
-
|
|
8
|
+
|
|
9
|
+
## Validation
|
|
10
|
+
|
|
11
|
+
Commands and checks run:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
make release-smoke
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Additional targeted validation:
|
|
18
|
+
|
|
19
|
+
-
|
|
20
|
+
|
|
21
|
+
## Release and enforcement notes
|
|
22
|
+
|
|
23
|
+
- Workflow or ruleset impact:
|
|
24
|
+
- Versioning impact:
|
|
25
|
+
- Secrets or trusted publishing impact:
|
|
26
|
+
|
|
27
|
+
## Checklist
|
|
28
|
+
|
|
29
|
+
- [ ] Rulesets and checked-in workflow definitions stay aligned
|
|
30
|
+
- [ ] Release or CI docs updated if behavior changed
|
|
31
|
+
- [ ] Compatibility or rollout notes included
|
|
32
|
+
- [ ] Ready for review
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
## Summary
|
|
2
|
+
|
|
3
|
+
Describe the security issue being addressed and the intended fixed behavior.
|
|
4
|
+
|
|
5
|
+
## Changes
|
|
6
|
+
|
|
7
|
+
-
|
|
8
|
+
|
|
9
|
+
## Validation
|
|
10
|
+
|
|
11
|
+
Commands and checks run:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
make release-smoke
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Additional targeted validation:
|
|
18
|
+
|
|
19
|
+
-
|
|
20
|
+
|
|
21
|
+
## Security notes
|
|
22
|
+
|
|
23
|
+
- Affected trust boundary:
|
|
24
|
+
- Severity and impact:
|
|
25
|
+
- Disclosure or rollout considerations:
|
|
26
|
+
|
|
27
|
+
## Checklist
|
|
28
|
+
|
|
29
|
+
- [ ] Safe proof or regression coverage added or updated
|
|
30
|
+
- [ ] Sensitive details handled appropriately
|
|
31
|
+
- [ ] Docs or operator guidance updated if needed
|
|
32
|
+
- [ ] Ready for review
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
## Summary
|
|
2
|
+
|
|
3
|
+
Describe the problem and the intent of this change.
|
|
4
|
+
|
|
5
|
+
## Changes
|
|
6
|
+
|
|
7
|
+
-
|
|
8
|
+
|
|
9
|
+
## Validation
|
|
10
|
+
|
|
11
|
+
Commands and checks run:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
make release-smoke
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Additional targeted validation:
|
|
18
|
+
|
|
19
|
+
-
|
|
20
|
+
|
|
21
|
+
## Risk and compatibility
|
|
22
|
+
|
|
23
|
+
- Breaking changes:
|
|
24
|
+
- Migration required:
|
|
25
|
+
- Performance impact:
|
|
26
|
+
- Security impact:
|
|
27
|
+
|
|
28
|
+
## Checklist
|
|
29
|
+
|
|
30
|
+
- [ ] Tests or evals added or updated for behavior changes
|
|
31
|
+
- [ ] Docs updated if user-facing behavior changed
|
|
32
|
+
- [ ] No unrelated changes included
|
|
33
|
+
- [ ] Ready for review
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
changelog:
|
|
2
|
+
categories:
|
|
3
|
+
- title: Features
|
|
4
|
+
labels:
|
|
5
|
+
- enhancement
|
|
6
|
+
- multimodal
|
|
7
|
+
- retrieval
|
|
8
|
+
- dreaming
|
|
9
|
+
- evals
|
|
10
|
+
- plugin
|
|
11
|
+
- title: Architecture and Rigor
|
|
12
|
+
labels:
|
|
13
|
+
- architecture
|
|
14
|
+
- rigor-uplift
|
|
15
|
+
- title: Documentation
|
|
16
|
+
labels:
|
|
17
|
+
- documentation
|
|
18
|
+
- title: Fixes
|
|
19
|
+
labels:
|
|
20
|
+
- bug
|
|
21
|
+
exclude:
|
|
22
|
+
labels:
|
|
23
|
+
- question
|
|
24
|
+
- duplicate
|
|
25
|
+
- invalid
|
|
26
|
+
- wontfix
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "default-branch-release-grade",
|
|
3
|
+
"target": "branch",
|
|
4
|
+
"enforcement": "active",
|
|
5
|
+
"conditions": {
|
|
6
|
+
"ref_name": {
|
|
7
|
+
"include": ["~DEFAULT_BRANCH"],
|
|
8
|
+
"exclude": []
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"rules": [
|
|
12
|
+
{
|
|
13
|
+
"type": "deletion"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"type": "non_fast_forward"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"type": "pull_request",
|
|
20
|
+
"parameters": {
|
|
21
|
+
"allowed_merge_methods": ["merge", "squash", "rebase"],
|
|
22
|
+
"dismiss_stale_reviews_on_push": true,
|
|
23
|
+
"require_code_owner_review": true,
|
|
24
|
+
"require_last_push_approval": true,
|
|
25
|
+
"required_approving_review_count": 1,
|
|
26
|
+
"required_review_thread_resolution": true
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"type": "required_status_checks",
|
|
31
|
+
"parameters": {
|
|
32
|
+
"strict_required_status_checks_policy": true,
|
|
33
|
+
"required_status_checks": [
|
|
34
|
+
{
|
|
35
|
+
"context": "verify"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"context": "package-smoke"
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
name: release-please
|
|
2
|
+
|
|
3
|
+
"on":
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
permissions:
|
|
10
|
+
contents: write
|
|
11
|
+
issues: write
|
|
12
|
+
pull-requests: write
|
|
13
|
+
|
|
14
|
+
concurrency:
|
|
15
|
+
group: release-please-${{ github.ref }}
|
|
16
|
+
cancel-in-progress: false
|
|
17
|
+
|
|
18
|
+
jobs:
|
|
19
|
+
release-please:
|
|
20
|
+
runs-on: ubuntu-latest
|
|
21
|
+
env:
|
|
22
|
+
RELEASE_PLEASE_TOKEN: ${{ secrets.RELEASE_PLEASE_TOKEN }}
|
|
23
|
+
steps:
|
|
24
|
+
- name: Report missing token
|
|
25
|
+
if: ${{ env.RELEASE_PLEASE_TOKEN == '' }}
|
|
26
|
+
run: |
|
|
27
|
+
echo "::warning::RELEASE_PLEASE_TOKEN is not configured. Stable release initiation remains disabled until the token is added."
|
|
28
|
+
|
|
29
|
+
- name: Run release-please
|
|
30
|
+
if: ${{ env.RELEASE_PLEASE_TOKEN != '' }}
|
|
31
|
+
uses: googleapis/release-please-action@v4
|
|
32
|
+
with:
|
|
33
|
+
token: ${{ env.RELEASE_PLEASE_TOKEN }}
|
|
34
|
+
target-branch: main
|
|
35
|
+
config-file: release-please-config.json
|
|
36
|
+
manifest-file: .release-please-manifest.json
|