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
17 changes: 17 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# CompText V7 Agent Instructions

## Repo-local skill docs
- Before starting work, read the relevant docs under `docs/codex_skills/`.
- Use `docs/codex_skills/mcp_context_layer.md` for MCP context layer, CLI, prompt rendering, validation, and adapter work.
- Use `docs/codex_skills/artifact_validation.md` for deterministic artifacts and regeneration checks.
- Use `docs/codex_skills/git_pr_workflow.md` for branch sync, commits, pushes, and PR preparation.
- Use `docs/codex_skills/docs_positioning.md` for README/docs positioning and scope boundaries.

## Default safety rules
- Repository state is the source of truth.
- Inspect before editing.
- Make the smallest safe patch.
- Keep behavior deterministic and fixture-bound.
- Maintain local sanitization and privacy boundaries (GDPR/DSGVO Art. 25) at all times.
- Do not introduce semantic scoring, embeddings, vector DBs, external APIs, autonomous orchestration, or runtime tool execution unless explicitly scoped.
- Prefer focused validation over broad checks unless the task requires broader validation.
- Do not commit, push, create PRs, or merge unless explicitly requested.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

The Repository Style Guide (line 10) identifies "Privacy by design aligned with GDPR / DSGVO Art. 25" as an architectural pillar. Adding an explicit safety rule for agents to maintain these privacy and local sanitization boundaries is crucial to prevent accidental data exposure or policy violations during automated edits.

Suggested change
- Do not commit, push, create PRs, or merge unless explicitly requested.
- Do not commit, push, create PRs, or merge unless explicitly requested.
- Maintain local sanitization and privacy boundaries (GDPR/DSGVO Art. 25) at all times.
References
  1. Privacy by design aligned with GDPR / DSGVO Art. 25, including local sanitization before downstream model or copilot access. (link)


## Project focus
- CompText V7 is the deterministic replay-integrity layer for compressed operational agent traces.
- Current focus: core foundation, deterministic replay artifacts, CI artifacts, docs, and conservative positioning.
Expand Down
Loading