Skip to content

Commit 8292e36

Browse files
author
Engraphis Maintainers
committed
chore: reset public history to a sanitized source snapshot
0 parents  commit 8292e36

335 files changed

Lines changed: 92573 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude-plugin/marketplace.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "engraphis",
3+
"owner": {
4+
"name": "The Engraphis Authors",
5+
"url": "https://github.com/Coding-Dev-Tools/engraphis"
6+
},
7+
"plugins": [
8+
{
9+
"name": "engraphis-memory",
10+
"source": "./",
11+
"description": "Discipline for giving agents durable, scoped, explainable memory across sessions and repos with the Engraphis MCP tools.",
12+
"version": "1.1.5"
13+
}
14+
]
15+
}

.claude-plugin/plugin.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "engraphis-memory",
3+
"version": "1.1.5",
4+
"description": "Give agents durable, scoped, explainable memory across sessions and repos via the Engraphis MCP tools. Use when you learn something worth keeping, need prior context before acting, or ask why/how a fact changed. Covers remember/recall, why/timeline, forget/pin/correct, sessions, and code search.",
5+
"author": {
6+
"name": "The Engraphis Authors",
7+
"url": "https://github.com/Coding-Dev-Tools/engraphis"
8+
},
9+
"repository": "https://github.com/Coding-Dev-Tools/engraphis",
10+
"license": "Apache-2.0",
11+
"keywords": [
12+
"engraphis",
13+
"memory",
14+
"mcp",
15+
"agents",
16+
"recall",
17+
"bi-temporal",
18+
"claude-code"
19+
]
20+
}

.claude-plugin/skill-assets.sha256

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
a972f840492bf1041f1e9525452127a6d5d117d5fcd231230b1d2ae656d85d13 .claude-plugin/marketplace.json
2+
dba3e0713559b267581f45cfd5907aae4689df77790b02bbcf22309d9ffa73ef .claude-plugin/plugin.json
3+
89bf2728e44a3c877e31982d387fcfab10fbe065eb6441b2792375ca5105c07c skills/engraphis-memory/SKILL.md
4+
a295b0448e2ff372ddd8ea4e0bc8dc53f3d4bd56ff1fbd0d88cf4b6179511ce1 skills/engraphis-memory/references/CONVENTIONS.md
5+
45f4b4ad9dbfd39f2b377083d9b3eec5eed7cba7cb8fa139e3f420bdd6105343 skills/engraphis-memory/references/SCOPING.md
6+
12980f16face01fee5f65cde0c4aa2297200b2252861b341ec7762e32600da60 skills/engraphis-memory/references/TOOLS.md

.dockerignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.git
2+
.github
3+
__pycache__
4+
*.pyc
5+
.pytest_cache
6+
.ruff_cache
7+
*.db
8+
*.db-wal
9+
*.db-shm
10+
.env
11+
.venv
12+
venv
13+
docs/_build
14+
*.egg-info
15+
build
16+
dist

.env.example

Lines changed: 279 additions & 0 deletions
Large diffs are not rendered by default.

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
*.pyd binary
2+
*.so binary
3+
*.dll binary
4+
.claude-plugin/*.json text eol=lf
5+
.claude-plugin/skill-assets.sha256 text eol=lf
6+
skills/engraphis-memory/*.md text eol=lf
7+
skills/engraphis-memory/references/*.md text eol=lf

.githooks/pre-commit

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/env bash
2+
# Warn-only design-slop check for the Engraphis dashboard.
3+
#
4+
# Runs ONLY when engraphis/static/index.html is staged, and NEVER blocks the
5+
# commit — it prints a summary and always exits 0. Warn-only is deliberate: the
6+
# automated development workflows may commit, and a blocking hook would break
7+
# those unattended commits. For a hard gate on your own manual commits, run
8+
# `bash scripts/design-lint.sh --strict` yourself before committing.
9+
#
10+
# Enable once, from the repo root (survives on Windows / Git Bash too):
11+
# git config core.hooksPath .githooks
12+
set -uo pipefail
13+
14+
staged="$(git diff --cached --name-only 2>/dev/null || true)"
15+
printf '%s\n' "$staged" | grep -q 'engraphis/static/index\.html' || exit 0
16+
17+
if [ -f scripts/design-lint.sh ]; then
18+
bash scripts/design-lint.sh engraphis/static/index.html || true
19+
fi
20+
exit 0

.github/CODEOWNERS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Default owners for the entire repository
2+
* @Coding-Dev-Tools
3+
4+
# Core engine changes
5+
/engraphis/core/ @Coding-Dev-Tools
6+
7+
# CI/CD changes
8+
.github/workflows/ @Coding-Dev-Tools

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
buy_me_a_coffee: Jaixii

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Engraphis Documentation
4+
url: https://github.com/Coding-Dev-Tools/engraphis#readme
5+
about: Check the README for usage guides
6+
- name: Security Issues
7+
url: https://github.com/Coding-Dev-Tools/engraphis/security/policy
8+
about: Report security vulnerabilities here

0 commit comments

Comments
 (0)