Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

twitter-cultivate推特培养

Agent Skill

twitter-cultivate 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

192

周安装

8

GitHub Stars

3

下载量

64
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:twitter-cultivate(推特培养)
来源仓库:https://github.com/phy041/claude-skill-twitter
仓库路径:skills/twitter-cultivate
安装命令:
npx skills add https://github.com/phy041/claude-skill-twitter --skill twitter-cultivate
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/phy041/claude-skill-twitter --skill twitter-cultivate

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装命令:npx skills add https://github.com/phy041/claude-skill-twitter --skill twitter-cultivate
  • 安装前建议确认权限范围和是否会触发联网操作。

SKILL.md

Twitter Account Cultivation Skill

Systematic approach to growing Twitter presence based on the open-source algorithm analysis.


Prerequisites

  • rnet installed (pip install "rnet>=3.0.0rc20" --pre)
  • rnet_twitter.py — the lightweight GraphQL client included in this repo
  • Twitter cookies exported to: twitter_cookies.json Format: [{"name": "auth_token", "value": "..."}, {"name": "ct0", "value": "..."}]
  • Your Twitter handle configured

Getting Cookies

  1. Open Chrome → go to x.com → log in
  2. DevTools → Application → Cookies → https://x.com
  3. Copy auth_token and ct0 values
  4. Save to twitter_cookies.json (see twitter_cookies.example.json)
  5. Cookies last ~2 weeks. Refresh when you get 403 errors.

Core Metrics to Track

MetricHealthy RangeImpact
Following/Follower Ratio< 0.6TweepCred score
Avg Views/Tweet20-40% of followersAlgorithm favor
Media Tweet %> 50%10x engagement
Link Tweet %< 20%Avoid algorithm penalty
Reply RateReply to 100% of comments+75 weight boost

Workflow: Full Health Check

Step 1: Analyze Account

import asyncio
from rnet_twitter import RnetTwitterClient

async def analyze(username: str):
    client = RnetTwitterClient()
    client.load_cookies("twitter_cookies.json")

    # Get user profile
    user = await client.get_user_by_screen_name(username)
    followers = user.get("followers_count", 0)
    following = user.get("friends_count", 0)
    ratio = following / max(followers, 1)

    # Get recent tweets for content analysis
    tweets = await client.get_user_tweets(user["rest_id"], count=20)

    return {
        "username": username,
        "followers": followers,
        "following": following,
        "ratio": round(ratio, 2),
        "tweet_count": user.get("statuses_count", 0),
        "recent_tweets": len(tweets),
    }

asyncio.run(analyze("YOUR_USERNAME"))

Step 2: Check Shadowban Status

Manual check: shadowban.yuzurisa.com

Step 3: Analyze Following List

Recommends accounts to unfollow based on:

  • No tweets in 90+ days (inactive)
  • Never interacted with you (no value)
  • Low follower count + high following (likely bots)
  • No mutual engagement

Step 4: Find Engagement Opportunities

Use search_tweets to find trending conversations:

async def find_opportunities(niche_keywords: list[str]):
    client = RnetTwitterClient()
    client.load_cookies("twitter_cookies.json")

    opportunities = []
    for keyword in niche_keywords:
        tweets = await client.search_tweets(
            f"{keyword} lang:en -filter:replies",
            count=50,
            product="Top"
        )
        # Filter for high-engagement, recent tweets
        for t in tweets:
            if t["favorite_count"] >= 50 and t["reply_count"] < 20:
                opportunities.append(t)

    return sorted(opportunities, key=lambda t: t["favorite_count"], reverse=True)

Step 5: Generate Weekly Report

Compile metrics from Steps 1-4 into a structured report.


Account Health Scoring

Based on Twitter's open-source algorithm:

TweepCred Estimation

Score = PageRank x (1 / max(1, following/followers))
RatioEstimated TweepCredAlgorithm Treatment
< 0.665+ (healthy)All tweets considered
0.6 - 2.040-65Limited consideration
2.0 - 5.020-40Severe penalty
> 5.0< 20Only 3 tweets max

Unfollow Strategy

Priority 1: Inactive Accounts

  • No tweets in 90+ days
  • Safe to unfollow, no relationship loss

Priority 2: Non-Engagers

  • Never liked/replied to your tweets
  • One-way relationship

Priority 3: Low-Value Follows

  • High following/low followers (bot-like)
  • No content in your niche

Execution Plan

Week 1: Unfollow 30 inactive accounts
Week 2: Unfollow 30 non-engagers
Week 3: Unfollow 30 low-value follows
Week 4: Evaluate ratio improvement

Target: Get ratio below 2.0, ideally below 0.6


Content Strategy (Algorithm-Optimized)

Tweet Types by Algorithm Weight

TypeWeightRecommendation
Tweet that gets author reply+75ALWAYS reply to comments
Tweet with replies+13.5Ask questions
Tweet with profile clicks+12.0Be intriguing
Tweet with long dwell time+10.0Use threads
Retweet+1.0Low value
Like+0.5Lowest value

Content Mix

  • 40% Value content (insights, tips, frameworks)
  • 30% Engagement bait (questions, polls, hot takes)
  • 20% Build-in-public (progress updates, wins, losses)
  • 10% Promotion (with value attached)

Media Requirements

Every tweet should have ONE of:

  • Image (infographic, screenshot, meme)
  • Video (< 2:20, hook in first 3 sec)
  • Poll
  • Thread (7-10 tweets)

NEVER post text-only tweets


Posting Schedule

Optimal Times (General)

DayBest TimeSecond Best
Tuesday9-10 AM1-2 PM
Wednesday9-10 AM3-4 PM
Thursday10-11 AM2-3 PM

First 10 Minutes Protocol

1. Post at optimal time
2. Immediately self-reply with additional insight
3. Reply to ANY comment within 10 minutes
4. Have 2-3 "pod" members ready to RT

Frequency

  • Minimum: 1 tweet/day
  • Optimal: 3-5 tweets/day
  • Gap: 30-60 min between tweets

Engagement Tactics

Reply Strategy (Most Important)

The algorithm gives +75 weight when you reply to replies on your tweets.

Someone comments on your tweet
    |
Reply within 30 minutes (CRITICAL)
    |
Algorithm sees author engagement
    |
Tweet gets boosted to more feeds

Quote Tweet Strategy

Find viral tweet in your niche
    |
Quote with your unique take
    |
Add value, not just "great point"
    |
Post during optimal hours

Thread Formula

1/ Hook (curiosity gap or bold claim)
2-6/ Individual points with specifics
7/ Summary
8/ CTA: Question or "follow for more"

Weekly Routine

Daily (15 min)

  • Post 1-3 tweets with media
  • Reply to ALL comments on your tweets
  • Engage with 5-10 tweets in your niche
  • Check notifications and respond

Weekly (Saturday)

  • Run full health check
  • Review what content performed best
  • Unfollow 10-20 low-value accounts
  • Plan next week's content themes

Monthly

  • Full ratio review (target < 2.0)
  • Shadowban check
  • Content audit (media %, link %)
  • Milestone check (follower goals)

Recovery Plan (Low Follower Count)

Phase 1: Emergency Ratio Fix (Week 1-2)

If your ratio is > 5.0 (following >> followers):

  • Unfollow 100+ inactive/non-engaging accounts
  • Target: ratio < 5.0 as first milestone

Phase 2: Content Upgrade (Week 2-4)

If you have 0% media tweets:

  • Add image/video to EVERY tweet
  • Use Canva/Figma for quick graphics
  • Screenshot interesting data/insights

Phase 3: Engagement Building (Week 3-6)

  • Reply to 20+ tweets/day in your niche
  • Quote tweet viral content with your take
  • Join relevant Twitter communities
  • DM potential collaborators

Phase 4: Consistency (Ongoing)

  • 3-5 tweets/day
  • Reply to 100% of comments
  • Weekly analysis and adjustment

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.78%
按下载量换算24

Claude

29.11%
按下载量换算19

Cursor

17.82%
按下载量换算11

Gemini CLI

8%
按下载量换算5

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills