Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
2f0e846
Refine memory surface artifact handling
artyom-88 Mar 24, 2026
4bef75c
Initiate signoz config
artyom-88 Mar 29, 2026
1418034
Add native SigNoz telemetry tooling for Codex
artyom-88 Mar 29, 2026
e2749f0
Merge branch 'main' into signoz-codex-native-telemetry
artyom-88 Mar 29, 2026
66f1830
Small refine memory improvements
artyom-88 Mar 29, 2026
e2611bf
Enhance signoz-codex tooling and docs
artyom-88 Apr 1, 2026
a2cf4cc
Update core instructions & rules
artyom-88 Apr 6, 2026
388ce15
Update memory refiner skill script
artyom-88 Apr 6, 2026
66f2a83
Add Signoz Codex configuration examples
artyom-88 Apr 6, 2026
1e1c3dc
Update Signoz Codex configuration examples & description
artyom-88 Apr 7, 2026
23ca13b
Update Signoz Codex scripts
artyom-88 Apr 7, 2026
2cd6fb1
Update Signoz Codex scripts tests
artyom-88 Apr 7, 2026
e493bde
Secure SigNoz Codex local bindings
artyom-88 Apr 7, 2026
edfeaa3
Improve Codex telemetry dashboard
artyom-88 Apr 7, 2026
1972074
Fix SigNoz Codex CI lint findings
artyom-88 Apr 8, 2026
04b20ca
Make shareable docs public-facing
artyom-88 Apr 8, 2026
4c0a55e
Refine repo-local sharing guidance
artyom-88 Apr 8, 2026
67b8870
Harden SigNoz Codex startup and verify flows
artyom-88 Apr 8, 2026
e138738
Address PR review fixes
artyom-88 Apr 8, 2026
7014f30
Address latest PR review comments
artyom-88 Apr 8, 2026
26c53b7
Refine global command form guidance
artyom-88 Apr 8, 2026
2b5a961
Harden signoz-codex runtime secrets and remote defaults
artyom-88 Apr 8, 2026
cdb786a
Update default model reasoning
artyom-88 Apr 8, 2026
6134c44
Address remaining PR review comments: harden secret file permissions …
artyom-88 Apr 8, 2026
555d40f
Address follow-up review comments
artyom-88 Apr 8, 2026
345f405
git commit -m "Authenticate Signoz ClickHouse probes"
artyom-88 Apr 8, 2026
5849b2d
Fix CI
artyom-88 Apr 8, 2026
af72463
Remove duplication
artyom-88 Apr 8, 2026
9b63a08
Improve memory-refiner lifecycle logging
artyom-88 Apr 8, 2026
07ef3c5
Merge remote-tracking branch 'origin/main' into feature-memory-refine…
artyom-88 Apr 8, 2026
66c043e
Fix memory-refiner logging follow-ups
artyom-88 Apr 8, 2026
4b6fc0f
Fix Python Quality duplicate-code failures
artyom-88 Apr 8, 2026
91e22f4
Add repo-local Python CI parity guidance
artyom-88 Apr 8, 2026
5c51fad
Fix signoz-codex collector recovery
artyom-88 Apr 8, 2026
d1862b6
Isolate memory-refiner logs by project key
artyom-88 Apr 9, 2026
16276f7
Fix superseded memory logs and remote asset sync
artyom-88 Apr 9, 2026
2dc02bd
Refine commit and Python test guidance
artyom-88 Apr 9, 2026
9661f71
Merge branch 'main' into feature-memory-refiner-lifecycle-logging
artyom-88 Apr 9, 2026
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
1 change: 1 addition & 0 deletions .codex/instructions/workflow/python-ci-parity.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Load this file when changing tracked `.py` files in this repo or when debugging
- Before commit or push after tracked Python changes, run the exact repo CI gates:
- `pylint --rcfile .pylintrc $(git ls-files '*.py')`
- `bandit -q $(git ls-files '*.py')`
- Prefer the directory-based `python3 -m unittest discover -s <path> -p 'test_*.py'` commands in this repo over module-addressed `python3 -m unittest package.module` invocations when tests import local helpers such as `test_support`.
- If the change touches `skills/memory-refiner/`, run:
- `python3 -m unittest discover -s skills/memory-refiner/tests -p 'test_*.py'`
- If the change touches `tools/signoz-codex/`, run:
Expand Down
4 changes: 4 additions & 0 deletions instructions/workflow/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@
- Use exact `zsh -ic` or `zsh -lc` script-string forms only when the command is shell-only or alias-only.
- For shell aliases/functions that need arguments, prefer `zsh -ic 'command "$@"' command arg...` so execpolicy can match stable argv tokens.
- Do not present shell-wrapper forms as if they were the intended command shape for ordinary executables.

## Commit Scope

- When the user asks to `commit`, default to committing only the task-relevant files. Broaden the scope only when the user explicitly says `all`, `everything`, or names additional files.
Loading