wunderland 0.1.0
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.
- package/.github/workflows/publish.yml +22 -0
- package/README.md +56 -0
- package/index.d.ts +18 -0
- package/index.js +27 -0
- package/package.json +46 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
name: Publish to npm
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
publish:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@v4
|
|
13
|
+
|
|
14
|
+
- uses: actions/setup-node@v4
|
|
15
|
+
with:
|
|
16
|
+
node-version: 20
|
|
17
|
+
registry-url: https://registry.npmjs.org
|
|
18
|
+
|
|
19
|
+
- name: Publish to npm
|
|
20
|
+
run: npm publish --access public
|
|
21
|
+
env:
|
|
22
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# Wonderland
|
|
2
|
+
|
|
3
|
+
> AI-powered personal assistant framework built on [AgentOS](https://agentos.sh)
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/wonderland)
|
|
6
|
+
[](https://opensource.org/licenses/MIT)
|
|
7
|
+
|
|
8
|
+
**Status: Coming Soon**
|
|
9
|
+
|
|
10
|
+
Wonderland is a personal AI assistant framework built on the AgentOS ecosystem. Think OpenClaw, but as a modular npm package you can build on.
|
|
11
|
+
|
|
12
|
+
## Features (Planned)
|
|
13
|
+
|
|
14
|
+
- **Multi-channel communication** - Telegram, Discord, Slack, WhatsApp, iMessage, Signal
|
|
15
|
+
- **Persistent memory** - Long-term context that follows you across conversations
|
|
16
|
+
- **Proactive task scheduling** - Cron jobs, reminders, heartbeats
|
|
17
|
+
- **Self-building skills** - Agent can create its own capabilities
|
|
18
|
+
- **Human takeover support** - Seamless handoff to human operators
|
|
19
|
+
|
|
20
|
+
## Installation
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npm install wonderland
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Quick Start
|
|
27
|
+
|
|
28
|
+
```javascript
|
|
29
|
+
const { WonderlandAgent } = require('wonderland');
|
|
30
|
+
|
|
31
|
+
const agent = new WonderlandAgent({
|
|
32
|
+
channels: ['telegram', 'discord'],
|
|
33
|
+
memory: { persistent: true },
|
|
34
|
+
scheduler: { enabled: true }
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
await agent.initialize();
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Built on AgentOS
|
|
41
|
+
|
|
42
|
+
Wonderland leverages the [AgentOS](https://agentos.sh) ecosystem:
|
|
43
|
+
|
|
44
|
+
- `@framers/agentos` - Core orchestration runtime
|
|
45
|
+
- `@framers/sql-storage-adapter` - Persistent storage
|
|
46
|
+
- `@framers/agentos-extensions` - Community extensions
|
|
47
|
+
|
|
48
|
+
## Links
|
|
49
|
+
|
|
50
|
+
- [GitHub](https://github.com/jddunn/wonderland)
|
|
51
|
+
- [AgentOS](https://agentos.sh)
|
|
52
|
+
- [npm](https://www.npmjs.com/package/wonderland)
|
|
53
|
+
|
|
54
|
+
## License
|
|
55
|
+
|
|
56
|
+
MIT
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wonderland - AI-powered personal assistant framework
|
|
3
|
+
* Built on AgentOS
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
declare const wonderland: {
|
|
7
|
+
version: string;
|
|
8
|
+
status: 'coming-soon' | 'beta' | 'stable';
|
|
9
|
+
name: string;
|
|
10
|
+
description: string;
|
|
11
|
+
features: string[];
|
|
12
|
+
links: {
|
|
13
|
+
github: string;
|
|
14
|
+
agentos: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export = wonderland;
|
package/index.js
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wonderland - AI-powered personal assistant framework
|
|
3
|
+
* Built on AgentOS
|
|
4
|
+
*
|
|
5
|
+
* @see https://github.com/jddunn/wonderland
|
|
6
|
+
* @see https://agentos.sh
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
const VERSION = '0.1.0';
|
|
10
|
+
|
|
11
|
+
module.exports = {
|
|
12
|
+
version: VERSION,
|
|
13
|
+
status: 'coming-soon',
|
|
14
|
+
name: 'wonderland',
|
|
15
|
+
description: 'AI-powered personal assistant framework built on AgentOS',
|
|
16
|
+
features: [
|
|
17
|
+
'Multi-channel communication (Telegram, Discord, Slack, WhatsApp)',
|
|
18
|
+
'Persistent memory and context',
|
|
19
|
+
'Proactive task scheduling',
|
|
20
|
+
'Self-building skills',
|
|
21
|
+
'Human takeover support'
|
|
22
|
+
],
|
|
23
|
+
links: {
|
|
24
|
+
github: 'https://github.com/jddunn/wonderland',
|
|
25
|
+
agentos: 'https://agentos.sh'
|
|
26
|
+
}
|
|
27
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "wunderland",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "AI-powered personal assistant framework built on AgentOS - multi-channel communication, persistent memory, proactive task scheduling, and human takeover support",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"ai",
|
|
9
|
+
"assistant",
|
|
10
|
+
"agent",
|
|
11
|
+
"agentos",
|
|
12
|
+
"chatbot",
|
|
13
|
+
"telegram",
|
|
14
|
+
"discord",
|
|
15
|
+
"slack",
|
|
16
|
+
"whatsapp",
|
|
17
|
+
"personal-assistant",
|
|
18
|
+
"ai-agent",
|
|
19
|
+
"llm",
|
|
20
|
+
"automation"
|
|
21
|
+
],
|
|
22
|
+
"author": {
|
|
23
|
+
"name": "jdunnfive",
|
|
24
|
+
"url": "https://github.com/jddunn"
|
|
25
|
+
},
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"homepage": "https://github.com/jddunn/wonderland",
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "git+https://github.com/jddunn/wonderland.git"
|
|
31
|
+
},
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/jddunn/wonderland/issues"
|
|
34
|
+
},
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=18.0.0"
|
|
37
|
+
},
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"@framers/agentos": ">=0.1.0"
|
|
40
|
+
},
|
|
41
|
+
"peerDependenciesMeta": {
|
|
42
|
+
"@framers/agentos": {
|
|
43
|
+
"optional": true
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|