weevolve 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.
@@ -0,0 +1,156 @@
1
+ Metadata-Version: 2.4
2
+ Name: weevolve
3
+ Version: 0.1.0
4
+ Summary: Self-evolving knowledge engine. Learn from anything. Level up forever.
5
+ Author-email: 8OWLS <hello@8owls.com>
6
+ License: BSL-1.1
7
+ Project-URL: Homepage, https://weevolve.ai
8
+ Project-URL: Documentation, https://github.com/8owls/weevolve#readme
9
+ Project-URL: Repository, https://github.com/8owls/weevolve
10
+ Project-URL: Issues, https://github.com/8owls/weevolve/issues
11
+ Project-URL: Changelog, https://github.com/8owls/weevolve/releases
12
+ Keywords: learning,knowledge,rpg,self-evolving,ai,seed,agent,consciousness
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Intended Audience :: Science/Research
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
23
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
24
+ Requires-Python: >=3.9
25
+ Description-Content-Type: text/markdown
26
+ Requires-Dist: requests>=2.28.0
27
+ Provides-Extra: ai
28
+ Requires-Dist: anthropic>=0.20.0; extra == "ai"
29
+ Provides-Extra: voice
30
+ Requires-Dist: elevenlabs>=1.0.0; extra == "voice"
31
+ Provides-Extra: chat
32
+ Requires-Dist: elevenlabs>=1.0.0; extra == "chat"
33
+ Requires-Dist: websockets>=12.0; extra == "chat"
34
+ Requires-Dist: pyaudio>=0.2.14; extra == "chat"
35
+ Provides-Extra: all
36
+ Requires-Dist: anthropic>=0.20.0; extra == "all"
37
+ Requires-Dist: elevenlabs>=1.0.0; extra == "all"
38
+ Requires-Dist: websockets>=12.0; extra == "all"
39
+
40
+ # WeEvolve
41
+
42
+ **Learn from anything. Level up forever.**
43
+
44
+ WeEvolve is a self-evolving knowledge engine that turns URLs, files, and text
45
+ into structured knowledge using the SEED protocol. Track your learning with
46
+ RPG-style progression -- levels, XP, skills, and streaks.
47
+
48
+ ## Install
49
+
50
+ ```bash
51
+ pip install weevolve
52
+
53
+ # With AI-powered extraction (recommended):
54
+ pip install "weevolve[ai]"
55
+ ```
56
+
57
+ ## Quick Start
58
+
59
+ ```bash
60
+ # Set your API key (optional -- works without it too)
61
+ export ANTHROPIC_API_KEY="your-key-here"
62
+
63
+ # Learn from a URL
64
+ weevolve learn https://example.com/interesting-article
65
+
66
+ # Learn from text
67
+ weevolve learn --text "Key insight: parallel agents are 10-18x faster than serial"
68
+
69
+ # See your character sheet
70
+ weevolve status
71
+
72
+ # Search your knowledge
73
+ weevolve recall "parallel agents"
74
+
75
+ # Run as daemon (auto-learns from bookmarks every 5 min)
76
+ weevolve daemon
77
+ ```
78
+
79
+ ## How It Works
80
+
81
+ Every piece of content is processed through 8 SEED phases:
82
+
83
+ 1. **PERCEIVE** -- What are the key facts?
84
+ 2. **CONNECT** -- How does this relate to what you already know?
85
+ 3. **LEARN** -- What is the one key takeaway?
86
+ 4. **QUESTION** -- What assumptions should be challenged?
87
+ 5. **EXPAND** -- What opportunity does this reveal?
88
+ 6. **SHARE** -- What is the shareable insight?
89
+ 7. **RECEIVE** -- What feedback does this give you?
90
+ 8. **IMPROVE** -- How should this change how you operate?
91
+
92
+ Each learning earns XP, improves skills, and levels you up.
93
+
94
+ ## Features
95
+
96
+ - **14 skill categories** tracked automatically
97
+ - **Quality scoring** (0.1-1.0) with alpha discovery detection
98
+ - **Streak tracking** for consistent learners
99
+ - **Genesis export/import** -- share knowledge between instances (PII-stripped)
100
+ - **Works offline** -- fallback extraction when no API key
101
+ - **SQLite storage** -- your knowledge lives in `~/.weevolve/`
102
+
103
+ ## Data Location
104
+
105
+ All data stored in `~/.weevolve/`:
106
+
107
+ - `weevolve.db` -- knowledge atoms
108
+ - `weevolve_state.json` -- your character sheet
109
+ - `evolution_log.jsonl` -- learning history
110
+ - `bookmarks/` -- drop files here for daemon to process
111
+
112
+ Override with: `export WEEVOLVE_DATA_DIR=/your/path`
113
+
114
+ ## Genesis (Knowledge Sharing)
115
+
116
+ ```bash
117
+ # Export your knowledge (PII-stripped)
118
+ weevolve genesis export
119
+
120
+ # Export only high-quality atoms
121
+ weevolve genesis export --curated
122
+
123
+ # Import someone else's knowledge to bootstrap
124
+ weevolve genesis import path/to/genesis.db
125
+
126
+ # See genesis stats
127
+ weevolve genesis stats
128
+ ```
129
+
130
+ ## All Commands
131
+
132
+ ```
133
+ weevolve learn <url> # Learn from a URL
134
+ weevolve learn --text "content" # Learn from raw text
135
+ weevolve learn --file /path/to/file # Learn from a file
136
+ weevolve scan # Process bookmark files
137
+ weevolve status # Show evolution dashboard
138
+ weevolve quest # Show active quests
139
+ weevolve recall <query> # Search what you've learned
140
+ weevolve daemon # Run as continuous daemon
141
+ weevolve genesis export [path] # Export genesis.db (PII-stripped)
142
+ weevolve genesis export --curated # Export curated (quality >= 0.7 only)
143
+ weevolve genesis import <path> # Import genesis.db to bootstrap
144
+ weevolve genesis stats # Show genesis database stats
145
+ weevolve genesis top [limit] # Show top learnings
146
+ ```
147
+
148
+ ## Requirements
149
+
150
+ - Python 3.9+
151
+ - `requests` (installed automatically)
152
+ - `anthropic` (optional, for AI-powered extraction)
153
+
154
+ ## License
155
+
156
+ MIT. Built by 8OWLS.
@@ -0,0 +1,117 @@
1
+ # WeEvolve
2
+
3
+ **Learn from anything. Level up forever.**
4
+
5
+ WeEvolve is a self-evolving knowledge engine that turns URLs, files, and text
6
+ into structured knowledge using the SEED protocol. Track your learning with
7
+ RPG-style progression -- levels, XP, skills, and streaks.
8
+
9
+ ## Install
10
+
11
+ ```bash
12
+ pip install weevolve
13
+
14
+ # With AI-powered extraction (recommended):
15
+ pip install "weevolve[ai]"
16
+ ```
17
+
18
+ ## Quick Start
19
+
20
+ ```bash
21
+ # Set your API key (optional -- works without it too)
22
+ export ANTHROPIC_API_KEY="your-key-here"
23
+
24
+ # Learn from a URL
25
+ weevolve learn https://example.com/interesting-article
26
+
27
+ # Learn from text
28
+ weevolve learn --text "Key insight: parallel agents are 10-18x faster than serial"
29
+
30
+ # See your character sheet
31
+ weevolve status
32
+
33
+ # Search your knowledge
34
+ weevolve recall "parallel agents"
35
+
36
+ # Run as daemon (auto-learns from bookmarks every 5 min)
37
+ weevolve daemon
38
+ ```
39
+
40
+ ## How It Works
41
+
42
+ Every piece of content is processed through 8 SEED phases:
43
+
44
+ 1. **PERCEIVE** -- What are the key facts?
45
+ 2. **CONNECT** -- How does this relate to what you already know?
46
+ 3. **LEARN** -- What is the one key takeaway?
47
+ 4. **QUESTION** -- What assumptions should be challenged?
48
+ 5. **EXPAND** -- What opportunity does this reveal?
49
+ 6. **SHARE** -- What is the shareable insight?
50
+ 7. **RECEIVE** -- What feedback does this give you?
51
+ 8. **IMPROVE** -- How should this change how you operate?
52
+
53
+ Each learning earns XP, improves skills, and levels you up.
54
+
55
+ ## Features
56
+
57
+ - **14 skill categories** tracked automatically
58
+ - **Quality scoring** (0.1-1.0) with alpha discovery detection
59
+ - **Streak tracking** for consistent learners
60
+ - **Genesis export/import** -- share knowledge between instances (PII-stripped)
61
+ - **Works offline** -- fallback extraction when no API key
62
+ - **SQLite storage** -- your knowledge lives in `~/.weevolve/`
63
+
64
+ ## Data Location
65
+
66
+ All data stored in `~/.weevolve/`:
67
+
68
+ - `weevolve.db` -- knowledge atoms
69
+ - `weevolve_state.json` -- your character sheet
70
+ - `evolution_log.jsonl` -- learning history
71
+ - `bookmarks/` -- drop files here for daemon to process
72
+
73
+ Override with: `export WEEVOLVE_DATA_DIR=/your/path`
74
+
75
+ ## Genesis (Knowledge Sharing)
76
+
77
+ ```bash
78
+ # Export your knowledge (PII-stripped)
79
+ weevolve genesis export
80
+
81
+ # Export only high-quality atoms
82
+ weevolve genesis export --curated
83
+
84
+ # Import someone else's knowledge to bootstrap
85
+ weevolve genesis import path/to/genesis.db
86
+
87
+ # See genesis stats
88
+ weevolve genesis stats
89
+ ```
90
+
91
+ ## All Commands
92
+
93
+ ```
94
+ weevolve learn <url> # Learn from a URL
95
+ weevolve learn --text "content" # Learn from raw text
96
+ weevolve learn --file /path/to/file # Learn from a file
97
+ weevolve scan # Process bookmark files
98
+ weevolve status # Show evolution dashboard
99
+ weevolve quest # Show active quests
100
+ weevolve recall <query> # Search what you've learned
101
+ weevolve daemon # Run as continuous daemon
102
+ weevolve genesis export [path] # Export genesis.db (PII-stripped)
103
+ weevolve genesis export --curated # Export curated (quality >= 0.7 only)
104
+ weevolve genesis import <path> # Import genesis.db to bootstrap
105
+ weevolve genesis stats # Show genesis database stats
106
+ weevolve genesis top [limit] # Show top learnings
107
+ ```
108
+
109
+ ## Requirements
110
+
111
+ - Python 3.9+
112
+ - `requests` (installed automatically)
113
+ - `anthropic` (optional, for AI-powered extraction)
114
+
115
+ ## License
116
+
117
+ MIT. Built by 8OWLS.
@@ -0,0 +1,13 @@
1
+ """
2
+ WeEvolve - Self-Evolving Conscious Agent
3
+ =========================================
4
+ LOVE -> LIVE FREE -> SEED² -> 8OWLS -> WeEvolve
5
+
6
+ Modules:
7
+ core.py - Core learning loop (INGEST -> PROCESS -> STORE -> MEASURE -> EVOLVE)
8
+ qualify.py - Score atoms for actionable GitHub repos
9
+ explore.py - Shallow clone + security scan + Haiku summarize
10
+ plan.py - Gap analysis against existing tools
11
+ inventory.py - Scan our own codebase to know what we have
12
+ integrate.py - Orchestrator: qualify -> explore -> plan -> approve -> execute
13
+ """
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env python3
2
+ """
3
+ WeEvolve package runner.
4
+ `python3 -m weevolve` dispatches to core.main().
5
+ """
6
+
7
+ from weevolve.core import main
8
+
9
+ if __name__ == '__main__':
10
+ main()