Merge branch 'main' into dev
This commit is contained in:
11
README.md
11
README.md
@@ -1,12 +1,12 @@
|
||||
# Claude Skills Library (Your Agentic Startup Kit)
|
||||
|
||||
**85 Production-Ready skill packages for Claude AI & Claude Code** - Reusable expertise bundles combining best practices, analysis tools, and strategic frameworks for marketing teams, executive leadership, product development, your web and mobile engineering teams. Many other teams will be included soon and regularly.
|
||||
**86 Production-Ready skill packages for Claude AI & Claude Code** - Reusable expertise bundles combining best practices, analysis tools, and strategic frameworks for marketing teams, executive leadership, product development, your web and mobile engineering teams. Many other teams will be included soon and regularly.
|
||||
|
||||
[](https://opensource.org/licenses/MIT)
|
||||
[](https://claude.ai)
|
||||
[](https://claude.ai/code)
|
||||
[](https://github.com/skillcreatorai/Ai-Agent-Skills)
|
||||
[](#-available-skills)
|
||||
[](#-available-skills)
|
||||
[](https://getskillcheck.com)
|
||||
|
||||
---
|
||||
@@ -25,8 +25,7 @@ Use Claude Code's built-in plugin system for native integration:
|
||||
|
||||
# Then install skill bundles:
|
||||
/plugin install marketing-skills@claude-code-skills # 7 marketing skills
|
||||
/plugin install engineering-skills@claude-code-skills # 21 core engineering skills
|
||||
/plugin install engineering-advanced-skills@claude-code-skills # 24 POWERFUL-tier engineering skills
|
||||
/plugin install engineering-skills@claude-code-skills # 24 engineering skills
|
||||
/plugin install product-skills@claude-code-skills # 8 product skills
|
||||
/plugin install c-level-skills@claude-code-skills # 2 C-level advisory skills
|
||||
/plugin install pm-skills@claude-code-skills # 6 project management skills
|
||||
@@ -78,7 +77,7 @@ cd claude-skills
|
||||
|
||||
### Method 3: OpenClaw Installation
|
||||
|
||||
For [OpenClaw](https://openclaw.ai) users — skills use the same `SKILL.md` format, so all 85 skills work out of the box.
|
||||
For [OpenClaw](https://openclaw.ai) users — skills use the same `SKILL.md` format, so all 86 skills work out of the box.
|
||||
|
||||
```bash
|
||||
# Clone the repo
|
||||
@@ -1843,7 +1842,7 @@ Once installed, skills are available at `~/.codex/skills/`. Each skill contains:
|
||||
|
||||
### 🆕 New Skills (March 2026)
|
||||
|
||||
**24 POWERFUL-tier skills** designed for everyday professional use — all in the `engineering/` domain.
|
||||
**20 practical skills** designed for everyday professional use and commercial distribution.
|
||||
|
||||
#### Developer Workflow
|
||||
| Skill | What It Does |
|
||||
|
||||
@@ -17,11 +17,10 @@ Dependencies: Python Standard Library Only
|
||||
import argparse
|
||||
import ast
|
||||
import json
|
||||
import os
|
||||
import re
|
||||
import sys
|
||||
import yaml
|
||||
from datetime import datetime
|
||||
import datetime as dt
|
||||
from pathlib import Path
|
||||
from typing import Dict, List, Any, Optional, Tuple
|
||||
|
||||
@@ -36,7 +35,7 @@ class ValidationReport:
|
||||
|
||||
def __init__(self, skill_path: str):
|
||||
self.skill_path = skill_path
|
||||
self.timestamp = datetime.utcnow().isoformat() + "Z"
|
||||
self.timestamp = dt.datetime.now(dt.timezone.utc).isoformat().replace("+00:00", "Z")
|
||||
self.checks = {}
|
||||
self.warnings = []
|
||||
self.errors = []
|
||||
@@ -650,4 +649,4 @@ Tier Options:
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
main()
|
||||
|
||||
Reference in New Issue
Block a user