Agent skill

user-profile

Manage user profile including watchlists, portfolio, and preferences.

ginlix-ai1,604★ · 1 repos on radarProfile →
claude-codeApache-2.0
Install
npx skills add ginlix-ai/LangAlpha --skill user-profile --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 11 KB
Bundled scripts: none
Path: skills/user-profile/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,604
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# User Profile Skill This skill provides 3 unified tools for managing user data: - `get_user_data` - Read user data - `update_user_data` - Create or update user data - `remove_user_data` - Delete user data You should call these tools directly instead of using ExecuteCode tool. --- ## Tool 1: get_user_data Retrieve user data by entity type. ### Entities | Entity | Description | entity_id | |--------|-------------|-----------| | `all` | Complete user data (profile, preferences, watchlists with items, portfolio) | Not used | | `profile` | User info (name, timezone, locale) | Not used | | `preferences` | All preferences (risk, investment, agent) | Not used | | `watchlists` | List of all watchlists | Not used | | `watchlist_items` | Items in a specific watchlist | Optional watchlist_id | | `portfolio` | All portfolio holdings | Not used | ### Examples ```python # Get complete user data (recommended for initial context) get_user_data(entity="all") # Returns: { # "profile": {"name": "John", "timezone": "America/New_York", "locale": "en-US"}, # "preferences": {"risk_preference": {...}, "investment_preference": {...}, ...}, # "watchlists": [{"name": "Tech Stocks", "items": [...], ...}], # "

What's inside
Steps it walks through
  1. Tool 1: getuserdata
  2. Entities
  3. Examples
  4. Tool 2: updateuserdata
  5. Common Options for Preferences
  6. Entity: profile
  7. Entity: riskpreference
  8. Entity: investmentpreference
  9. Entity: agentpreference
  10. Entity: watchlist
  11. Entity: watchlistitem
  12. Entity: portfolioholding
  13. Tool 3: removeuserdata
  14. Error Handling
Ships with 1 file
  • onboarding.md
More from LangAlpha
All skills →
About this skill
What does the user-profile skill do?

Manage user profile including watchlists, portfolio, and preferences.

How do I install it?

Run `npx skills add ginlix-ai/LangAlpha --skill user-profile --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ginlix-ai/LangAlpha, a repository with 1,604 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going