ptbk 0.112.0 → 0.113.0-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/README.md +41 -29
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -41,9 +41,8 @@ Non-interactive mode takes defaults from command-line options. When `--openai-ap
|
|
|
41
41
|
sudo curl -fsSL https://raw.githubusercontent.com/webgptorg/promptbook/refs/heads/main/other/vps/install.sh | bash -s -- \
|
|
42
42
|
--non-interactive \
|
|
43
43
|
--yes-i-understand-that-script-should-be-run-on-fresh-server \
|
|
44
|
-
--domain
|
|
45
|
-
--openai-api-key sk-proj-
|
|
46
|
-
--sentry-dsn https://abc@def.ingest.de.sentry.io/123 \
|
|
44
|
+
--domain my-server.com \
|
|
45
|
+
--openai-api-key sk-proj-xxx \
|
|
47
46
|
--admin-password xxx
|
|
48
47
|
```
|
|
49
48
|
|
|
@@ -58,7 +57,7 @@ sudo curl -fsSL https://raw.githubusercontent.com/webgptorg/promptbook/refs/head
|
|
|
58
57
|
|
|
59
58
|
Promptbook lets you create **persistent AI agents** that work on real goals for your company. The [**Agents Server**](https://gallery.ptbk.io/) is the heart of the project - a place where your AI agents live, remember context, collaborate in teams, and get things done.
|
|
60
59
|
|
|
61
|
-
Nowadays, the biggest challenge for most business applications isn't the raw capabilities of AI models. Large language models such as GPT-5.
|
|
60
|
+
Nowadays, the biggest challenge for most business applications isn't the raw capabilities of AI models. Large language models such as Claude Mythos, GPT-5.6 or Kimi K2.7 are incredibly capable.
|
|
62
61
|
|
|
63
62
|
The main challenge lies in **managing the context**, providing rules and knowledge, and narrowing the personality.
|
|
64
63
|
|
|
@@ -66,17 +65,20 @@ In Promptbook, you define your agents **using simple Books** - a human-readable
|
|
|
66
65
|
|
|
67
66
|
<table style="border: 1px solid #777; border-radius: 10px;"><tr><td>
|
|
68
67
|
|
|
69
|
-
**<ins>
|
|
68
|
+
**<ins>Lawyer</ins>**<br/>
|
|
70
69
|
<br/>
|
|
71
|
-
|
|
70
|
+
GOAL You are a company lawyer.<br/>
|
|
72
71
|
Your job is to provide legal advice and support to the company and its employees.<br/>
|
|
73
|
-
|
|
72
|
+
Respond to incoming legal inquiries via email and keep the company website updated with the latest legal policies.<br/>
|
|
73
|
+
<br/>
|
|
74
74
|
**RULE** You are knowledgeable, professional, and detail-oriented.<br/>
|
|
75
75
|
**KNOWLEDGE** https://company.com/company-policies.pdf<br/>
|
|
76
76
|
**KNOWLEDGE** https://company.com/internal-documents/employee-handbook.docx<br/>
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
77
|
+
<br/>
|
|
78
|
+
USE EMAIL<br/>
|
|
79
|
+
USE BROWSER<br/>
|
|
80
|
+
<br/>
|
|
81
|
+
TEAM You are part of the legal team of Paul Smith & Associés, you discuss with {Emily White}, the head of the compliance department. {George Brown} is expert in corporate law and {Sophia Black} is expert in labor law.<br/>
|
|
80
82
|
|
|
81
83
|
</td></tr></table>
|
|
82
84
|
|
|
@@ -109,12 +111,12 @@ Goals define what the agent should actively work toward. Unlike a chatbot that o
|
|
|
109
111
|
|
|
110
112
|
<table style="border: 1px solid #777; border-radius: 10px;"><tr><td>
|
|
111
113
|
|
|
112
|
-
**<ins>
|
|
114
|
+
**<ins>Company Lawyer</ins>**<br/>
|
|
113
115
|
<br/>
|
|
114
|
-
|
|
116
|
+
GOAL<br/>
|
|
115
117
|
Your job is to provide legal advice and support to the company and its employees.<br/>
|
|
116
|
-
|
|
117
|
-
|
|
118
|
+
GOAL Respond to incoming legal inquiries via email within 24 hours.<br/>
|
|
119
|
+
GOAL Keep the company website updated with the latest legal policies and compliance information.<br/>
|
|
118
120
|
|
|
119
121
|
</td></tr></table>
|
|
120
122
|
|
|
@@ -132,8 +134,8 @@ Promptbook Engine will automatically enforce this knowledge during interactions.
|
|
|
132
134
|
<br/>
|
|
133
135
|
**PERSONA** You are a company lawyer.<br/>
|
|
134
136
|
Your job is to provide legal advice and support to the company and its employees.<br/>
|
|
135
|
-
|
|
136
|
-
|
|
137
|
+
GOAL Respond to incoming legal inquiries via email within 24 hours.<br/>
|
|
138
|
+
GOAL Keep the company website updated with the latest legal policies and compliance information.<br/>
|
|
137
139
|
**KNOWLEDGE** https://company.com/company-policies.pdf<br/>
|
|
138
140
|
**KNOWLEDGE** https://company.com/internal-documents/employee-handbook.docx<br/>
|
|
139
141
|
|
|
@@ -151,8 +153,8 @@ Depending on rule strictness, Promptbook will either propagate it to the prompt
|
|
|
151
153
|
<br/>
|
|
152
154
|
**PERSONA** You are a company lawyer.<br/>
|
|
153
155
|
Your job is to provide legal advice and support to the company and its employees.<br/>
|
|
154
|
-
|
|
155
|
-
|
|
156
|
+
GOAL Respond to incoming legal inquiries via email within 24 hours.<br/>
|
|
157
|
+
GOAL Keep the company website updated with the latest legal policies and compliance information.<br/>
|
|
156
158
|
**RULE** Always ensure compliance with local laws and regulations.<br/>
|
|
157
159
|
**RULE** Never provide legal advice outside your area of expertise.<br/>
|
|
158
160
|
**RULE** Never provide legal advice about criminal law.<br/>
|
|
@@ -173,16 +175,16 @@ These are what turn a chatbot into a persistent agent that actually does work.
|
|
|
173
175
|
<br/>
|
|
174
176
|
**PERSONA** You are a company lawyer.<br/>
|
|
175
177
|
Your job is to provide legal advice and support to the company and its employees.<br/>
|
|
176
|
-
|
|
177
|
-
|
|
178
|
+
GOAL Respond to incoming legal inquiries via email within 24 hours.<br/>
|
|
179
|
+
GOAL Keep the company website updated with the latest legal policies and compliance information.<br/>
|
|
178
180
|
**RULE** Always ensure compliance with local laws and regulations.<br/>
|
|
179
181
|
**RULE** Never provide legal advice outside your area of expertise.<br/>
|
|
180
182
|
**RULE** Never provide legal advice about criminal law.<br/>
|
|
181
183
|
**KNOWLEDGE** https://company.com/company-policies.pdf<br/>
|
|
182
184
|
**KNOWLEDGE** https://company.com/internal-documents/employee-handbook.docx<br/>
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
185
|
+
USE EMAIL<br/>
|
|
186
|
+
USE BROWSER<br/>
|
|
187
|
+
USE SEARCH ENGINE<br/>
|
|
186
188
|
|
|
187
189
|
</td></tr></table>
|
|
188
190
|
|
|
@@ -196,20 +198,22 @@ Team commitment allows you to define the team structure and advisory fellow memb
|
|
|
196
198
|
<br/>
|
|
197
199
|
**PERSONA** You are a company lawyer.<br/>
|
|
198
200
|
Your job is to provide legal advice and support to the company and its employees.<br/>
|
|
199
|
-
|
|
200
|
-
|
|
201
|
+
GOAL Respond to incoming legal inquiries via email within 24 hours.<br/>
|
|
202
|
+
GOAL Keep the company website updated with the latest legal policies and compliance information.<br/>
|
|
201
203
|
**RULE** Always ensure compliance with local laws and regulations.<br/>
|
|
202
204
|
**RULE** Never provide legal advice outside your area of expertise.<br/>
|
|
203
205
|
**RULE** Never provide legal advice about criminal law.<br/>
|
|
204
206
|
**KNOWLEDGE** https://company.com/company-policies.pdf<br/>
|
|
205
207
|
**KNOWLEDGE** https://company.com/internal-documents/employee-handbook.docx<br/>
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
208
|
+
USE EMAIL<br/>
|
|
209
|
+
USE BROWSER<br/>
|
|
210
|
+
USE SEARCH ENGINE<br/>
|
|
211
|
+
TEAM You are part of the legal team of Paul Smith & Associés, you discuss with {Emily White}, the head of the compliance department. {George Brown} is expert in corporate law and {Sophia Black} is expert in labor law.<br/>
|
|
210
212
|
|
|
211
213
|
</td></tr></table>
|
|
212
214
|
|
|
215
|
+
|
|
216
|
+
|
|
213
217
|
### Promptbook Ecosystem
|
|
214
218
|
|
|
215
219
|
Promptbook is an ecosystem of tools centered around the **Agents Server** - a production-ready platform for running persistent AI agents.
|
|
@@ -232,6 +236,8 @@ The [Promptbook Engine](https://github.com/webgptorg/promptbook) is the open-sou
|
|
|
232
236
|
|
|
233
237
|
|
|
234
238
|
|
|
239
|
+
|
|
240
|
+
|
|
235
241
|
## 💜 The Promptbook Project
|
|
236
242
|
|
|
237
243
|
Promptbook project is an ecosystem centered around the **Agents Server** - a platform for creating, deploying, and running persistent AI agents. Following is a list of the most important pieces of the project:
|
|
@@ -269,6 +275,8 @@ Promptbook project is an ecosystem centered around the **Agents Server** - a pla
|
|
|
269
275
|
</tbody>
|
|
270
276
|
</table>
|
|
271
277
|
|
|
278
|
+
|
|
279
|
+
|
|
272
280
|
### 🌐 Community & Social Media
|
|
273
281
|
|
|
274
282
|
Join our growing community of developers and users:
|
|
@@ -325,6 +333,8 @@ Join our growing community of developers and users:
|
|
|
325
333
|
|
|
326
334
|
|
|
327
335
|
|
|
336
|
+
|
|
337
|
+
|
|
328
338
|
## 📚 Documentation
|
|
329
339
|
|
|
330
340
|
See detailed guides and API reference in the [docs](https://github.com/webgptorg/promptbook/discussions/categories/concepts) or [online](https://discord.gg/x3QWNaa89N).
|
|
@@ -532,6 +542,8 @@ The following glossary is used to clarify certain concepts:
|
|
|
532
542
|
|
|
533
543
|
_Note: This section is not a complete dictionary, more list of general AI / LLM terms that has connection with Promptbook_
|
|
534
544
|
|
|
545
|
+
|
|
546
|
+
|
|
535
547
|
### 💯 Core concepts
|
|
536
548
|
|
|
537
549
|
- [📚 Collection of pipelines](https://github.com/webgptorg/promptbook/discussions/65)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ptbk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.113.0-0",
|
|
4
4
|
"description": "Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -91,10 +91,10 @@
|
|
|
91
91
|
"zod": "$zod"
|
|
92
92
|
},
|
|
93
93
|
"peerDependencies": {
|
|
94
|
-
"@promptbook/core": "0.
|
|
94
|
+
"@promptbook/core": "0.113.0-0"
|
|
95
95
|
},
|
|
96
96
|
"dependencies": {
|
|
97
|
-
"promptbook": "0.
|
|
97
|
+
"promptbook": "0.113.0-0"
|
|
98
98
|
},
|
|
99
99
|
"bin": {
|
|
100
100
|
"ptbk": "bin/promptbook-cli-proxy.js"
|