codebyplan 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.
- package/README.md +22 -0
- package/index.js +17 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# codebyplan
|
|
2
|
+
|
|
3
|
+
CLI for [CodeByPlan](https://codebyplan.com) — AI-powered development planning and tracking.
|
|
4
|
+
|
|
5
|
+
## Status
|
|
6
|
+
|
|
7
|
+
This package is a **placeholder** to reserve the `codebyplan` name on npm while the full CLI is being prepared.
|
|
8
|
+
|
|
9
|
+
## Current CLI
|
|
10
|
+
|
|
11
|
+
The active CLI is available as a scoped package:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install -g @codebyplan/cli
|
|
15
|
+
npx @codebyplan/cli --help
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## About CodeByPlan
|
|
19
|
+
|
|
20
|
+
CodeByPlan provides AI-powered development planning, task tracking, and workflow management for software projects.
|
|
21
|
+
|
|
22
|
+
Learn more at [codebyplan.com](https://codebyplan.com).
|
package/index.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
console.log(`
|
|
4
|
+
CodeByPlan CLI
|
|
5
|
+
==============
|
|
6
|
+
|
|
7
|
+
This package is a placeholder. The full CLI is coming soon.
|
|
8
|
+
|
|
9
|
+
In the meantime, use the current CLI package:
|
|
10
|
+
|
|
11
|
+
npm install -g @codebyplan/cli
|
|
12
|
+
npx @codebyplan/cli --help
|
|
13
|
+
|
|
14
|
+
Learn more at https://codebyplan.com
|
|
15
|
+
`);
|
|
16
|
+
|
|
17
|
+
process.exit(0);
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "codebyplan",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "CLI for CodeByPlan — AI-powered development planning and tracking",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"bin": {
|
|
7
|
+
"codebyplan": "index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"index.js",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public",
|
|
15
|
+
"registry": "https://registry.npmjs.org/"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://codebyplan.com",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/codebyplan/codebyplan.git",
|
|
21
|
+
"directory": "packages/codebyplan"
|
|
22
|
+
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=18"
|
|
25
|
+
}
|
|
26
|
+
}
|