bare-agent 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.
Files changed (2) hide show
  1. package/index.js +1 -0
  2. package/package.json +16 -0
package/index.js ADDED
@@ -0,0 +1 @@
1
+ // bare-agent — lightweight agent orchestration
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "bare-agent",
3
+ "version": "0.1.0",
4
+ "description": "Lightweight, composable agent orchestration. ~800 lines, 0 required deps. Use what you need, ignore the rest.",
5
+ "license": "MIT",
6
+ "author": "amrhas82",
7
+ "keywords": ["agent", "llm", "orchestration", "ai", "tool-calling", "planner", "lightweight"],
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/amrhas82/bare-agent"
11
+ },
12
+ "main": "index.js",
13
+ "engines": {
14
+ "node": ">=18"
15
+ }
16
+ }