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

open-source-marketing开源营销

Agent Skill

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

总安装

1,104

周安装

46

GitHub Stars

69

下载量

368
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jonathimer/devmarketing-skills --skill open-source-marketing

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • open-source-marketing 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Open Source Marketing

This skill helps you market open source projects without being cringe. Covers GitHub optimization, community building, contributor experience, launch strategies, and sustainable growth.


Before You Start

Load your audience context first. Read .agents/developer-audience-context.md to understand:

  • Who would use this project (role, tech stack, problem)
  • Where they discover tools (communities, social, search)
  • What alternatives exist (why would they switch?)
  • How they evaluate OSS (stars, activity, docs, community)

If the context file doesn't exist, run the developer-audience-context skill first.


The OSS Marketing Mindset

What Works vs. What Doesn't

WorksDoesn't Work
Building in publicSpamming "check out my project"
Solving real problemsBuilding solutions seeking problems
Genuine community engagementTransactional follows/unfollows
Great docs and DX"The code is self-documenting"
Celebrating contributorsTaking sole credit
Consistent presenceLaunch and disappear

The Growth Equation

Growth = (Real value) × (Discoverability) × (First-use experience)

If any factor is zero, growth is zero.


GitHub Optimization

README Excellence

Your README is your landing page. Optimize it.

Structure:

# Project Name

[One-line description that explains what it does]

[Badges: build status, version, license, downloads]

[Screenshot or GIF showing it in action]

## Why [Project Name]?

- ✅ [Benefit 1 - specific, not fluffy]
- ✅ [Benefit 2]
- ✅ [Benefit 3]

## Quick Start

\`\`\`bash
npm install project-name
\`\`\`

\`\`\`javascript
// 5 lines that show immediate value
\`\`\`

## Installation

[Detailed installation for all platforms]

## Usage

[Core usage patterns with examples]

## Documentation

[Link to full docs]

## Contributing

We love contributions! See [CONTRIBUTING.md](CONTRIBUTING.md).

## License

[License type] - see [LICENSE](LICENSE)

README Checklist

ElementWhy It Matters
Clear nameMemorable, searchable, spellable
One-liner"A [type] for [audience] that [does what]"
BadgesSocial proof, health signals
VisualGIF > Screenshot > Nothing
Quick start<5 lines to first value
Why this?Differentiation from alternatives
InstallationAll platforms, copy-paste
ExamplesReal use cases, not contrived
Docs linkMore detail available
ContributingCommunity welcome

Repository Optimization

ElementBest Practice
Description100 chars max, keyword-rich
Topics5-10 relevant tags for discoverability
WebsiteLink to docs or landing page
ReleasesSemantic versioning, changelogs
IssuesTemplates for bugs/features
DiscussionsEnable for community Q&A
SponsorsEnable if you want funding

Issue & PR Templates

Bug report template:

---
name: Bug Report
about: Report a bug to help us improve
---

## Bug Description
[Clear description]

## Steps to Reproduce
1.
2.
3.

## Expected Behavior
[What should happen]

## Actual Behavior
[What actually happens]

## Environment
- OS:
- Node version:
- Package version:

## Additional Context
[Screenshots, logs, etc.]

Feature request template:

---
name: Feature Request
about: Suggest an idea for this project
---

## Problem
[What problem does this solve?]

## Proposed Solution
[How would you like it to work?]

## Alternatives Considered
[Other approaches you've thought about]

## Additional Context
[Examples, mockups, etc.]

Community Building

Community Spaces

PlatformBest ForSetup Effort
GitHub DiscussionsQ&A, announcementsLow
DiscordReal-time chat, community feelMedium
SlackEnterprise communitiesMedium
Forum (Discourse)Async, searchable discussionsHigh

Start with GitHub Discussions. Add Discord when you have 50+ active users.

Community Principles

PrincipleImplementation
Be responsiveRespond to issues within 48 hours (even if just "looking into it")
Celebrate contributionsThank every contributor publicly
Be transparentShare roadmap, explain decisions
Set expectationsClear SLA for maintainer response
Welcome newcomers"good first issue" labels, mentorship

Contributor Funnel

User → Star → Issue → PR → Regular Contributor → Maintainer

Optimize each transition:

TransitionHow to Improve
User → StarGreat README, visible value
Star → IssueClear issue templates, welcoming tone
Issue → PR"good first issue" labels, CONTRIBUTING.md
PR → RegularQuick review, encouraging feedback
Regular → MaintainerTrust, shared ownership

Contributor Experience

CONTRIBUTING.md Essentials

# Contributing to [Project]

First off, thanks for considering contributing! ❤️

## Quick Start

1. Fork the repo
2. Clone your fork
3. Install dependencies: `npm install`
4. Create a branch: `git checkout -b my-feature`
5. Make your changes
6. Run tests: `npm test`
7. Commit: `git commit -m "Add my feature"`
8. Push: `git push origin my-feature`
9. Open a Pull Request

## Development Setup

[Detailed setup instructions]

## Code Style

- We use [Prettier/ESLint config]
- Run `npm run lint` before committing
- [Other conventions]

## Commit Messages

We follow [Conventional Commits](https://conventionalcommits.org/):
- `feat: add new feature`
- `fix: resolve bug`
- `docs: update readme`
- `chore: update dependencies`

## Pull Request Process

1. Update docs if needed
2. Add tests for new features
3. Ensure CI passes
4. Get one approval

## Good First Issues

Look for issues labeled `good first issue` — these are great starting points!

## Questions?

Open a Discussion or reach out on Discord.

"Good First Issue" Strategy

Create genuinely approachable issues:

GoodNot Good
"Add TypeScript types for X function""Refactor the entire codebase"
"Fix typo in README""Performance optimization"
"Add test for Y method""Debug intermittent CI failure"
"Update dependency Z""Implement feature from RFC"

For each good first issue:

  • Explain context and why it matters
  • Link to relevant code files
  • Describe expected outcome
  • Offer to help in comments

Launch Strategies

Pre-Launch Checklist

TaskDone?
README polished
Quick start works
Docs exist
3+ examples/demos
Tests passing
License chosen
CONTRIBUTING.md
Issue templates
Social preview image
5-10 GitHub topics

Launch Day Playbook

Timeline:

TimeAction
Day beforeFinal README review, prep all posts
Launch morningHN post (best: 6-8am PT, Tuesday-Thursday)
+1 hourTwitter thread
+2 hoursReddit post to relevant subreddits
Throughout dayRespond to all comments/questions
End of dayThank everyone, share metrics

Platform-Specific Tactics

Hacker News:

  • Title: Descriptive, no hype ("Show HN: X — a Y for Z")
  • First comment: Explain motivation, tech decisions
  • Be available to respond for hours
  • Don't ask for upvotes (instant death)

Reddit:

  • Find 2-3 relevant subreddits (not just r/programming)
  • Read the rules first
  • Be a community member, not a marketer
  • Share genuinely useful context

Twitter/X:

  • Thread format: Problem → Solution → Demo → Link
  • Include GIF/video
  • Tag relevant accounts (framework authors, etc.)
  • Share builds-in-public journey

Dev.to / Hashnode:

  • Write a "Why I Built This" article
  • Technical depth, personal story
  • Cross-post from your blog

Post-Launch

WeekFocus
Week 1Respond to all feedback, fix bugs
Week 2Blog post: "What I learned from launch"
Week 3Start regular updates, ship new feature
Month 1Community building, contributor docs
OngoingConsistent presence, regular releases

Sustainable Growth

Growth Tactics

TacticEffortImpactTimeline
SEO-optimized docsMediumHigh3-6 months
Integration tutorialsMediumHigh1-2 months
Conference talksHighMedium3-6 months
Comparison contentLowMedium1-2 months
Guest blog postsMediumMedium1-2 months
Newsletter featuresLowLow-Medium2-4 weeks
Twitter presenceMediumMediumOngoing

Content Strategy for OSS

Content TypePurpose
"Why we built X"Launch story, motivation
"X vs Y vs Z"Capture comparison searches
"Migrating from Y to X"Convert competitor users
"X + [Popular Tool]"Capture integration searches
"How We Use X at [Company]"Social proof, real use case
"X Performance Benchmarks"Technical credibility

Avoiding Burnout

RiskMitigation
Overwhelming issuesSet response SLA expectations
Feature demandsPublic roadmap, RFC process
Solo maintenanceActively recruit co-maintainers
Always-on pressureScheduled "office hours" vs. 24/7
Negative feedbackCode of conduct, moderation

Metrics That Matter

Vanity vs. Value

Vanity MetricValue Metric
StarsActive issues + PRs
ForksReturned contributors
DownloadsWeekly active users
Twitter followersCommunity engagement

What to Track

MetricWhere to Find It
Stars over timeGitHub Insights, Star History
ClonesGitHub Traffic
ReferrersGitHub Traffic
npm downloadsnpm-stat.com
Community sizeDiscord/Slack member count
Contributor countGitHub Insights
Issue response timeManual tracking

Tools

ToolUse Case
OctolensMonitor mentions of your project across GitHub, HN, Reddit, Twitter, and Stack Overflow. Track competitor projects. Find contributors asking questions.
Star HistoryTrack star growth over time
npm-statDownload statistics
GitHub TrafficViews, clones, referrers
Shield.ioDynamic badges
All ContributorsRecognize all contributors
ProbotAutomate GitHub workflows

Related Skills

  • developer-audience-context — Know who your users are
  • community-building — Build Discord/Slack community
  • devrel-content — Create supporting content
  • developer-advocacy — Conference talks, podcasts
  • hacker-news-strategy — Launch and engage on HN

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.49%
按下载量换算134

Claude

27.41%
按下载量换算101

Cursor

20.67%
按下载量换算76

Gemini CLI

8.47%
按下载量换算31

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills