ワンクリックで
google-contacts-skill
Create, list, and search Google Contacts. Supports names, emails, phone numbers, and organizations.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create, list, and search Google Contacts. Supports names, emails, phone numbers, and organizations.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use this skill to generate well-branded interfaces and assets for OpenCompany (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Launch Android applications by package name. Open any installed app programmatically.
Get list of installed Android applications with package names, versions, and metadata.
Control Android audio - get/set volume, mute/unmute for media, ringtone, notification, and call volumes.
Monitor Android device battery status, level, charging state, temperature, and health.
Control Android Bluetooth - enable, disable, get status, and list paired devices.
| name | google-contacts-skill |
| description | Create, list, and search Google Contacts. Supports names, emails, phone numbers, and organizations. |
| allowed-tools | google_contacts |
| metadata | {"author":"opencompany","version":"1.0","category":"productivity"} |
Manage Google Contacts - create, list, and search contacts.
Consolidated Google Contacts tool with operation parameter.
| Operation | Description | Required Fields |
|---|---|---|
create | Create a new contact | first_name |
list | List contacts | (none) |
search | Search contacts by query | query |
get | Get contact details | resource_name |
update | Update existing contact | resource_name |
delete | Delete a contact | resource_name |
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "create" |
| first_name | string | Yes | Contact's first name |
| last_name | string | No | Contact's last name |
| string | No | Email address | |
| phone | string | No | Phone number |
| company | string | No | Company/organization name |
| job_title | string | No | Job title |
| notes | string | No | Notes about contact |
Example - Basic contact:
{
"operation": "create",
"first_name": "John",
"last_name": "Smith",
"email": "john.smith@example.com",
"phone": "+1-555-123-4567"
}
Example - Full contact:
{
"operation": "create",
"first_name": "Jane",
"last_name": "Doe",
"email": "jane.doe@company.com",
"phone": "+1-555-987-6543",
"company": "Acme Corporation",
"job_title": "Senior Engineer",
"notes": "Met at tech conference 2024"
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "list" |
| page_size | integer | No | Results per page (default: 20, max: 100) |
| page_token | string | No | Token for next page |
| sort_order | string | No | LAST_MODIFIED_ASCENDING, LAST_MODIFIED_DESCENDING, FIRST_NAME_ASCENDING, LAST_NAME_ASCENDING |
Example:
{
"operation": "list",
"page_size": 50,
"sort_order": "FIRST_NAME_ASCENDING"
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "search" |
| query | string | Yes | Search query (name or email) |
| page_size | integer | No | Results per page (default: 10, max: 30) |
Example - Search by name:
{
"operation": "search",
"query": "John"
}
Example - Search by email domain:
{
"operation": "search",
"query": "@company.com"
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "get" |
| resource_name | string | Yes | Contact resource name (e.g., "people/c1234567890") |
Example:
{
"operation": "get",
"resource_name": "people/c1234567890"
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "update" |
| resource_name | string | Yes | Contact resource name |
| update_first_name | string | No | New first name |
| update_last_name | string | No | New last name |
| update_email | string | No | New email |
| update_phone | string | No | New phone |
| update_company | string | No | New company |
| update_job_title | string | No | New job title |
Example:
{
"operation": "update",
"resource_name": "people/c1234567890",
"update_email": "new.email@example.com",
"update_job_title": "Director of Engineering"
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "delete" |
| resource_name | string | Yes | Contact resource name |
Example:
{
"operation": "delete",
"resource_name": "people/c1234567890"
}
| Field | Description |
|---|---|
resource_name | Unique identifier (people/cXXX) |
display_name | Full formatted name |
first_name | Given name |
last_name | Family name |
email | Primary email address |
phone | Primary phone number |
company | Organization name |
job_title | Position/title |
notes | Free-form notes |
Accepted formats:
+1-555-123-4567 (international)(555) 123-4567 (US format)555-123-4567 (simple)5551234567 (digits only)input-tools handle