tasksurf 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 (2) hide show
  1. package/index.js +2 -0
  2. package/package.json +16 -0
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log("tasksurf CLI coming soon — https://tasksurf.io");
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "tasksurf",
3
+ "version": "0.0.1",
4
+ "description": "TaskSurf CLI — terminal-native task management and AI coordination for software teams",
5
+ "bin": {
6
+ "surf": "./index.js"
7
+ },
8
+ "keywords": ["tasksurf", "cli", "project-management", "ai", "developer-tools"],
9
+ "author": "CloudSurf Software LLC",
10
+ "license": "MIT",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/cloudsurf-software/tasksurf-developer-tools"
14
+ },
15
+ "homepage": "https://tasksurf.io"
16
+ }