Skip to content
Open
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
Binary file removed .DS_Store
Binary file not shown.
143 changes: 99 additions & 44 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,52 +1,107 @@
# Generated by Cargo
# will have compiled files and executables
debug
target

# These are backup files generated by rustfmt
# Rust build artifacts
/target/
**/*.rs.bk
Cargo.lock

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

# Generated by cargo mutants
# Contains mutation testing data
**/mutants.out*/
# Backup files
*.bak
*.bak2
*.backup
*.backup-*
*CORRECTED*

# RustRover
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
# OS files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Documentation (keep local, not in repo)
docs/
core-rs/docs/

# Concepts Project Artefacts (Deployment/Runtime)
TODO.md
RELEASE_PLAN.md
FILES_FOR_RELEASE.md
ck-client-js/
target
concepts/
examples/
scripts/
workflows/

# Runtime State
.ckports
.ckproject
# Runtime artifacts
*.log
*.pid
tx.jsonl
*.jsonl

# Concept kernel runtime directories
concepts/*/logs/
concepts/*/queue/
concepts/*/storage/
concepts/*/archive/
concepts/*/tool/.governor.pid
concepts/*/.continuants/
concepts/*/.processes/

# Generated files
concepts/*/ontology.ttl
concepts/*/ontology.yaml

# Hidden runtime directories
.continuants/
.processes/
.ckports

# Test/Development Scripts
test-*.sh
test-*.js
test-*.html
generate*.sh
create*.sh
*.log
*.bak
# Temporary test files
*.tmp
*.temp
test_*
**/test_*.html

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# Node modules (if any)
node_modules/
package-lock.json

# Python (if any)
__pycache__/
*.py[cod]
*$py.class
.Python
*.so
.pytest_cache/

# Templates backup
concepts/ConceptKernel.Template.*.v1.3.19.bak/
concepts/ConceptKernel.Template.*.backup-*/

# Documentation (only README.md, CHANGELOG.md, LICENSE allowed)
docs/

# Keep these
!.ckproject
!.gitignore

# Claude Flow generated files
.claude/settings.local.json
.mcp.json
claude-flow.config.json
.swarm/
.hive-mind/
.claude-flow/
memory/
coordination/
memory/claude-flow-data.json
memory/sessions/*
!memory/sessions/README.md
memory/agents/*
!memory/agents/README.md
coordination/memory_bank/*
coordination/subtasks/*
coordination/orchestration/*
*.db
*.db-journal
*.db-wal
*.sqlite
*.sqlite-journal
*.sqlite-wal
claude-flow
# Removed Windows wrapper files per user request
hive-mind-prompt-*.txt
Loading
Loading