pulseed 0.0.1

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.
Files changed (3) hide show
  1. package/README.md +7 -0
  2. package/index.js +3 -0
  3. package/package.json +21 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # pulseed
2
+
3
+ AI agent orchestrator that gives existing agents the drive to persist.
4
+
5
+ > PulSeed sits above agents and drives them: selecting goals, spawning agent sessions, observing results, and judging completion. PulSeed doesn't think — it makes agents think.
6
+
7
+ Full package coming soon.
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ // pulseed — AI agent orchestrator that gives existing agents the drive to persist.
2
+ // This is a placeholder release. Full package coming soon.
3
+ export const version = "0.0.1";
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "pulseed",
3
+ "version": "0.0.1",
4
+ "description": "AI agent orchestrator that gives existing agents the drive to persist",
5
+ "main": "index.js",
6
+ "type": "module",
7
+ "keywords": [
8
+ "ai",
9
+ "agent",
10
+ "orchestrator",
11
+ "autonomous",
12
+ "drive",
13
+ "goal"
14
+ ],
15
+ "author": "yuyoshimuta",
16
+ "license": "MIT",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/my-name-is-yu/SeedPulse"
20
+ }
21
+ }