memstead 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- memstead-0.0.1/.gitignore +56 -0
- memstead-0.0.1/PKG-INFO +15 -0
- memstead-0.0.1/README.md +5 -0
- memstead-0.0.1/pyproject.toml +15 -0
- memstead-0.0.1/src/memstead/__init__.py +8 -0
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# Dependencies
|
|
2
|
+
node_modules/
|
|
3
|
+
|
|
4
|
+
# macOS
|
|
5
|
+
.DS_Store
|
|
6
|
+
|
|
7
|
+
# IDE
|
|
8
|
+
.history/
|
|
9
|
+
.obsidian/
|
|
10
|
+
|
|
11
|
+
# Claude Code state (ephemeral, per-session)
|
|
12
|
+
.claude/scheduled_tasks.lock
|
|
13
|
+
.claude/settings.local.json
|
|
14
|
+
.claude/worktrees/
|
|
15
|
+
|
|
16
|
+
# Obsidian unified vault (symlinks only)
|
|
17
|
+
all_specs/
|
|
18
|
+
|
|
19
|
+
# Logs
|
|
20
|
+
*.log
|
|
21
|
+
|
|
22
|
+
# Local AI config (operator-specific) — see scripts/run-claude
|
|
23
|
+
.env
|
|
24
|
+
|
|
25
|
+
# memstead workspace (legacy `.mdgv.cache` spelling kept so stale dirs stay ignored)
|
|
26
|
+
graph/.memstead.cache/
|
|
27
|
+
graph/.mdgv.cache/
|
|
28
|
+
graph/mem-repo/
|
|
29
|
+
graph/.git/
|
|
30
|
+
old_mdgv/
|
|
31
|
+
|
|
32
|
+
# /reconcile skill bookkeeping — local per-source sync cursors, never committed
|
|
33
|
+
graph/.memstead/reconcile-cursors.json
|
|
34
|
+
|
|
35
|
+
# Test ghost: a buggy test that did not anchor at a TempDir would
|
|
36
|
+
# regenerate `engine/crates/memstead-core/mem-repo/` under the crate
|
|
37
|
+
# dir. Ignore so a recurrence does not silently land back in the tree.
|
|
38
|
+
/engine/crates/memstead-core/mem-repo/
|
|
39
|
+
schemes/
|
|
40
|
+
|
|
41
|
+
# added by `memstead-cli`
|
|
42
|
+
test/agentic/workspace/mem-repo/
|
|
43
|
+
|
|
44
|
+
# added by `memstead-cli`
|
|
45
|
+
test/agentic/workspace/mcp/mem-repo/
|
|
46
|
+
|
|
47
|
+
# added by `memstead-cli`
|
|
48
|
+
test/agentic/workspace/cli/mem-repo/
|
|
49
|
+
|
|
50
|
+
# added by `memstead-cli`
|
|
51
|
+
test/agentic/workspace/coprobe/mem-repo/
|
|
52
|
+
dev/reservations/crates/*/target/
|
|
53
|
+
|
|
54
|
+
# The open-source engine repo, nested here but versioned separately (public-repo-split)
|
|
55
|
+
/public/
|
|
56
|
+
/target/
|
memstead-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: memstead
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Memstead — typed, validated knowledge models for AI agents, installable like packages. Name reservation; the first real release lands with the public launch.
|
|
5
|
+
Project-URL: Homepage, https://memstead.com
|
|
6
|
+
Project-URL: Repository, https://github.com/memstead
|
|
7
|
+
License: MIT OR Apache-2.0
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# memstead
|
|
12
|
+
|
|
13
|
+
Memstead — typed, validated knowledge models for AI agents, installable like packages.
|
|
14
|
+
|
|
15
|
+
This package name is reserved for the Memstead project; the first real release lands with the public launch. See [memstead.com](https://memstead.com) and [github.com/memstead](https://github.com/memstead).
|
memstead-0.0.1/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# memstead
|
|
2
|
+
|
|
3
|
+
Memstead — typed, validated knowledge models for AI agents, installable like packages.
|
|
4
|
+
|
|
5
|
+
This package name is reserved for the Memstead project; the first real release lands with the public launch. See [memstead.com](https://memstead.com) and [github.com/memstead](https://github.com/memstead).
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "memstead"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Memstead — typed, validated knowledge models for AI agents, installable like packages. Name reservation; the first real release lands with the public launch."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT OR Apache-2.0" }
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
|
|
13
|
+
[project.urls]
|
|
14
|
+
Homepage = "https://memstead.com"
|
|
15
|
+
Repository = "https://github.com/memstead"
|