vinod 0.1.0__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.
- vinod-0.1.0/PKG-INFO +38 -0
- vinod-0.1.0/README.md +22 -0
- vinod-0.1.0/pyproject.toml +36 -0
- vinod-0.1.0/setup.cfg +4 -0
- vinod-0.1.0/src/vinod/__init__.py +3 -0
- vinod-0.1.0/src/vinod/cli.py +22 -0
- vinod-0.1.0/src/vinod.egg-info/PKG-INFO +38 -0
- vinod-0.1.0/src/vinod.egg-info/SOURCES.txt +10 -0
- vinod-0.1.0/src/vinod.egg-info/dependency_links.txt +1 -0
- vinod-0.1.0/src/vinod.egg-info/entry_points.txt +2 -0
- vinod-0.1.0/src/vinod.egg-info/requires.txt +1 -0
- vinod-0.1.0/src/vinod.egg-info/top_level.txt +1 -0
vinod-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vinod
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A stateful personal agent that learns how you work — passive observer, episodic memory, belief formation.
|
|
5
|
+
Author-email: Arunabh Majumdar <arunabh.majumdar@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/motornomad/agent-vinod
|
|
8
|
+
Keywords: agent,memory,personalization,llm,observer,productivity
|
|
9
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
13
|
+
Requires-Python: >=3.11
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
Requires-Dist: click>=8.1.0
|
|
16
|
+
|
|
17
|
+
# vinod
|
|
18
|
+
|
|
19
|
+
**A stateful personal agent that learns how you work.**
|
|
20
|
+
|
|
21
|
+
Vinod passively observes your work patterns — file changes, coding sessions, task completions — and builds an episodic + semantic memory of your behavior over time.
|
|
22
|
+
|
|
23
|
+
> pip install vinod is currently a name reservation. Full release coming soon.
|
|
24
|
+
|
|
25
|
+
## What it will do
|
|
26
|
+
|
|
27
|
+
- Passive observation: watches file changes, Claude Code sessions, Google Sheets task tracker
|
|
28
|
+
- Episodic memory: append-only log of everything it sees
|
|
29
|
+
- Belief formation: weekly consolidation from episodic → stable behavioral patterns
|
|
30
|
+
- Personal model: fine-tuned on your own behavioral corpus (Day 75+)
|
|
31
|
+
|
|
32
|
+
## Status
|
|
33
|
+
|
|
34
|
+
Pre-alpha. Observer pipeline being built. ETA: mid-2026.
|
|
35
|
+
|
|
36
|
+
## Author
|
|
37
|
+
|
|
38
|
+
Arunabh Majumdar — arunabh.majumdar@gmail.com
|
vinod-0.1.0/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# vinod
|
|
2
|
+
|
|
3
|
+
**A stateful personal agent that learns how you work.**
|
|
4
|
+
|
|
5
|
+
Vinod passively observes your work patterns — file changes, coding sessions, task completions — and builds an episodic + semantic memory of your behavior over time.
|
|
6
|
+
|
|
7
|
+
> pip install vinod is currently a name reservation. Full release coming soon.
|
|
8
|
+
|
|
9
|
+
## What it will do
|
|
10
|
+
|
|
11
|
+
- Passive observation: watches file changes, Claude Code sessions, Google Sheets task tracker
|
|
12
|
+
- Episodic memory: append-only log of everything it sees
|
|
13
|
+
- Belief formation: weekly consolidation from episodic → stable behavioral patterns
|
|
14
|
+
- Personal model: fine-tuned on your own behavioral corpus (Day 75+)
|
|
15
|
+
|
|
16
|
+
## Status
|
|
17
|
+
|
|
18
|
+
Pre-alpha. Observer pipeline being built. ETA: mid-2026.
|
|
19
|
+
|
|
20
|
+
## Author
|
|
21
|
+
|
|
22
|
+
Arunabh Majumdar — arunabh.majumdar@gmail.com
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=45", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "vinod"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "A stateful personal agent that learns how you work — passive observer, episodic memory, belief formation."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
authors = [
|
|
12
|
+
{name = "Arunabh Majumdar", email = "arunabh.majumdar@gmail.com"}
|
|
13
|
+
]
|
|
14
|
+
license = {text = "MIT"}
|
|
15
|
+
keywords = ["agent", "memory", "personalization", "llm", "observer", "productivity"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Programming Language :: Python :: 3.11",
|
|
20
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
21
|
+
]
|
|
22
|
+
dependencies = [
|
|
23
|
+
"click>=8.1.0",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[project.scripts]
|
|
27
|
+
vinod = "vinod.cli:cli"
|
|
28
|
+
|
|
29
|
+
[project.urls]
|
|
30
|
+
Homepage = "https://github.com/motornomad/agent-vinod"
|
|
31
|
+
|
|
32
|
+
[tool.setuptools.packages.find]
|
|
33
|
+
where = ["src"]
|
|
34
|
+
|
|
35
|
+
[tool.setuptools.package-dir]
|
|
36
|
+
"" = "src"
|
vinod-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"""Vinod CLI — vinod init / status"""
|
|
2
|
+
from __future__ import annotations
|
|
3
|
+
|
|
4
|
+
import click
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
@click.group()
|
|
8
|
+
@click.version_option()
|
|
9
|
+
def cli() -> None:
|
|
10
|
+
"""Vinod: a stateful personal agent that learns how you work."""
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
@cli.command()
|
|
14
|
+
def init() -> None:
|
|
15
|
+
"""Initialise Vinod in the current user's home directory."""
|
|
16
|
+
click.echo("Vinod: initialising observer pipeline... (coming soon)")
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
@cli.command()
|
|
20
|
+
def status() -> None:
|
|
21
|
+
"""Show current observer and memory status."""
|
|
22
|
+
click.echo("Vinod: status check... (coming soon)")
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vinod
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A stateful personal agent that learns how you work — passive observer, episodic memory, belief formation.
|
|
5
|
+
Author-email: Arunabh Majumdar <arunabh.majumdar@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/motornomad/agent-vinod
|
|
8
|
+
Keywords: agent,memory,personalization,llm,observer,productivity
|
|
9
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
13
|
+
Requires-Python: >=3.11
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
Requires-Dist: click>=8.1.0
|
|
16
|
+
|
|
17
|
+
# vinod
|
|
18
|
+
|
|
19
|
+
**A stateful personal agent that learns how you work.**
|
|
20
|
+
|
|
21
|
+
Vinod passively observes your work patterns — file changes, coding sessions, task completions — and builds an episodic + semantic memory of your behavior over time.
|
|
22
|
+
|
|
23
|
+
> pip install vinod is currently a name reservation. Full release coming soon.
|
|
24
|
+
|
|
25
|
+
## What it will do
|
|
26
|
+
|
|
27
|
+
- Passive observation: watches file changes, Claude Code sessions, Google Sheets task tracker
|
|
28
|
+
- Episodic memory: append-only log of everything it sees
|
|
29
|
+
- Belief formation: weekly consolidation from episodic → stable behavioral patterns
|
|
30
|
+
- Personal model: fine-tuned on your own behavioral corpus (Day 75+)
|
|
31
|
+
|
|
32
|
+
## Status
|
|
33
|
+
|
|
34
|
+
Pre-alpha. Observer pipeline being built. ETA: mid-2026.
|
|
35
|
+
|
|
36
|
+
## Author
|
|
37
|
+
|
|
38
|
+
Arunabh Majumdar — arunabh.majumdar@gmail.com
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
src/vinod/__init__.py
|
|
4
|
+
src/vinod/cli.py
|
|
5
|
+
src/vinod.egg-info/PKG-INFO
|
|
6
|
+
src/vinod.egg-info/SOURCES.txt
|
|
7
|
+
src/vinod.egg-info/dependency_links.txt
|
|
8
|
+
src/vinod.egg-info/entry_points.txt
|
|
9
|
+
src/vinod.egg-info/requires.txt
|
|
10
|
+
src/vinod.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
click>=8.1.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
vinod
|