Skip to content
Draft
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
ac7272a
[UC-3697] Configure pre-commit and agentic enablement for fdm_materials
jellespijker Jun 4, 2026
aee48f6
[UC-3697] Add pre-commit configuration and Talisman scanning
jellespijker Jul 29, 2026
b13f0b8
[UC-3697] Add AGENTS.md agentic tooling rules and tailor pre-commit h…
jellespijker Jul 29, 2026
9f62890
[UC-3697] Establish Quad-Agent development architecture
jellespijker Jul 29, 2026
b933ed6
[UC-3697] Add native rules for Antigravity, Claude Code, and OpenCode
jellespijker Jul 29, 2026
4eb74fe
[UC-3697] Add debian packaging, deployment, and skill discovery rules
jellespijker Jul 29, 2026
549a825
[EMB-463] Fix opencode.json schema compatibility
jellespijker Jul 29, 2026
2fc9682
[UC-3697] Add PR lifecycle rule and verify_and_create_pr script
jellespijker Jul 29, 2026
6ae03d2
[UC-3697] Establish Quad-Agent development architecture
jellespijker Jul 29, 2026
8566072
[UC-3697] Establish Quad-Agent development architecture
jellespijker Jul 30, 2026
f3fb2ad
[UC-3697] Update PR lifecycle rules, PR templates and verification sc…
jellespijker Jul 30, 2026
8bb1967
[UC-3697] Synchronize Quad-Agent bootstrap rules and security hooks
jellespijker Jul 30, 2026
dd34b17
[UC-3697] Sync branch with upstream base and platform emulation seeding
jellespijker Jul 30, 2026
c289772
[UC-3697] Update agentic guidelines with empirical verification gates…
jellespijker Jul 30, 2026
56dcb3e
[UC-3697] Resolve conflict markers and sanitize Quad-Agent hooks
jellespijker Jul 30, 2026
502def7
[UC-3697] Enforce DESIGN.md as single source of truth for UI rules
jellespijker Jul 31, 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
45 changes: 45 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# .pre-commit-config.yaml
# fdm_materials pre-commit checks

default_install_hook_types: [pre-commit, commit-msg]

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-yaml
files: \.(yaml|yml)$
- id: check-json
files: \.json$
- id: check-added-large-files
args: ['--maxkb=40000']
- id: end-of-file-fixer
- id: trailing-whitespace

- repo: https://github.com/thoughtworks/talisman
rev: v1.32.0
hooks:
- id: talisman-commit
name: Scan for potential secrets (Talisman)
exclude: |
(?x)^(
\.github/.*|
docs/.*|
.*\.md|
\.pre-commit-config\.yaml
)$

- repo: local
hooks:
- id: block-absolute-paths
name: Block absolute local path references
entry: '(/home/[a-zA-Z0-9_\.-]+|/Users/[a-zA-Z0-9_\.-]+)'
language: pygrep
types: [text]
exclude: |
(?x)^(
AGENTS.md|
README.md|
docs/.*|
\.github/.*
)$
Loading