@fractary/core-cli 0.1.0 → 0.1.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/README.md +35 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,10 +2,29 @@
2
2
 
3
3
  Command-line interface for Fractary Core SDK - work tracking, repository management, specifications, logging, file storage, and documentation.
4
4
 
5
+ [![npm version](https://img.shields.io/npm/v/@fractary/core-cli.svg)](https://www.npmjs.com/package/@fractary/core-cli)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
+
8
+ ## Overview
9
+
10
+ The Fractary Core CLI provides command-line access to all core operations including work tracking, repository management, specification management, logging, file storage, and documentation. It's designed for automation, scripting, and CI/CD integration.
11
+
12
+ ### Key Features
13
+
14
+ - **6 Command Modules**: work, repo, spec, logs, file, docs
15
+ - **Multi-Platform Support**: GitHub, GitLab, Bitbucket, Jira, Linear
16
+ - **JSON Output**: Machine-readable output for scripting
17
+ - **Configuration Files**: YAML/JSON configuration support
18
+ - **Environment Variables**: Flexible configuration options
19
+
5
20
  ## Installation
6
21
 
7
22
  ```bash
23
+ # Install globally
8
24
  npm install -g @fractary/core-cli
25
+
26
+ # Or use with npx (no installation required)
27
+ npx @fractary/core-cli [command]
9
28
  ```
10
29
 
11
30
  ## Usage
@@ -307,7 +326,20 @@ program.parse();
307
326
 
308
327
  MIT
309
328
 
310
- ## Related Projects
329
+ ## Documentation
330
+
331
+ - **[Complete CLI Reference](../../README.md#cli)** - Full command documentation
332
+ - **[Configuration Guide](../../docs/guides/configuration.md)** - Configuration options
333
+ - **[Integration Guide](../../docs/guides/integration.md)** - CI/CD integration
334
+ - **[Examples](../../docs/examples/)** - Usage examples and scripts
335
+
336
+ ## Related Packages
337
+
338
+ - **[@fractary/core](../sdk/js/)** - Core SDK for JavaScript/TypeScript
339
+ - **[@fractary/core-mcp](../mcp/server/)** - MCP server for AI agents
340
+
341
+ ## Links
311
342
 
312
- - [@fractary/core](../sdk/js) - Core SDK for JavaScript/TypeScript
313
- - [fractary/core](../) - Fractary Core monorepo
343
+ - [GitHub Repository](https://github.com/fractary/core)
344
+ - [Issue Tracker](https://github.com/fractary/core/issues)
345
+ - [NPM Package](https://www.npmjs.com/package/@fractary/core-cli)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fractary/core-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "CLI for Fractary Core SDK - work tracking, repository management, specifications, logging, file storage, and documentation",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -44,7 +44,7 @@
44
44
  "author": "Fractary Team",
45
45
  "license": "MIT",
46
46
  "dependencies": {
47
- "@fractary/core": "^0.1.0",
47
+ "@fractary/core": "^0.1.1",
48
48
  "chalk": "^5.3.0",
49
49
  "cli-table3": "^0.6.5",
50
50
  "commander": "^11.1.0",