mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
* chore: ignore graphify-out * fix(bughunt): assemble the report in-script - the report agent dropped findings * fix(bughunt): retry only unverified candidates and catch garbage-verdict batches * fix(bughunt): retune the round budget floor and require a budget directive * feat(bughunt): per-round telemetry and a runStats aggregate Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> * docs(bughunt-run): record run telemetry and validate coordinates after each hunt * feat(bughunt): drop the sonnet finder slot Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> * feat(bughunt): rebuild adaptive targeting - directory clusters, cooldown, graph-fed explore lenses * fix(bughunt): rewind a dead finder's explore draw so unread files are never marked clean * docs(bughunt-run): pre-hunt graph ranking checklist and offline test roster * fix(bughunt): rewind thrown-stage explore draws and correct log/doc wording Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> * fix(bughunt): disambiguate absorb() drop log and retire dead sonnet label alternation Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
102 lines
2.1 KiB
Plaintext
102 lines
2.1 KiB
Plaintext
# Docker secrets
|
|
.env
|
|
Server/.env
|
|
|
|
# Claude Code — local-only by default. The exceptions are committed on purpose:
|
|
# a cloud session clones this repo and sees ONLY tracked files, so the CLAUDE.md
|
|
# files, skills and workflows have to be here or it starts with no instructions.
|
|
# Machine-local state (settings.local.json, locks) stays ignored.
|
|
.claude/*
|
|
!.claude/skills/
|
|
!.claude/workflows/
|
|
CLAUDE.local.md
|
|
.mcp.json
|
|
|
|
# GitHub Copilot instructions (internal)
|
|
.github/copilot-instructions.md
|
|
.github/instructions/
|
|
|
|
# Agent worktrees (Mission Control fleet isolation)
|
|
.worktrees/
|
|
|
|
# AI-specific / internal planning docs
|
|
docs/brain/
|
|
docs/CODEMAPS/
|
|
docs/designs/
|
|
docs/research/
|
|
docs/superpowers/
|
|
/skills/
|
|
|
|
# Mutation-testing output (npm run test:mutate). Local-only by design: a
|
|
# surviving-mutant report maps exactly which behaviour nothing tests.
|
|
Client/tauri-client/.stryker-tmp/
|
|
Client/tauri-client/reports/
|
|
|
|
# Server runtime artifacts
|
|
Server/chatserver.exe
|
|
Server/chatserver.exe~
|
|
Server/owncord-server.exe
|
|
Server/server.exe
|
|
Server/config.yaml
|
|
Server/data/
|
|
|
|
# Test coverage artifacts
|
|
*.out
|
|
Server/cov.out
|
|
Server/cover.out
|
|
Server/coverage.out
|
|
Server/ws_cover.out
|
|
Server/ws_cov.out
|
|
|
|
# Client build artifacts
|
|
Client/publish/
|
|
Client/publish-single/
|
|
Client/publish-release/
|
|
|
|
# HTML mockups (large design reference files)
|
|
Client/login-mockup.html
|
|
Client/ui-mockup.html
|
|
|
|
# Tauri typegen (auto-generated IPC bindings)
|
|
Client/tauri-client/src/generated/
|
|
.typecache
|
|
|
|
# Node modules
|
|
node_modules/
|
|
|
|
# AI tooling
|
|
.gstack/
|
|
.claude-flow/
|
|
.superpowers/
|
|
.rust-review-results/
|
|
.claude/worktrees/
|
|
|
|
# Internal dev tools (e.g. tools/livekit-server.exe) are ignored, but the
|
|
# owncord-introspect MCP server is a committed, shared dev tool.
|
|
tools/*
|
|
!tools/mcp-introspect/
|
|
tools/mcp-introspect/node_modules/
|
|
.cache/
|
|
|
|
# Internal dev files (root-level scratch only)
|
|
/SKILL.md
|
|
TODOS.md
|
|
DESIGN.md
|
|
Client/CLIENT-REVIEW.md
|
|
|
|
# Agent tooling state
|
|
.serena/
|
|
|
|
# Client env (holds API keys - never commit)
|
|
Client/tauri-client/.env
|
|
|
|
# Rust review output
|
|
.rust-review-results/
|
|
|
|
# Claude Code worktrees (local scratch, never commit)
|
|
.claude/worktrees/
|
|
|
|
# local server run logs
|
|
server.log
|
|
graphify-out/
|