@pleaseai/agent 0.1.16

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 (4) hide show
  1. package/LICENSE +112 -0
  2. package/README.md +738 -0
  3. package/dist/index.js +28403 -0
  4. package/package.json +57 -0
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@pleaseai/agent",
3
+ "type": "module",
4
+ "version": "0.1.16",
5
+ "description": "Autonomous coding agent for GitHub, Linear, and Slack",
6
+ "license": "FSL-1.1-MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/pleaseai/agent-please.git",
10
+ "directory": "apps/agent-please"
11
+ },
12
+ "bin": {
13
+ "agent": "./dist/index.js",
14
+ "agent-please": "./dist/index.js",
15
+ "agentplease": "./dist/index.js"
16
+ },
17
+ "files": [
18
+ "LICENSE",
19
+ "README.md",
20
+ "dist"
21
+ ],
22
+ "scripts": {
23
+ "prepublishOnly": "cp ../../LICENSE ../../README.md .",
24
+ "postpublish": "rm -f LICENSE README.md",
25
+ "build": "nuxt build && bun build ./src/index.ts --outdir ./dist --target bun && bun run scripts/add-shebang.ts",
26
+ "dev": "nuxt dev --dotenv .env.local",
27
+ "prepare": "nuxt prepare",
28
+ "lint": "eslint .",
29
+ "lint:fix": "eslint . --fix",
30
+ "check": "tsc --noEmit",
31
+ "test": "bun test",
32
+ "test:coverage": "bun test --coverage --coverage-reporter=lcov"
33
+ },
34
+ "dependencies": {
35
+ "@chat-adapter/github": "^4.20.2",
36
+ "@chat-adapter/slack": "^4.20.2",
37
+ "@chat-adapter/state-memory": "^4.20.2",
38
+ "@nuxt/ui": "^4.5.1",
39
+ "@octokit/graphql": "^9.0.3",
40
+ "@pleaseai/agent-core": "0.1.2",
41
+ "@vueuse/nuxt": "^14.2.1",
42
+ "chat": "^4.20.2",
43
+ "commander": "^14.0.3",
44
+ "nuxt": "^4.4.2",
45
+ "tailwindcss": "^4.2.2"
46
+ },
47
+ "devDependencies": {
48
+ "@antfu/eslint-config": "^7.7.0",
49
+ "@iconify-json/lucide": "^1.2.98",
50
+ "@nuxt/eslint": "^1.15.2",
51
+ "@types/js-yaml": "^4.0.9",
52
+ "@types/node": "^25.4.0",
53
+ "bun-types": "^1.3.10",
54
+ "eslint": "^10.0.3",
55
+ "typescript": "^5.7.0"
56
+ }
57
+ }