claudish 9.7.1 → 10.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/AI_AGENT_GUIDE.md +3 -4
- package/dist/index.js +2547 -1667
- package/package.json +5 -5
package/AI_AGENT_GUIDE.md
CHANGED
|
@@ -92,10 +92,9 @@ Custom endpoints can be registered in `~/.claudish/config.json`. See [docs/setti
|
|
|
92
92
|
# OR Gemini direct
|
|
93
93
|
export GEMINI_API_KEY='...'
|
|
94
94
|
|
|
95
|
-
# OR Vertex AI (
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
# OR Vertex AI (OAuth mode - uses gcloud ADC)
|
|
95
|
+
# OR Vertex AI (Application Default Credentials)
|
|
96
|
+
gcloud auth application-default login
|
|
97
|
+
# Optional - claudish otherwise uses the ADC quota project or `gcloud config get project`
|
|
99
98
|
export VERTEX_PROJECT='your-gcp-project-id'
|
|
100
99
|
```
|
|
101
100
|
|