@eat-pray-ai/yutu 0.10.8-dev1 → 0.10.8
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 +6 -6
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
[](https://github.com/eat-pray-ai/yutu/actions/workflows/publish.yml)
|
|
14
14
|
[](https://github.com/eat-pray-ai/yutu/actions/workflows/codeql.yml)
|
|
15
15
|
[](https://github.com/eat-pray-ai/yutu/actions/workflows/test.yml)
|
|
16
|
-
[](https://linux.do/tag/2234-tag/2234)
|
|
17
17
|
|
|
18
18
|
[](https://github.com/eat-pray-ai/yutu/releases/latest)
|
|
19
19
|
[](https://formulae.brew.sh/formula/yutu)
|
|
@@ -48,12 +48,11 @@ An account on [Google Cloud Platform](https://console.cloud.google.com/) is requ
|
|
|
48
48
|
- [YouTube Reporting API](https://console.cloud.google.com/apis/api/youtubereporting.googleapis.com/overview) (Optional)
|
|
49
49
|
2. **Create OAuth credentials**:
|
|
50
50
|
- Go to `APIs & Services -> OAuth consent screen`, create a consent screen with yourself as a test user
|
|
51
|
-
- Go to `Credentials -> Create Credentials -> OAuth Client ID`, select `
|
|
52
|
-
- Add `http://localhost:8216` as an authorized redirect URI
|
|
51
|
+
- Go to `Credentials -> Create Credentials -> OAuth Client ID`, select `Desktop app`
|
|
53
52
|
- Download the credential file and save it as `client_secret.json`, it should look like
|
|
54
53
|
```json
|
|
55
54
|
{
|
|
56
|
-
"
|
|
55
|
+
"installed": {
|
|
57
56
|
"client_id": "11181119.apps.googleusercontent.com",
|
|
58
57
|
"project_id": "yutu-11181119",
|
|
59
58
|
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
|
|
@@ -61,7 +60,7 @@ An account on [Google Cloud Platform](https://console.cloud.google.com/) is requ
|
|
|
61
60
|
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
|
|
62
61
|
"client_secret": "XXXXXXXXXXXXXXXX",
|
|
63
62
|
"redirect_uris": [
|
|
64
|
-
"http://localhost
|
|
63
|
+
"http://localhost"
|
|
65
64
|
]
|
|
66
65
|
}
|
|
67
66
|
}
|
|
@@ -77,7 +76,8 @@ An account on [Google Cloud Platform](https://console.cloud.google.com/) is requ
|
|
|
77
76
|
"access_token": "ya29.XXXXXXXXX",
|
|
78
77
|
"token_type": "Bearer",
|
|
79
78
|
"refresh_token": "1//XXXXXXXXXX",
|
|
80
|
-
"expiry": "2024-05-26T18:49:56.1911165+08:00"
|
|
79
|
+
"expiry": "2024-05-26T18:49:56.1911165+08:00",
|
|
80
|
+
"expires_in": 3599
|
|
81
81
|
}
|
|
82
82
|
```
|
|
83
83
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eat-pray-ai/yutu",
|
|
3
|
-
"version": "0.10.8
|
|
3
|
+
"version": "0.10.8",
|
|
4
|
+
"mcpName": "io.github.eat-pray-ai/yutu",
|
|
4
5
|
"description": "The AI-powered toolkit that grows your YouTube channel on autopilot",
|
|
5
6
|
"repository": {
|
|
6
7
|
"type": "git",
|
|
@@ -31,11 +32,11 @@
|
|
|
31
32
|
"node": ">=18"
|
|
32
33
|
},
|
|
33
34
|
"optionalDependencies": {
|
|
34
|
-
"@eat-pray-ai/yutu-darwin-arm64": "0.10.8
|
|
35
|
-
"@eat-pray-ai/yutu-darwin-x64": "0.10.8
|
|
36
|
-
"@eat-pray-ai/yutu-linux-arm64": "0.10.8
|
|
37
|
-
"@eat-pray-ai/yutu-linux-x64": "0.10.8
|
|
38
|
-
"@eat-pray-ai/yutu-win32-arm64": "0.10.8
|
|
39
|
-
"@eat-pray-ai/yutu-win32-x64": "0.10.8
|
|
35
|
+
"@eat-pray-ai/yutu-darwin-arm64": "0.10.8",
|
|
36
|
+
"@eat-pray-ai/yutu-darwin-x64": "0.10.8",
|
|
37
|
+
"@eat-pray-ai/yutu-linux-arm64": "0.10.8",
|
|
38
|
+
"@eat-pray-ai/yutu-linux-x64": "0.10.8",
|
|
39
|
+
"@eat-pray-ai/yutu-win32-arm64": "0.10.8",
|
|
40
|
+
"@eat-pray-ai/yutu-win32-x64": "0.10.8"
|
|
40
41
|
}
|
|
41
42
|
}
|