@panoptic-it-solutions/zoho-projects-client 0.2.1 → 0.2.2

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 +40 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,6 +8,46 @@ TypeScript client for Zoho Projects V3 API with OAuth 2.0 and rate limiting.
8
8
  npm install @panoptic-it-solutions/zoho-projects-client
9
9
  ```
10
10
 
11
+ ## AI Agent Setup (Claude Code)
12
+
13
+ For projects using Claude Code or other AI coding assistants, run the init command to set up helpful slash commands and documentation:
14
+
15
+ ```bash
16
+ npx @panoptic-it-solutions/zoho-projects-client init
17
+ ```
18
+
19
+ ### What it sets up
20
+
21
+ | File/Directory | Description |
22
+ |----------------|-------------|
23
+ | `.claude/commands/zoho-projects.md` | Full API reference with all namespaces and methods |
24
+ | `.claude/commands/zoho-auth.md` | OAuth 2.0 setup guide |
25
+ | `.claude/commands/zoho-examples.md` | Common usage patterns and examples |
26
+ | `CLAUDE.md` | Project context file for AI assistants |
27
+
28
+ ### Available Slash Commands
29
+
30
+ After setup, use these commands in Claude Code:
31
+
32
+ - `/zoho-projects` - Complete API reference
33
+ - `/zoho-auth` - OAuth authentication setup guide
34
+ - `/zoho-examples` - Code examples and patterns
35
+
36
+ ### Options
37
+
38
+ ```bash
39
+ # Include type definitions for enhanced AI visibility
40
+ npx @panoptic-it-solutions/zoho-projects-client init --with-types
41
+
42
+ # Skip npm install (if already installed)
43
+ npx @panoptic-it-solutions/zoho-projects-client init --skip-install
44
+
45
+ # Show help
46
+ npx @panoptic-it-solutions/zoho-projects-client init --help
47
+ ```
48
+
49
+ The `--with-types` option copies TypeScript definitions to `.ai-types/` for AI assistants that benefit from having type information in the project.
50
+
11
51
  ## Quick Start
12
52
 
13
53
  ```typescript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@panoptic-it-solutions/zoho-projects-client",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "TypeScript client for Zoho Projects V3 API with OAuth 2.0 and rate limiting",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",