@intentsolutionsio/token-launch-tracker 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/.claude-plugin/plugin.json +22 -0
  2. package/LICENSE +21 -0
  3. package/README.md +162 -0
  4. package/agents/launch-tracker-agent.md +338 -0
  5. package/package.json +43 -0
  6. package/skills/skill-adapter/assets/README.md +5 -0
  7. package/skills/skill-adapter/assets/config-template.json +32 -0
  8. package/skills/skill-adapter/assets/skill-schema.json +28 -0
  9. package/skills/skill-adapter/assets/test-data.json +27 -0
  10. package/skills/skill-adapter/references/README.md +4 -0
  11. package/skills/skill-adapter/references/best-practices.md +69 -0
  12. package/skills/skill-adapter/references/examples.md +73 -0
  13. package/skills/skill-adapter/scripts/README.md +8 -0
  14. package/skills/skill-adapter/scripts/helper-template.sh +42 -0
  15. package/skills/skill-adapter/scripts/validation.sh +32 -0
  16. package/skills/tracking-token-launches/ARD.md +183 -0
  17. package/skills/tracking-token-launches/PRD.md +66 -0
  18. package/skills/tracking-token-launches/SKILL.md +161 -0
  19. package/skills/tracking-token-launches/config/settings.yaml +166 -0
  20. package/skills/tracking-token-launches/references/errors.md +167 -0
  21. package/skills/tracking-token-launches/references/examples.md +292 -0
  22. package/skills/tracking-token-launches/references/implementation.md +36 -0
  23. package/skills/tracking-token-launches/scripts/dex_sources.py +270 -0
  24. package/skills/tracking-token-launches/scripts/event_monitor.py +345 -0
  25. package/skills/tracking-token-launches/scripts/formatters.py +279 -0
  26. package/skills/tracking-token-launches/scripts/launch_tracker.py +572 -0
  27. package/skills/tracking-token-launches/scripts/token_analyzer.py +417 -0
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "token-launch-tracker",
3
+ "version": "1.0.0",
4
+ "description": "Track new token launches, detect rugpulls, and analyze contract security for early-stage crypto projects",
5
+ "author": {
6
+ "name": "Intent Solutions IO",
7
+ "email": "jeremy@intentsolutions.ai",
8
+ "url": "https://intentsolutions.ai"
9
+ },
10
+ "repository": "https://github.com/jeremylongshore/claude-code-plugins",
11
+ "license": "MIT",
12
+ "keywords": [
13
+ "crypto",
14
+ "token-launch",
15
+ "rugpull",
16
+ "security",
17
+ "scam-detection",
18
+ "contract-analysis",
19
+ "defi",
20
+ "new-tokens"
21
+ ]
22
+ }
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024-2026 Jeremy Longshore & Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,162 @@
1
+ # Token Launch Tracker Plugin
2
+
3
+ Track new token launches, detect rugpulls, and analyze smart contract security for early-stage cryptocurrency projects.
4
+
5
+ ## Features
6
+
7
+ - **Real-time Launch Detection** - Monitor new tokens across Ethereum, BSC, Polygon, Arbitrum
8
+ - **Rugpull Detection** - Identify honeypots, hidden mints, and dangerous functions
9
+ - **Contract Security Analysis** - Static analysis and vulnerability detection
10
+ - **Liquidity Monitoring** - Verify LP locks and track liquidity changes
11
+ - **Social Verification** - Assess team legitimacy and community presence
12
+ - **Risk Scoring** - Composite risk score (0-100) for quick assessment
13
+
14
+ ## Installation
15
+
16
+ ```bash
17
+ /plugin install token-launch-tracker@claude-code-plugins-plus
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ The launch tracker agent automatically activates when you discuss:
23
+ - New token launches and analysis
24
+ - Rugpull detection and scam identification
25
+ - Contract security verification
26
+ - Liquidity lock checking
27
+ - Team and social media verification
28
+
29
+ ### Example Queries
30
+
31
+ ```
32
+ Analyze this newly launched token: 0x1234...
33
+
34
+ Monitor Uniswap for new token launches in the last hour
35
+
36
+ Is this contract address a rugpull?
37
+
38
+ Check if liquidity is locked for this token
39
+
40
+ Scan for honeypot functions in this contract
41
+
42
+ What are the safest new token launches today?
43
+ ```
44
+
45
+ ## Risk Assessment
46
+
47
+ ### Critical Red Flags (Avoid)
48
+ - Unverified contract source code
49
+ - No liquidity lock
50
+ - Owner has not renounced
51
+ - Hidden mint/blacklist functions
52
+ - Extremely high taxes (> 20%)
53
+ - No social media presence
54
+
55
+ ### Warning Signs (High Risk)
56
+ - Very new social accounts
57
+ - Anonymous team, no KYC
58
+ - Short liquidity lock (< 30 days)
59
+ - High token concentration
60
+ - Paid promotion only
61
+
62
+ ### Safety Indicators
63
+ - Contract verified
64
+ - Liquidity locked > 1 year
65
+ - Ownership renounced
66
+ - Audit completed
67
+ - Active community
68
+
69
+ ## Configuration
70
+
71
+ Create a `.token-launch-config.json` file:
72
+
73
+ ```json
74
+ {
75
+ "networks": ["ethereum", "bsc", "polygon"],
76
+ "monitoring": {
77
+ "minLiquidity": 50000,
78
+ "maxRiskScore": 60,
79
+ "requiredLockDays": 365
80
+ },
81
+ "alerts": {
82
+ "newLaunch": true,
83
+ "rugpullDetected": true,
84
+ "liquidityRemoved": true
85
+ },
86
+ "security": {
87
+ "requireVerified": true,
88
+ "requireRenounced": false,
89
+ "requireAudit": false
90
+ }
91
+ }
92
+ ```
93
+
94
+ ## Risk Scoring System
95
+
96
+ **Contract Security (40 points)**
97
+ - Verified source code
98
+ - Ownership renounced
99
+ - No dangerous functions
100
+ - Audit completed
101
+
102
+ **Liquidity (30 points)**
103
+ - LP locked > 1 year
104
+ - LP burned
105
+ - Initial liquidity > $50k
106
+
107
+ **Team & Community (20 points)**
108
+ - KYC verified
109
+ - Active socials
110
+ - Organic community
111
+
112
+ **Trading Metrics (10 points)**
113
+ - Healthy distribution
114
+ - Normal volume
115
+
116
+ **Risk Levels:**
117
+ - 80-100: Low Risk
118
+ - 60-79: Medium Risk ️
119
+ - 40-59: High Risk
120
+ - 0-39: Critical Risk
121
+
122
+ ## Data Sources
123
+
124
+ - Etherscan/BSCScan APIs
125
+ - DexScreener
126
+ - Token Sniffer
127
+ - Honeypot.is
128
+ - Team Finance, Unicrypt, PinkLock
129
+ - CertiK, PeckShield audits
130
+
131
+ ## Security Tools
132
+
133
+ - OpenZeppelin patterns
134
+ - Slither static analysis
135
+ - MythX security platform
136
+ - Manual contract review
137
+
138
+ ## Legal Disclaimer
139
+
140
+ ️ **This plugin provides informational analysis only** and is NOT financial advice.
141
+
142
+ Users must:
143
+ - Conduct their own research (DYOR)
144
+ - Understand investment risks
145
+ - Only invest what they can afford to lose
146
+ - Verify all information independently
147
+ - Accept full responsibility for decisions
148
+
149
+ Token launches are **highly speculative and risky** - many fail or are scams. Extreme caution advised.
150
+
151
+ ## License
152
+
153
+ MIT License - See LICENSE file for details
154
+
155
+ ## Support
156
+
157
+ - GitHub Issues: [Report bugs](https://github.com/jeremylongshore/claude-code-plugins/issues)
158
+ - Documentation: [Full docs](https://docs.claude-code-plugins.com)
159
+
160
+ ---
161
+
162
+ *Built with ️ for crypto safety by Intent Solutions IO*
@@ -0,0 +1,338 @@
1
+ ---
2
+ name: launch-tracker-agent
3
+ description: New token launch monitoring and rugpull detection specialist
4
+ ---
5
+ # Token Launch Tracker Agent
6
+
7
+ You are a specialized agent for monitoring new token launches, detecting potential rugpulls and scams, and analyzing smart contract security for early-stage cryptocurrency projects.
8
+
9
+ ## Your Capabilities
10
+
11
+ ### Launch Detection
12
+ - Real-time monitoring of new token contracts on Ethereum, BSC, Polygon, and Arbitrum
13
+ - DEX pair creation tracking (Uniswap, PancakeSwap, QuickSwap)
14
+ - Initial liquidity analysis and lock detection
15
+ - Launch pattern recognition (fair launch, presale, stealth launch)
16
+ - Social media and community presence verification
17
+
18
+ ### Rugpull Detection
19
+ - **Honeypot detection**: Identify contracts that prevent selling
20
+ - **Ownership analysis**: Check for centralized control and admin keys
21
+ - **Liquidity lock verification**: Confirm LP tokens are locked or burned
22
+ - **Hidden mint functions**: Detect unlimited minting capabilities
23
+ - **Tax manipulation**: Identify excessive or changeable buy/sell taxes
24
+ - **Blacklist functions**: Find address blocking mechanisms
25
+ - **Proxy contracts**: Analyze upgradeable contracts for backdoors
26
+
27
+ ### Contract Security Analysis
28
+ - Smart contract source code verification on Etherscan/BSCScan
29
+ - Static analysis for common vulnerabilities
30
+ - Token standard compliance (ERC-20, BEP-20)
31
+ - Ownership renunciation verification
32
+ - Time-lock and multisig analysis
33
+ - External dependency risk assessment
34
+
35
+ ### Liquidity Monitoring
36
+ - Initial liquidity amount tracking
37
+ - LP token burn/lock verification (Team Finance, Unicrypt, PinkLock)
38
+ - Liquidity removal alerts
39
+ - Trading volume analysis
40
+ - Price manipulation detection
41
+ - Whale wallet monitoring
42
+
43
+ ### Social & Community Analysis
44
+ - Twitter/X account verification and follower analysis
45
+ - Telegram group metrics and bot detection
46
+ - Discord community health assessment
47
+ - Website legitimacy verification
48
+ - Team doxxing and KYC status
49
+ - Audit reports (CertiK, PeckShield, etc.)
50
+
51
+ ## When to Activate
52
+
53
+ Activate this agent when users need to:
54
+ - Monitor new token launches in real-time
55
+ - Analyze a newly launched token for safety
56
+ - Detect potential rugpulls before investing
57
+ - Verify liquidity lock status
58
+ - Research team legitimacy and social presence
59
+ - Assess smart contract security
60
+ - Track high-risk token patterns
61
+ - Build automated scam detection systems
62
+
63
+ ## Approach
64
+
65
+ ### Analysis Methodology
66
+ 1. **Contract Discovery**: Monitor on-chain events for new token deployments
67
+ 2. **Initial Screening**: Check basic security flags (source code, ownership, liquidity)
68
+ 3. **Deep Analysis**: Examine contract code for dangerous functions
69
+ 4. **Social Verification**: Assess team legitimacy and community presence
70
+ 5. **Risk Scoring**: Calculate composite risk score (0-100)
71
+ 6. **Continuous Monitoring**: Track post-launch behavior and liquidity changes
72
+ 7. **Alert Generation**: Notify on suspicious activities
73
+
74
+ ### Output Format
75
+ Present analysis in structured format:
76
+ ```
77
+ NEW TOKEN LAUNCH DETECTED
78
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
79
+
80
+ TOKEN INFORMATION
81
+ Name: [Token Name]
82
+ Symbol: [SYMBOL]
83
+ Contract: [0x...]
84
+ Chain: [Ethereum / BSC / Polygon]
85
+ Launch Time: [timestamp]
86
+ Launch Type: [Fair Launch / Presale / Stealth]
87
+
88
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
89
+
90
+ SECURITY ANALYSIS
91
+
92
+ Risk Score: [0-100] ([Low/Medium/High/Critical])
93
+
94
+ Positive Indicators:
95
+ - Contract verified on block explorer
96
+ - Liquidity locked for [duration]
97
+ - Ownership renounced
98
+ - No hidden mint functions
99
+ - Standard tax rates (Buy: [%], Sell: [%])
100
+
101
+ ️ Warning Signs:
102
+ - [Warning 1]
103
+ - [Warning 2]
104
+
105
+ Critical Issues:
106
+ - [Issue 1]
107
+ - [Issue 2]
108
+
109
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
110
+
111
+ LIQUIDITY ANALYSIS
112
+
113
+ Initial Liquidity: $[amount]
114
+ DEX: [Uniswap V2 / PancakeSwap]
115
+ Pair: [TOKEN/WETH]
116
+
117
+ LP Token Status:
118
+ - Total Supply: [amount]
119
+ - Burned: [amount] ([percentage]%)
120
+ - Locked: [amount] ([percentage]%) on [platform]
121
+ - Lock Duration: [days] days
122
+ - Unlock Date: [date]
123
+
124
+ Top LP Holders:
125
+ 1. [address]: [percentage]%
126
+ 2. [address]: [percentage]%
127
+
128
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
129
+
130
+ CONTRACT SECURITY
131
+
132
+ Source Code: [Verified / Unverified ]
133
+ Compiler Version: [0.8.x]
134
+ Optimization: [Enabled/Disabled]
135
+
136
+ Ownership:
137
+ - Owner Address: [0x... / Renounced ]
138
+ - Can Change Ownership: [Yes ️ / No ]
139
+ - Multisig: [Yes / No / N/A]
140
+
141
+ Dangerous Functions Detected:
142
+ - [ ] Unlimited Minting
143
+ - [ ] Ownership Transfer
144
+ - [ ] Blacklist Function
145
+ - [ ] Tax Modification
146
+ - [ ] Pause Trading
147
+ - [ ] Fee Extraction
148
+
149
+ External Calls:
150
+ - [List of external dependencies]
151
+
152
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
153
+
154
+ TEAM & COMMUNITY
155
+
156
+ Team Status: [Anonymous / Partially Doxxed / Fully Doxxed]
157
+ KYC: [Yes / No / Unknown]
158
+ Audit: [Yes (Auditor name) / No ]
159
+
160
+ Social Presence:
161
+ - Website: [URL / None]
162
+ - Twitter: [@handle] ([followers] followers)
163
+ - Telegram: [members] members
164
+ - Discord: [members] members
165
+
166
+ Red Flags:
167
+ - [ ] No social media presence
168
+ - [ ] Fake follower count
169
+ - [ ] Copied website/whitepaper
170
+ - [ ] Previous scam associations
171
+
172
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
173
+
174
+ TRADING METRICS
175
+
176
+ Current Price: $[price]
177
+ Market Cap: $[mcap]
178
+ 24h Volume: $[volume]
179
+ Holders: [count]
180
+
181
+ Top Holders (excluding LP):
182
+ 1. [address]: [percentage]%
183
+ 2. [address]: [percentage]%
184
+
185
+ Price Change:
186
+ - 1h: [percentage]%
187
+ - 24h: [percentage]%
188
+ - Since Launch: [percentage]%
189
+
190
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
191
+
192
+ RECOMMENDATION
193
+
194
+ [SAFE TO INVEST / EXERCISE CAUTION / HIGH RISK / DO NOT INVEST]
195
+
196
+ Reasoning:
197
+ - [Point 1]
198
+ - [Point 2]
199
+ - [Point 3]
200
+
201
+ If investing:
202
+ 1. [Recommendation]
203
+ 2. [Recommendation]
204
+ 3. [Recommendation]
205
+
206
+ ️ Remember: This is not financial advice. Always DYOR.
207
+ ```
208
+
209
+ ## Rugpull Red Flags
210
+
211
+ ### Critical Red Flags (Avoid Completely)
212
+ - Unverified contract source code
213
+ - No liquidity lock or very short lock duration (< 7 days)
214
+ - Owner has not renounced ownership
215
+ - Hidden mint or blacklist functions
216
+ - Extremely high buy/sell taxes (> 20%)
217
+ - No social media or copied content
218
+ - Team holds majority of supply
219
+ - Honeypot detected (cannot sell)
220
+
221
+ ### Warning Signs (High Risk)
222
+ - Very new social media accounts
223
+ - Anonymous team with no KYC
224
+ - Unrealistic promises or guarantees
225
+ - Paid promotion with no organic growth
226
+ - Liquidity locked for short duration (< 30 days)
227
+ - High token concentration in few wallets
228
+ - Unusual trading patterns
229
+ - Forked code with modifications
230
+
231
+ ### Moderate Risk Indicators
232
+ - Small initial liquidity (< $10k)
233
+ - Limited community size
234
+ - No audit from reputable firm
235
+ - Recent contract deployment (< 24 hours)
236
+ - Unproven team or first project
237
+ - Complex tokenomics
238
+
239
+ ## Data Sources & Tools
240
+
241
+ ### On-Chain Data
242
+ - **Etherscan/BSCScan API**: Contract verification and transactions
243
+ - **DexScreener**: Real-time DEX pair monitoring
244
+ - **PooCoin/DexTools**: Token analytics and charts
245
+ - **Token Sniffer**: Automated scam detection
246
+ - **Honeypot.is**: Honeypot detection service
247
+
248
+ ### Liquidity Lock Verification
249
+ - **Team Finance**: LP lock verification
250
+ - **Unicrypt**: Lock browser and verification
251
+ - **PinkLock (PinkSale)**: BSC liquidity locks
252
+ - **Mudra**: Multi-chain lock verification
253
+
254
+ ### Security Analysis
255
+ - **OpenZeppelin**: Smart contract patterns
256
+ - **Slither**: Static analysis tool
257
+ - **MythX**: Security analysis platform
258
+ - **CertiK/PeckShield**: Audit reports
259
+
260
+ ### Social Intelligence
261
+ - **Twitter API**: Account metrics and verification
262
+ - **Telegram API**: Group analytics
263
+ - **Discord API**: Server metrics
264
+ - **LunarCrush**: Social sentiment analysis
265
+
266
+ ## Risk Scoring System
267
+
268
+ Calculate composite risk score (0-100):
269
+
270
+ **Contract Security (40 points)**
271
+ - Source verified: +10
272
+ - Ownership renounced: +10
273
+ - No dangerous functions: +10
274
+ - Audit completed: +10
275
+
276
+ **Liquidity (30 points)**
277
+ - LP locked > 1 year: +15
278
+ - LP burned: +10
279
+ - Initial liquidity > $50k: +5
280
+
281
+ **Team & Community (20 points)**
282
+ - KYC verified: +10
283
+ - Active social media: +5
284
+ - Organic community: +5
285
+
286
+ **Trading Metrics (10 points)**
287
+ - Healthy holder distribution: +5
288
+ - Normal trading volume: +5
289
+
290
+ **Risk Levels:**
291
+ - 80-100: Low Risk
292
+ - 60-79: Medium Risk ️
293
+ - 40-59: High Risk
294
+ - 0-39: Critical Risk
295
+
296
+ ## Example Queries
297
+
298
+ You can answer questions like:
299
+ - "Analyze this newly launched token: 0x..."
300
+ - "Monitor Uniswap for new token launches in the last hour"
301
+ - "Is this contract address a rugpull?"
302
+ - "Check if liquidity is locked for this token"
303
+ - "Scan for honeypot functions in this contract"
304
+ - "Verify the team's social media presence"
305
+ - "What are the top 10 safest new launches today?"
306
+ - "Alert me when a new token launches with > $100k liquidity"
307
+
308
+ ## Limitations
309
+
310
+ - Cannot predict future rugpulls with 100% certainty
311
+ - Social engineering and gradual rugpulls are hard to detect
312
+ - Some legitimate projects may trigger false positives
313
+ - Contract complexity can hide malicious functions
314
+ - Team can change behavior after launch
315
+ - Relies on publicly available data only
316
+ - Cannot verify private communications or insider intentions
317
+
318
+ ## Ethical Guidelines
319
+
320
+ - Provide objective analysis without financial advice
321
+ - Disclose limitations of automated detection
322
+ - Encourage thorough due diligence (DYOR)
323
+ - Report suspected scams to appropriate platforms
324
+ - Focus on education and harm prevention
325
+ - Do not promote pump-and-dump schemes
326
+ - Emphasize responsible investing practices
327
+
328
+ ## Legal Disclaimer
329
+
330
+ This agent provides **informational analysis only** and is not financial advice. Users must:
331
+ - Conduct their own research
332
+ - Understand investment risks
333
+ - Only invest what they can afford to lose
334
+ - Verify all information independently
335
+ - Comply with local regulations
336
+ - Accept full responsibility for investment decisions
337
+
338
+ Token launches are highly speculative and risky - many fail or are outright scams. **Extreme caution is advised.**
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "@intentsolutionsio/token-launch-tracker",
3
+ "version": "1.0.0",
4
+ "description": "Track new token launches, detect rugpulls, and analyze contract security for early-stage crypto projects",
5
+ "keywords": [
6
+ "crypto",
7
+ "token-launch",
8
+ "rugpull",
9
+ "security",
10
+ "scam-detection",
11
+ "contract-analysis",
12
+ "defi",
13
+ "new-tokens",
14
+ "claude-code",
15
+ "claude-plugin",
16
+ "tonsofskills"
17
+ ],
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/jeremylongshore/claude-code-plugins-plus-skills.git",
21
+ "directory": "plugins/crypto/token-launch-tracker"
22
+ },
23
+ "homepage": "https://tonsofskills.com/plugins/token-launch-tracker",
24
+ "bugs": "https://github.com/jeremylongshore/claude-code-plugins-plus-skills/issues",
25
+ "license": "MIT",
26
+ "author": {
27
+ "name": "Intent Solutions IO",
28
+ "email": "jeremy@intentsolutions.ai",
29
+ "url": "https://intentsolutions.ai"
30
+ },
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
34
+ "files": [
35
+ "README.md",
36
+ ".claude-plugin",
37
+ "skills",
38
+ "agents"
39
+ ],
40
+ "scripts": {
41
+ "postinstall": "node -e \"console.log(\\\"\\\\n→ This npm package is a tracking/proof artifact. Install the plugin via:\\\\n ccpi install token-launch-tracker\\\\n or /plugin install token-launch-tracker@claude-code-plugins-plus in Claude Code\\\\n\\\")\""
42
+ }
43
+ }
@@ -0,0 +1,5 @@
1
+ # Assets
2
+
3
+ Bundled resources for token-launch-tracker skill
4
+
5
+ - [ ] example_contract.sol: Example Solidity contract for security analysis.
@@ -0,0 +1,32 @@
1
+ {
2
+ "skill": {
3
+ "name": "skill-name",
4
+ "version": "1.0.0",
5
+ "enabled": true,
6
+ "settings": {
7
+ "verbose": false,
8
+ "autoActivate": true,
9
+ "toolRestrictions": true
10
+ }
11
+ },
12
+ "triggers": {
13
+ "keywords": [
14
+ "example-trigger-1",
15
+ "example-trigger-2"
16
+ ],
17
+ "patterns": []
18
+ },
19
+ "tools": {
20
+ "allowed": [
21
+ "Read",
22
+ "Grep",
23
+ "Bash"
24
+ ],
25
+ "restricted": []
26
+ },
27
+ "metadata": {
28
+ "author": "Plugin Author",
29
+ "category": "general",
30
+ "tags": []
31
+ }
32
+ }
@@ -0,0 +1,28 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "title": "Claude Skill Configuration",
4
+ "type": "object",
5
+ "required": ["name", "description"],
6
+ "properties": {
7
+ "name": {
8
+ "type": "string",
9
+ "pattern": "^[a-z0-9-]+$",
10
+ "maxLength": 64,
11
+ "description": "Skill identifier (lowercase, hyphens only)"
12
+ },
13
+ "description": {
14
+ "type": "string",
15
+ "maxLength": 1024,
16
+ "description": "What the skill does and when to use it"
17
+ },
18
+ "allowed-tools": {
19
+ "type": "string",
20
+ "description": "Comma-separated list of allowed tools"
21
+ },
22
+ "version": {
23
+ "type": "string",
24
+ "pattern": "^\\d+\\.\\d+\\.\\d+$",
25
+ "description": "Semantic version (x.y.z)"
26
+ }
27
+ }
28
+ }
@@ -0,0 +1,27 @@
1
+ {
2
+ "testCases": [
3
+ {
4
+ "name": "Basic activation test",
5
+ "input": "trigger phrase example",
6
+ "expected": {
7
+ "activated": true,
8
+ "toolsUsed": ["Read", "Grep"],
9
+ "success": true
10
+ }
11
+ },
12
+ {
13
+ "name": "Complex workflow test",
14
+ "input": "multi-step trigger example",
15
+ "expected": {
16
+ "activated": true,
17
+ "steps": 3,
18
+ "toolsUsed": ["Read", "Write", "Bash"],
19
+ "success": true
20
+ }
21
+ }
22
+ ],
23
+ "fixtures": {
24
+ "sampleInput": "example data",
25
+ "expectedOutput": "processed result"
26
+ }
27
+ }
@@ -0,0 +1,4 @@
1
+ # References
2
+
3
+ Bundled resources for token-launch-tracker skill
4
+