|
2 | 2 |
|
3 | 3 | This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. |
4 | 4 |
|
| 5 | +## Naming Guidelines |
| 6 | + |
| 7 | +When writing or updating documentation, code comments, CLI output, error messages, or any other user-facing text, use these official naming conventions: |
| 8 | + |
| 9 | +### Official Names |
| 10 | + |
| 11 | +- **Company Name**: "Tiger Data" (two words, with space) |
| 12 | +- **Cloud Platform**: "Tiger Cloud" (NOT "TigerData Cloud" or "TigerData Cloud Platform") |
| 13 | +- **CLI Tool**: "Tiger CLI" |
| 14 | +- **MCP Server**: "Tiger MCP" |
| 15 | +- **API References**: "Tiger Cloud API" (NOT "TigerData API") |
| 16 | + |
| 17 | +### Examples |
| 18 | + |
| 19 | +✅ **Correct Usage:** |
| 20 | +- "Tiger CLI is a command-line interface for managing Tiger Cloud platform resources." |
| 21 | +- "Authenticate with Tiger Cloud API" |
| 22 | +- "List all database services in your Tiger Cloud project." |
| 23 | +- "The Tiger MCP server provides programmatic access to Tiger Cloud." |
| 24 | + |
| 25 | +❌ **Incorrect Usage:** |
| 26 | +- ~~"TigerData Cloud Platform"~~ → Use "Tiger Cloud platform" |
| 27 | +- ~~"TigerData API"~~ → Use "Tiger Cloud API" |
| 28 | +- ~~"TigerData project"~~ → Use "Tiger Cloud project" |
| 29 | +- ~~"TigerData MCP"~~ → Use "Tiger MCP" |
| 30 | + |
5 | 31 | ## Development Commands |
6 | 32 |
|
7 | 33 | ### Building |
@@ -435,7 +461,7 @@ func buildRootCmd() *cobra.Command { |
435 | 461 |
|
436 | 462 | cmd := &cobra.Command{ |
437 | 463 | Use: "tiger", |
438 | | - Short: "Tiger CLI - TigerData Cloud Platform command-line interface", |
| 464 | + Short: "Tiger CLI - Tiger Cloud Platform command-line interface", |
439 | 465 | Long: `Complete CLI description...`, |
440 | 466 | PersistentPreRunE: func(cmd *cobra.Command, args []string) error { |
441 | 467 | // Use local flag variables in scope |
|
0 commit comments