Informe JSON sin procesar legible por máquina
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 108,
"has_wiki": false,
"homepage": null,
"languages": {
"Python": 95793
},
"pushed_at": "2026-07-22T05:43:48Z",
"created_at": "2023-05-22T06:10:38Z",
"owner_type": "Organization",
"updated_at": "2026-07-22T05:44:05Z",
"description": "Tuya Device Sharing SDK",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "dev",
"license_spdx_raw": "MIT",
"primary_language": "Python",
"significant_languages": [
"Python"
]
},
"owner": {
"blog": "https://tuya.com",
"name": "Tuya",
"type": "Organization",
"login": "tuya",
"company": null,
"location": "China",
"followers": 799,
"avatar_url": "https://avatars.githubusercontent.com/u/73523937?v=4",
"created_at": "2020-10-27T08:46:26Z",
"is_verified": null,
"public_repos": 193,
"account_age_days": 2093
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "0.2.13",
"kind": "patch",
"published_at": "2026-07-01T09:00:41Z"
},
{
"tag": "0.2.10",
"kind": "patch",
"published_at": "2026-06-02T06:35:29Z"
},
{
"tag": "0.2.9",
"kind": "patch",
"published_at": "2026-01-12T08:22:45Z"
},
{
"tag": "0.2.8",
"kind": "patch",
"published_at": "2026-01-05T08:46:43Z"
},
{
"tag": "0.2.7",
"kind": "patch",
"published_at": "2026-01-05T09:19:55Z"
}
],
"recent_commits": [
{
"oid": "f270cf459a0d13cc632ba9cc86a6133d605dd703",
"body": "Fix MQTT stale client_id reconnect storm on renewal",
"is_bot": false,
"headline": "Merge pull request #70 from tuya/fix/mqtt-stale-clientid-reconnect",
"author_name": "Ritchie",
"author_login": "ritchie-cai",
"committed_at": "2026-07-22T05:43:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "86c24aeda4d6d70a9993309c170a26cd3b074f53",
"body": "Release the MQTT stale client_id reconnect fix; add 0.2.14 changelog entry.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore: bump version to 0.2.14",
"author_name": "Ritchie",
"author_login": "Ritchie-CRG",
"committed_at": "2026-07-22T05:38:43Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "6d400c48b9a123599bd1b96024665adf72447783",
"body": "On every renewal the SDK requests a fresh linkId, so the server issues a\nbrand-new client_id each time and lets the old one expire on its own 2h\nTTL. However the old paho client was only disconnect()-ed, never\nloop_stop()-ed, so its network-loop thread kept running. With paho's\ndefault reconnect_on_\n[…]\nerrors, so\n a flapping broker cannot spin into a credential-fetch / reconnect\n storm; a clean renewal at expiry still reconnects immediately.\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix(mq): stop stale client_id reconnect storm on MQTT renewal",
"author_name": "Ritchie",
"author_login": "Ritchie-CRG",
"committed_at": "2026-07-22T05:38:43Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "d7f11e377785cafde6d80d2456b7d5eaf1eb86f0",
"body": "Query room by device hotfix",
"is_bot": false,
"headline": "Merge pull request #69 from tuya/query-room-by-device-hotfix",
"author_name": "Ritchie",
"author_login": "ritchie-cai",
"committed_at": "2026-07-01T08:55:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e61b307e12512a15824b3c19434fe6adda06ecd4",
"body": "Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore: bump version to 0.2.13 and update changelog",
"author_name": "Ritchie",
"author_login": "Ritchie-CRG",
"committed_at": "2026-07-01T08:45:52Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "a83b3887e51070be6e799bd48bbd3e9904752d75",
"body": "Interfaces like query_room_by_device return {\"result\":\"\"} for a device with no\nroom. Decrypting an empty string crashes with \"Nonce must be between 8 and 128\nbytes\" (b64decode(\"\") -> empty nonce). Guard with `if ret.get(\"result\")` so an\nempty result is passed through untouched and callers get None as intended.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix(customerapi): skip AES-GCM decrypt when response result is empty",
"author_name": "Ritchie",
"author_login": "Ritchie-CRG",
"committed_at": "2026-07-01T08:44:37Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "733802da8a516f0d081e2180e5f31ae8ac39edf8",
"body": "…e_id}/room\n\nroom 接口应走端网关(用户 token),原 /v1.0/cloud/life/... 被误当云API,\n缺 channel_type/channel_key 报 code:2008。改回 /m/ 前缀端API path。\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix(home): query_room_by_device use 端API path /v1.0/m/thing/ha/{devic…",
"author_name": "Ritchie",
"author_login": "Ritchie-CRG",
"committed_at": "2026-07-01T06:43:17Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "4f9614124e7e6754df8e5634c466ce4e996322b6",
"body": "Add custom code type validation to disable local reporting when\ncustom-type is enabled (#68).",
"is_bot": false,
"headline": "Bump version to 0.2.12",
"author_name": "Ritchie",
"author_login": "Ritchie-CRG",
"committed_at": "2026-07-01T05:59:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da45591c75ae6fc37f86888aa4ae09b1feb636f9",
"body": "增加自定义code 类型校验",
"is_bot": false,
"headline": "Merge pull request #68 from hongjiaweifox-wq/dev",
"author_name": "Ritchie",
"author_login": "ritchie-cai",
"committed_at": "2026-07-01T05:41:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "32440d2040f47287d5f58253feec12eca7a2a7b3",
"body": null,
"is_bot": false,
"headline": "增加自定义code 类型校验",
"author_name": "hongjiaweifox-wq",
"author_login": null,
"committed_at": "2026-07-01T00:14:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c8a5a4dd2bb28bc33d746f68a69ad9c55ba94826",
"body": "feat(home): add query_room_by_device to query a device's room",
"is_bot": false,
"headline": "Merge pull request #67 from tuya/query-rooms-by-device",
"author_name": "Ritchie",
"author_login": "ritchie-cai",
"committed_at": "2026-06-26T09:29:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "56039780d53188a95ba754d2d0aea499db74d791",
"body": "Add HomeRepository.query_room_by_device and expose it via Manager to\nquery the room a device belongs to through\nGET /v1.0/cloud/life/ha/{device_id}/room. A device belongs to a single\nroom, so it returns one SmartLifeRoom (or None when the device has no\nroom, i.e. result is {} or null). Bump version to 0.2.11 and update\nREADME API list and release notes.\n\nCo-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>",
"is_bot": false,
"headline": "feat(home): add query_room_by_device to query a device's room",
"author_name": "Ritchie",
"author_login": "Ritchie-CRG",
"committed_at": "2026-06-26T08:55:18Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "bf5960111e85717e306040ec6a6a55aa26b6cf0d",
"body": null,
"is_bot": false,
"headline": "fix ruff format check issue",
"author_name": "Ritchie",
"author_login": "ritchie-cai",
"committed_at": "2026-06-02T07:26:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a607b5b4e1951c5b00bea683781ebe5f0f48d105",
"body": null,
"is_bot": false,
"headline": "Include requirements.txt in MANIFEST.in",
"author_name": "Ritchie",
"author_login": "ritchie-cai",
"committed_at": "2026-06-02T06:26:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "86b76ddcc94e9ac731b74335fbdc4439c56c6f23",
"body": null,
"is_bot": false,
"headline": "Read version from version.py",
"author_name": "Ritchie",
"author_login": "ritchie-cai",
"committed_at": "2026-06-02T06:25:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6eca561acacf67db9c9674b27a918cebfa7d5900",
"body": null,
"is_bot": false,
"headline": "Bump version to 0.2.10",
"author_name": "Ritchie",
"author_login": "ritchie-cai",
"committed_at": "2026-06-02T05:42:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "764663c84a2d4945e0e653820ea75af2bd1af7a0",
"body": "Update changelog for version 0.2.10 with new features and fixes.",
"is_bot": false,
"headline": "Add changelog entry for version 0.2.10",
"author_name": "Ritchie",
"author_login": "ritchie-cai",
"committed_at": "2026-06-01T12:49:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5511817dbc422010c4b6b461627a398c2b78e070",
"body": "fix boolean issue in enum_.py",
"is_bot": false,
"headline": "Merge pull request #55 from hiraniha/dev",
"author_name": "Ritchie",
"author_login": "ritchie-cai",
"committed_at": "2026-05-15T11:45:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c239cd03b90e00aad2088662767cd12259cdd87",
"body": "Add line breaks in release notes",
"is_bot": false,
"headline": "Merge pull request #59 from epenet/epenet/20260122-1042",
"author_name": "Ritchie",
"author_login": "ritchie-cai",
"committed_at": "2026-05-13T06:15:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d4b17e4128f3b4a677bf333c8a3798c9549c1b63",
"body": "Raise custom exception in CustomerApi.__request",
"is_bot": false,
"headline": "Merge pull request #58 from epenet/epenet/20260121-0744",
"author_name": "Ritchie",
"author_login": "ritchie-cai",
"committed_at": "2026-05-13T06:15:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f000ef037bfd6e8c583405aecd404e031db5dd67",
"body": "Add ruff-check to pre-commit",
"is_bot": false,
"headline": "Merge pull request #56 from epenet/epenet/20260112-0914",
"author_name": "Ritchie",
"author_login": "ritchie-cai",
"committed_at": "2026-05-13T06:14:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1c7e5a242648f421f7bf607cecf36378bb16f605",
"body": null,
"is_bot": false,
"headline": "Add line breaks in release notes",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2026-01-22T09:43:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "084aa673a5f449dcc31e462b4a62485f3d9c4bb8",
"body": null,
"is_bot": false,
"headline": "Raise custom exception in CustomerApi.__request",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2026-01-22T09:36:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b7e3766c76390597d55d2ac9a0cf471e7212b380",
"body": null,
"is_bot": false,
"headline": "Fix ruff F841 violations",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2026-01-12T13:06:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3c0c207b71b4b603b49deefc0589a95256af8e86",
"body": null,
"is_bot": false,
"headline": "Fix ruff F541 violations",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2026-01-12T13:04:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6a968505f6f94c48e63905927ec48e30fd611c0",
"body": null,
"is_bot": false,
"headline": "Fix ruff F401 violations",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2026-01-12T13:04:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "29e2935b4e26b7df2c5386a5e0d5571ece646ba5",
"body": null,
"is_bot": false,
"headline": "Fix ruff E712 violations",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2026-01-12T13:02:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7405b5decb704fa24e01cfbdb229002cfc3b66b5",
"body": null,
"is_bot": false,
"headline": "Fix ruff E402 violations",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2026-01-12T13:02:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "71edc10967244542bf8987b0cc0e0aacfaf359df",
"body": null,
"is_bot": false,
"headline": "Add ruff-check to pre-commit",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2026-01-12T08:36:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f635d83b837c45948af6cab77e45dd85e851253d",
"body": null,
"is_bot": false,
"headline": "update version",
"author_name": "huimiao",
"author_login": "shihuimiao",
"committed_at": "2026-01-12T05:51:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2cf1006e7d87a23718d7d75227e020edacd9119c",
"body": "Add pre-commit workflow",
"is_bot": false,
"headline": "Merge pull request #46 from epenet/epenet-20251205-0824",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2026-01-12T05:41:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e774230557771af17e4d8d4dcf308e6079b5b4fc",
"body": "Fix incorrect type hint in DeviceFunction",
"is_bot": false,
"headline": "Merge pull request #44 from epenet/epenet-20251205-0811",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2026-01-12T05:36:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0963bffe75f77ca721198d7e102613492e80cb2f",
"body": "Apply ruff format",
"is_bot": false,
"headline": "Merge pull request #47 from epenet/epenet-20251205-1104",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2026-01-12T05:36:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0bb82cf5a646e02f0dfa1c376d5d524d460ef30f",
"body": null,
"is_bot": false,
"headline": "fix boolean issue in enum_.py",
"author_name": "Harish Hirani",
"author_login": "hiraniha",
"committed_at": "2026-01-11T04:10:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "623798848557625498a0b8c887324646925686b7",
"body": null,
"is_bot": false,
"headline": "Fix incorrect type hint in DeviceFunction",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2026-01-05T08:10:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "468544cc5d4a1d7ce0ec7c289b4cf741428ea6f6",
"body": null,
"is_bot": false,
"headline": "Apply ruff format",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2026-01-05T08:08:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7a9621592f71e4a691fd2e1ccc0782cd0ee530ba",
"body": "Add `report_type` to device status handling and update logic",
"is_bot": false,
"headline": "Merge pull request #51 from abelyliu/feature/reportType",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2026-01-05T06:03:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f38007926c4c2017a3f2ac45dcd28b0a12878a0c",
"body": "…o device status",
"is_bot": false,
"headline": "Bump version to 0.2.8 and update README with `report_type` addition t…",
"author_name": "abely",
"author_login": "abelyliu",
"committed_at": "2026-01-05T06:01:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "34f6738b948f178e1ac4e1099b35b55afc96641a",
"body": null,
"is_bot": false,
"headline": "Update endpoint for device report type retrieval",
"author_name": "abely",
"author_login": "abelyliu",
"committed_at": "2025-12-30T06:25:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ac6760347a046fd7cf1c7297aeef63349f44b85f",
"body": null,
"is_bot": false,
"headline": "Add `report_type` to device status handling and update logic",
"author_name": "abely",
"author_login": "abelyliu",
"committed_at": "2025-12-24T09:08:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "39dcf4bc0603640e915ff92709ac1527cf93783b",
"body": null,
"is_bot": false,
"headline": "Update version.py",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2025-12-24T02:17:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a14f784b04f5349bfa3990d41ac2162f02664d0",
"body": "Fix typo in gitignore",
"is_bot": false,
"headline": "Merge pull request #45 from epenet/epenet-20251205-0822",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2025-12-24T02:12:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b78f2a6f6ef778702370c233df3376d65050a589",
"body": "Update manager.py",
"is_bot": false,
"headline": "Merge pull request #50 from shihuimiao/dev",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2025-12-24T02:11:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0f477b231c5544f99f296e3e46cfb3f09bc20ec7",
"body": "Add default request timeout",
"is_bot": false,
"headline": "Merge pull request #48 from epenet/epenet-20251208-0821",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2025-12-24T02:10:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1b17d5dd38bea139f2e76668b8ba3e8a14b05a66",
"body": "status_range type of Enum check",
"is_bot": false,
"headline": "Update manager.py",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2025-12-24T01:57:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "90c848b4e06eed6b942d44c9568b92c9ba3c62a4",
"body": null,
"is_bot": false,
"headline": "Add default request timeout",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2025-12-08T07:22:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "27310efaa2a34b2cabf834b8dec764ecdc9e8712",
"body": null,
"is_bot": false,
"headline": "test",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2025-12-05T10:01:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8ef0a8981e610fb0aba07ab3947678bca7ecf8e1",
"body": null,
"is_bot": false,
"headline": "Add pre-commit workflow",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2025-12-05T07:38:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "412a191770ebf786da52fa334227f1487d3306ee",
"body": null,
"is_bot": false,
"headline": "Fix typo in gitignore",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2025-12-05T07:22:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "86c0510e7229b9cf41b2bae57f3557a4d83c1928",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2025-11-24T01:39:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b652b809b6fba103ee05c20f5e85c0585891cf88",
"body": null,
"is_bot": false,
"headline": "Update version.py",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2025-11-24T01:38:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1a1cb523988c1e44dbcf2c5cb0abc7f9fdb288cd",
"body": "Cancel MQTT reconnect on stop",
"is_bot": false,
"headline": "Merge pull request #37 from epenet/epenet-20250904-1336",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2025-11-24T01:35:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "92c3eafc047a00c181e43c84eaa99f4a83d08f8e",
"body": null,
"is_bot": false,
"headline": "Cancel MQTT reconnect on stop",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2025-11-07T06:49:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b2156585daefa39fcd2feff964e9be53124697f1",
"body": null,
"is_bot": false,
"headline": "Update version.py",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2025-11-07T01:43:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "81f7a0511e0c8c75a79c2d169c14509b2a1fa3c6",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2025-11-07T01:43:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ea6c966a59a34bbfbdef0dd3647589684092fe6f",
"body": "Handle unknown dpId in _on_device_report",
"is_bot": false,
"headline": "Merge pull request #39 from magior/dev",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2025-11-07T01:31:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3346a83e99a38ccd42e7c54bd63d52f0ea75433f",
"body": "- replace nested if/else with continue for unknown dpId\n- change log level from warning to debug",
"is_bot": false,
"headline": "Refactor _on_device_report:",
"author_name": "magior",
"author_login": "magior",
"committed_at": "2025-10-21T13:49:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "61726d43f5cc18caa24ce1c05a4f575a04ed91a7",
"body": "Skip unmapped dpIds instead of raising KeyError, so valid updates are still applied.",
"is_bot": false,
"headline": "Handle unknown dpId in _on_device_report",
"author_name": "magior",
"author_login": "magior",
"committed_at": "2025-09-17T19:45:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e29d52f65e0db5f64b0ea7064a177cf6a0c4d51e",
"body": null,
"is_bot": false,
"headline": "Update version.py",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2025-09-05T01:58:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "405e562723a2d2631b3c3996bc3f7ef9b12c9f77",
"body": "Fix incorrect abstractclassmethod attribute",
"is_bot": false,
"headline": "Merge pull request #35 from epenet/epenet-20250904-0851",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2025-09-05T01:53:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "093fced221a8b66b3b6eaca42936ec3aa9222872",
"body": null,
"is_bot": false,
"headline": "Fix incorrect abstractclassmethod attribute",
"author_name": "epenet",
"author_login": "epenet",
"committed_at": "2025-09-04T11:12:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "25d79e2d84ce5bb7c61e5b1f4aa4cfc008253a6b",
"body": "fix paho-mqtt dependency",
"is_bot": false,
"headline": "Update version.py",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2025-09-04T04:46:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e015305dcdc602f16ac03289573e12a47f857ec9",
"body": "Fix compatibility with paho-client>=v2.1.0",
"is_bot": false,
"headline": "Merge pull request #25 from jbouwh/paho-mqtt-compat",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2025-09-04T03:33:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "98ed82950e8ba23d9c03e1f83aa73be134c48a28",
"body": null,
"is_bot": false,
"headline": "Merge branch 'dev' into paho-mqtt-compat",
"author_name": "Jan Bouwhuis",
"author_login": "jbouwh",
"committed_at": "2025-09-03T11:25:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0e3aa203a11863d34b2a94c37c00113af5637738",
"body": "feat: upgrade version to 0.2.2",
"is_bot": false,
"headline": "Update README.md",
"author_name": "秋风",
"author_login": "yuqiufeng",
"committed_at": "2025-08-18T10:34:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "360c3dc27398cc9f4e83f03febb425d7d2a06956",
"body": "feat: upgrade version to 0.2.2",
"is_bot": false,
"headline": "Update version.py",
"author_name": "秋风",
"author_login": "yuqiufeng",
"committed_at": "2025-08-18T10:33:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "740c64938f61f2cadc0f277e5c9b59d0ab83de8d",
"body": "add dp timestamps",
"is_bot": false,
"headline": "Merge pull request #31 from zzysszzy/feature/dp-timestamp",
"author_name": "秋风",
"author_login": "yuqiufeng",
"committed_at": "2025-08-18T08:28:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9f39cc8942982cb92e19d2eb26b7b65a88f743a6",
"body": null,
"is_bot": false,
"headline": "Only local strategy devices (with dpId) are supported",
"author_name": "zhangzy",
"author_login": "zzysszzy",
"committed_at": "2025-08-15T10:54:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a80825c4965f4fbdbd8464fe73f2c7af9f31071",
"body": null,
"is_bot": false,
"headline": "add dp timestamps",
"author_name": "zhangzy",
"author_login": "zzysszzy",
"committed_at": "2025-08-15T10:41:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "32b85778c869b4a9f1466f34731584073a2bf571",
"body": null,
"is_bot": false,
"headline": "Update version and release note",
"author_name": "jbouwh",
"author_login": "jbouwh",
"committed_at": "2025-07-11T11:53:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "834120aec63f5fba3edba456bfd697f2d0a15f59",
"body": null,
"is_bot": false,
"headline": "Ensure compatibility with paho-client>=v2.1.0",
"author_name": "jbouwh",
"author_login": "jbouwh",
"committed_at": "2025-07-11T11:46:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e3da82c3558988736b9a8b6df3cb810a4cb7eb1b",
"body": "Include list of updated status properties in SharingDeviceListener.update_device",
"is_bot": false,
"headline": "Merge pull request #17 from lanthaler/updated_status_properties",
"author_name": "秋风",
"author_login": "yuqiufeng",
"committed_at": "2024-08-13T01:24:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "29f80c969be59bf859318e1950c70a33618583ce",
"body": null,
"is_bot": false,
"headline": "Update change log and bump version",
"author_name": "Markus Lanthaler",
"author_login": "lanthaler",
"committed_at": "2024-08-06T12:19:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb7b0e02dd6bbe2ed2c9e4d748eb769e58bf7c2d",
"body": "…date_device\n\nIn the current form, no information what has been updated is shared with SharingDeviceListener. This makes it impossible to implement event-based integrations as required by switches for instance as it is unclear which state the device reported if it didn't change. \r\n\r\nAs an example, t\n[…]\nollowing instruction set: https://developer.tuya.com/en/docs/iot/s?id=Kbeoa9fkv6brp\r\n\r\nWithout this change it is impossible to handle events on switch_mode1 as the device might keep reporting \"click\".",
"is_bot": false,
"headline": "Include list of updated status properties in SharingDeviceListener.up…",
"author_name": "Markus Lanthaler",
"author_login": "lanthaler",
"committed_at": "2024-08-06T12:16:25Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f37422929d2bb1e8571faa183258bd895c2dfa28",
"body": null,
"is_bot": false,
"headline": "MQTT bulk subscription",
"author_name": "huimiao",
"author_login": "shihuimiao",
"committed_at": "2024-02-26T01:51:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9fe4537241b228b64a6b23e931893c46a68e54df",
"body": null,
"is_bot": false,
"headline": "MQTT bulk subscription",
"author_name": "huimiao",
"author_login": "shihuimiao",
"committed_at": "2024-02-22T06:58:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d69801dc83a9a29ae56f75316a74aa1e192e06d0",
"body": null,
"is_bot": false,
"headline": "MQTT bulk subscription",
"author_name": "huimiao",
"author_login": "shihuimiao",
"committed_at": "2024-02-22T06:44:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1496fc3c24643d0045e722698cd34978ce2636d1",
"body": null,
"is_bot": false,
"headline": "fix link id bug",
"author_name": "huimiao",
"author_login": "shihuimiao",
"committed_at": "2023-11-27T01:50:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cfc70eaec8660fdcdec0ea64f978bdddc52461f5",
"body": null,
"is_bot": false,
"headline": "fix topic bug",
"author_name": "huimiao",
"author_login": "shihuimiao",
"committed_at": "2023-11-01T07:30:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "179e1a188950a000716c7bea74996169acf9418f",
"body": null,
"is_bot": false,
"headline": "fix topic bug",
"author_name": "huimiao",
"author_login": "shihuimiao",
"committed_at": "2023-11-01T07:25:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d94810f4a4e3aabbf4bd7067705c85e189d3873d",
"body": "Dev",
"is_bot": false,
"headline": "Merge pull request #1 from tuya/dev",
"author_name": "melo",
"author_login": "shihuimiao",
"committed_at": "2023-10-27T01:26:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b3fd68b5be597a29c132b9c085e06705fe0c89e5",
"body": null,
"is_bot": false,
"headline": "mqtt topic change",
"author_name": "huimiao",
"author_login": "shihuimiao",
"committed_at": "2023-10-27T01:18:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6877c7fc0350ec5bdbe958f0c84861bd3749abd4",
"body": null,
"is_bot": false,
"headline": "mqtt topic change",
"author_name": "huimiao",
"author_login": "shihuimiao",
"committed_at": "2023-10-27T01:11:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9105e7d207e1f91430da60dbe3328bd57b96349a",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Oliver Ou",
"author_login": "zlinoliver",
"committed_at": "2023-10-17T06:37:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2352bfe72cc1f50420898595b976f93fc18e9f75",
"body": null,
"is_bot": false,
"headline": "Merge branch 'dev'",
"author_name": "oliver",
"author_login": "zlinoliver",
"committed_at": "2023-10-17T06:11:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ec0553e585831441c09eb52fd596fa8b74b0c7d3",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Oliver Ou",
"author_login": "zlinoliver",
"committed_at": "2023-10-17T06:09:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8944e8c3d8bfe7d42b21c6d73fa98c8355f5b53d",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Oliver Ou",
"author_login": "zlinoliver",
"committed_at": "2023-10-17T06:09:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9bc79a9590fc510e13c66b4edc3e9a74c084b506",
"body": null,
"is_bot": false,
"headline": "sdk update",
"author_name": "huimiao",
"author_login": "shihuimiao",
"committed_at": "2023-10-10T06:09:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ae5e3c4c67eaefffd1be79e39d9f411e43515d13",
"body": null,
"is_bot": false,
"headline": "sdk update",
"author_name": "huimiao",
"author_login": "shihuimiao",
"committed_at": "2023-10-10T06:08:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dac58315f10eb170121aef702b517c3f6fd7fde6",
"body": null,
"is_bot": false,
"headline": "add try",
"author_name": "huimiao",
"author_login": "shihuimiao",
"committed_at": "2023-09-05T02:35:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3e7706e12c7a0d5b61e70340a7a7ae83c675b67e",
"body": null,
"is_bot": false,
"headline": "sharing",
"author_name": "huimiao",
"author_login": "shihuimiao",
"committed_at": "2023-05-26T07:44:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3e0d9ae6eb5e23e97ce7697a1bd3b248fe2c75b1",
"body": null,
"is_bot": false,
"headline": "sharing",
"author_name": "huimiao",
"author_login": "shihuimiao",
"committed_at": "2023-05-22T07:04:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "58a7a78b4265590ec1f4d55136a52bbd0b6fdb24",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Oliver Ou",
"author_login": "zlinoliver",
"committed_at": "2023-05-22T06:10:38Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 5,
"commits_last_year": 66,
"latest_release_at": "2026-07-01T09:00:41Z",
"latest_release_tag": "0.2.13",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 15,
"days_since_latest_release": 20,
"mean_days_between_releases": 44.2
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 37,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "tuya-device-sharing-sdk",
"exists": true,
"license": "MIT",
"keywords": [
"tuya",
"device",
"sdk",
"python",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development"
],
"ecosystem": "pypi",
"matches_repo": true,
"registry_url": "https://pypi.org/project/tuya-device-sharing-sdk/",
"is_deprecated": false,
"latest_version": "0.2.14",
"repository_url": "https://github.com/tuya/tuya-device-sharing-sdk",
"versions_count": 25,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 116396,
"first_published_at": "2023-05-17T02:37:29.197923Z",
"latest_published_at": "2026-07-22T05:49:50.984306Z",
"latest_version_yanked": null,
"days_since_latest_publish": 0
}
]
},
"popularity": {
"forks": 27,
"stars": 44,
"watchers": 18,
"fork_history": {
"days": [
{
"date": "2023-11-26",
"count": 1
},
{
"date": "2024-01-18",
"count": 1
},
{
"date": "2024-02-13",
"count": 1
},
{
"date": "2024-03-15",
"count": 1
},
{
"date": "2024-06-17",
"count": 1
},
{
"date": "2024-08-06",
"count": 1
},
{
"date": "2024-12-24",
"count": 1
},
{
"date": "2025-01-31",
"count": 1
},
{
"date": "2025-02-28",
"count": 1
},
{
"date": "2025-05-23",
"count": 1
},
{
"date": "2025-06-04",
"count": 1
},
{
"date": "2025-08-15",
"count": 1
},
{
"date": "2025-09-04",
"count": 1
},
{
"date": "2025-09-17",
"count": 1
},
{
"date": "2025-10-07",
"count": 1
},
{
"date": "2025-12-13",
"count": 1
},
{
"date": "2025-12-16",
"count": 2
},
{
"date": "2025-12-24",
"count": 2
},
{
"date": "2026-01-11",
"count": 1
},
{
"date": "2026-02-09",
"count": 1
},
{
"date": "2026-03-19",
"count": 1
},
{
"date": "2026-03-20",
"count": 1
},
{
"date": "2026-03-23",
"count": 1
},
{
"date": "2026-05-11",
"count": 1
},
{
"date": "2026-06-16",
"count": 1
}
],
"complete": true,
"collected": 27,
"total_forks": 27
},
"star_history": {
"days": [
{
"date": "2023-10-18",
"count": 1
},
{
"date": "2023-11-12",
"count": 1
},
{
"date": "2024-02-04",
"count": 1
},
{
"date": "2024-02-06",
"count": 1
},
{
"date": "2024-02-14",
"count": 1
},
{
"date": "2024-02-18",
"count": 1
},
{
"date": "2024-03-26",
"count": 1
},
{
"date": "2024-05-06",
"count": 1
},
{
"date": "2024-05-26",
"count": 1
},
{
"date": "2024-05-31",
"count": 1
},
{
"date": "2024-06-17",
"count": 1
},
{
"date": "2024-06-22",
"count": 1
},
{
"date": "2024-07-13",
"count": 1
},
{
"date": "2024-07-15",
"count": 1
},
{
"date": "2024-08-25",
"count": 1
},
{
"date": "2024-08-28",
"count": 1
},
{
"date": "2024-09-19",
"count": 1
},
{
"date": "2024-12-25",
"count": 1
},
{
"date": "2025-01-03",
"count": 1
},
{
"date": "2025-01-21",
"count": 1
},
{
"date": "2025-02-14",
"count": 1
},
{
"date": "2025-03-23",
"count": 1
},
{
"date": "2025-05-22",
"count": 1
},
{
"date": "2025-06-04",
"count": 1
},
{
"date": "2025-07-13",
"count": 1
},
{
"date": "2025-07-25",
"count": 1
},
{
"date": "2025-07-29",
"count": 1
},
{
"date": "2025-09-09",
"count": 1
},
{
"date": "2025-09-17",
"count": 1
},
{
"date": "2025-11-06",
"count": 1
},
{
"date": "2025-11-12",
"count": 1
},
{
"date": "2025-11-24",
"count": 1
},
{
"date": "2025-11-26",
"count": 1
},
{
"date": "2025-11-29",
"count": 1
},
{
"date": "2026-01-05",
"count": 1
},
{
"date": "2026-01-12",
"count": 1
},
{
"date": "2026-02-10",
"count": 1
},
{
"date": "2026-02-15",
"count": 1
},
{
"date": "2026-02-22",
"count": 1
},
{
"date": "2026-03-20",
"count": 1
},
{
"date": "2026-03-26",
"count": 1
},
{
"date": "2026-04-09",
"count": 1
},
{
"date": "2026-05-11",
"count": 1
},
{
"date": "2026-06-13",
"count": 1
}
],
"complete": true,
"collected": 44,
"total_stars": 44
},
"open_issues_and_prs": 36
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [],
"largest_source_bytes": 11071,
"source_files_sampled": 40,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"requirements.txt",
"setup.py"
],
"advisories": {
"error": "No resolved dependencies carried a version and a supported ecosystem",
"scope": "repository_graph",
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 2,
"direct_affected_count": 0
},
"ecosystems": [
"pypi"
],
"dependencies": [],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "paho-mqtt",
"direct": false,
"version": null,
"ecosystem": "pypi"
},
{
"name": "requests",
"direct": false,
"version": null,
"ecosystem": "pypi"
}
],
"collected": true,
"truncated": false,
"total_count": 2,
"direct_count": 0,
"indirect_count": 2
}
},
"maintainership": {
"issues": {
"open_prs": 2,
"merged_prs": 24,
"open_issues": 34,
"closed_ratio": 0.105,
"closed_issues": 4,
"closed_unmerged_prs": 6
},
"bus_factor": 2,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "shihuimiao",
"commits": 34,
"avatar_url": "https://avatars.githubusercontent.com/u/17022443?v=4"
},
{
"type": "User",
"login": "epenet",
"commits": 16,
"avatar_url": "https://avatars.githubusercontent.com/u/6771947?v=4"
},
{
"type": "User",
"login": "ritchie-cai",
"commits": 13,
"avatar_url": "https://avatars.githubusercontent.com/u/14954312?v=4"
},
{
"type": "User",
"login": "Ritchie-CRG",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/164998685?v=4"
},
{
"type": "User",
"login": "zlinoliver",
"commits": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/907831?v=4"
},
{
"type": "User",
"login": "yuqiufeng",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/17353158?v=4"
},
{
"type": "User",
"login": "abelyliu",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/12029471?v=4"
},
{
"type": "User",
"login": "jbouwh",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/7188918?v=4"
},
{
"type": "User",
"login": "lanthaler",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/456407?v=4"
},
{
"type": "User",
"login": "magior",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/2691798?v=4"
}
],
"contributors_sampled": 12,
"top_contributor_share": 0.37
},
"quality_signals": {
"has_ci": true,
"has_tests": false,
"ci_workflows": [
"ci.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": true
},
"security_signals": {
"lockfiles": [],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 8,
"reason": "7 out of 8 merged PRs checked by a CI test -- score normalized to 8",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 2,
"reason": "Found 4/15 approved changesets -- score normalized to 2",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 0,
"reason": "project has 0 contributing companies or organizations -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "21 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "f270cf459a0d13cc632ba9cc86a6133d605dd703",
"ran_at": "2026-07-22T05:59:04Z",
"aggregate_score": 4.2,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-22T05:44:13Z",
"oldest_open_prs": [
{
"number": 9,
"created_at": "2024-02-13T04:33:38Z",
"last_comment_at": "2025-09-04T09:50:20Z",
"last_comment_author": "epenet"
},
{
"number": 23,
"created_at": "2024-12-24T13:03:14Z",
"last_comment_at": "2025-11-25T06:50:29Z",
"last_comment_author": "epenet"
}
],
"last_merged_pr_at": "2026-07-22T05:43:49Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 4,
"created_at": "2023-11-12T00:14:41Z",
"last_comment_at": "2025-02-24T02:16:58Z",
"last_comment_author": "YuriiMaiboroda"
},
{
"number": 7,
"created_at": "2023-12-05T15:11:26Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 8,
"created_at": "2024-02-13T04:25:49Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 10,
"created_at": "2024-03-10T12:54:00Z",
"last_comment_at": "2024-03-10T13:09:50Z",
"last_comment_author": "mweinelt"
},
{
"number": 11,
"created_at": "2024-03-13T15:02:51Z",
"last_comment_at": "2025-07-22T08:32:40Z",
"last_comment_author": "complxdbg"
},
{
"number": 14,
"created_at": "2024-06-20T14:06:36Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 15,
"created_at": "2024-07-11T08:15:16Z",
"last_comment_at": "2025-01-28T15:11:49Z",
"last_comment_author": "berkavil"
},
{
"number": 16,
"created_at": "2024-07-15T10:57:51Z",
"last_comment_at": "2024-07-30T16:32:46Z",
"last_comment_author": "Klemvast"
},
{
"number": 19,
"created_at": "2024-10-20T11:23:10Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 20,
"created_at": "2024-11-28T06:03:48Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 21,
"created_at": "2024-12-18T03:13:32Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 22,
"created_at": "2024-12-22T13:53:17Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 26,
"created_at": "2025-05-23T04:08:38Z",
"last_comment_at": "2025-07-11T10:41:25Z",
"last_comment_author": "epenet"
},
{
"number": 29,
"created_at": "2025-06-17T09:25:02Z",
"last_comment_at": "2025-10-03T09:58:26Z",
"last_comment_author": "FredrikM97"
},
{
"number": 30,
"created_at": "2025-07-25T16:51:54Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 32,
"created_at": "2025-08-17T11:32:33Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 33,
"created_at": "2025-08-18T08:12:34Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 34,
"created_at": "2025-08-29T14:48:12Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 38,
"created_at": "2025-09-16T19:44:41Z",
"last_comment_at": "2026-01-05T08:28:52Z",
"last_comment_author": "epenet"
},
{
"number": 40,
"created_at": "2025-10-30T15:33:13Z",
"last_comment_at": "2026-01-21T08:27:42Z",
"last_comment_author": "manuelaznar"
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/tuya/tuya-device-sharing-sdk",
"host": "github.com",
"name": "tuya-device-sharing-sdk",
"owner": "tuya"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 62,
"inputs": {
"security": 42,
"vitality": 84,
"community": 56,
"governance": 64,
"engineering": 56
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 84,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "good",
"name": "Development activity",
"note": null,
"notes": [],
"value": 73,
"inputs": {
"commits_last_year": 66,
"human_commit_share": 1,
"days_since_last_push": 0,
"active_weeks_last_year": 15
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "15/52 weeks with commits",
"points": 10.4,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 15
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "66 commits in the last year",
"points": 16.4,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 66
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "21 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 100,
"inputs": {
"releases_count": 5,
"latest_release_tag": "0.2.13",
"releases_from_tags": false,
"days_since_latest_release": 20,
"mean_days_between_releases": 44.2
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "5 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 5
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 20 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 20
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~44.2 days",
"points": 27,
"status": "met",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 44.2
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 0,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 0 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 0
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 56,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "at_risk",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 45,
"inputs": {
"forks": 27,
"stars": 44,
"watchers": 18,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "below_threshold"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "44 stars",
"points": 26.5,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 44
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "27 forks",
"points": 11.8,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 27
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "18 watchers",
"points": 6.8,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 18
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "good",
"name": "Ecosystem adoption (downloads)",
"note": "Excluded from scoring (no data or not applicable): Registry dependents. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"registry_dependents"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 84,
"inputs": {
"packages": [
"tuya-device-sharing-sdk"
],
"dependents": null,
"ecosystems": "pypi",
"total_downloads": null,
"monthly_downloads": 116396
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "116,396 downloads/month across pypi",
"points": 67.5,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 116396,
"ecosystems": "pypi"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "not reported by this ecosystem",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_reported_by_this_ecosystem",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 64,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "moderate",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 53,
"inputs": {
"bus_factor": 2,
"contributors_sampled": 12,
"top_contributor_share": 0.37
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "2 contributor(s) cover half of all commits",
"points": 25.2,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 2
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 37% of commits",
"points": 14.2,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 37
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "12 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 12
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "at_risk",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 38,
"inputs": {
"merged_prs": 24,
"open_issues": 34,
"closed_issues": 4,
"issue_closed_ratio": 0.105,
"closed_unmerged_prs": 6
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "10% of issues closed",
"points": 4.9,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 10
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "24/30 decided PRs merged",
"points": 30.6,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 24,
"decided": 30
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 4/15 approved changesets -- score normalized to 2",
"points": 3,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "good",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 75,
"inputs": {
"followers": 799,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "tuya",
"public_repos": 193,
"account_age_days": 2093
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "organization-owned",
"points": 30,
"status": "met",
"details": [
{
"code": "owner_organization",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "799 followers of tuya",
"points": 20.9,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 799,
"login": "tuya"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "193 public repos, account ~5 yr old",
"points": 24.5,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 193
}
},
{
"code": "account_age_years",
"params": {
"years": 5
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"tuya-device-sharing-sdk"
],
"ecosystems": "pypi",
"any_deprecated": false,
"min_days_since_publish": 0
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on pypi",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "pypi"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 0 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 0
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "25 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 25
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 56,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 66,
"inputs": {
"has_ci": true,
"has_tests": false,
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": true
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 16,
"status": "met",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 9.6,
"status": "met",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "7 out of 8 merged PRs checked by a CI test -- score normalized to 8",
"points": 16,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "at_risk",
"name": "Documentation",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"topics": [],
"has_wiki": false,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 42,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 42,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 4.2
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "7 out of 8 merged PRs checked by a CI test -- score normalized to 8",
"points": 2,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 4/15 approved changesets -- score normalized to 2",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "21 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 6
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "critical",
"name": "AI Readiness",
"value": 26,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 18,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.344,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "32 of 93 human commits state their intent (structured subject or explanatory body)",
"points": 18.4,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 32,
"sampled": 93
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "critical",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 21,
"inputs": {
"has_nix": false,
"has_tests": false,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": false,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [],
"agent_commit_share": 0.065,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 11,
"status": "met",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "6 of the last 93 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 6,
"sampled": 93
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "moderate",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"primary_language": "Python",
"largest_source_bytes": 11071,
"source_files_sampled": 40,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Python without a type-check config",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_typecheck_config_language",
"params": {
"language": "Python"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/40 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 40,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"deps.dev does not index pypi:tuya-device-sharing-sdk@0.2.14; advisories assessed against the repository dependency graph instead",
"No resolved dependencies carried a version and a supported ecosystem"
],
"report_type": "repository",
"generated_at": "2026-07-22T05:59:21.637937Z",
"schema_version": "0.26.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/t/tuya/tuya-device-sharing-sdk.svg",
"full_name": "tuya/tuya-device-sharing-sdk",
"license_state": "standard",
"license_spdx": "MIT"
}