user-profile
Manage user profile including watchlists, portfolio, and preferences.
Profile →npx skills add ginlix-ai/LangAlpha --skill user-profile --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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": [...], ...}], # "
- Tool 1: getuserdata
- Entities
- Examples
- Tool 2: updateuserdata
- Common Options for Preferences
- Entity: profile
- Entity: riskpreference
- Entity: investmentpreference
- Entity: agentpreference
- Entity: watchlist
- Entity: watchlistitem
- Entity: portfolioholding
- Tool 3: removeuserdata
- Error Handling
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.