any2skill 0.1.0__tar.gz

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.
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: any2skill
3
+ Version: 0.1.0
4
+ Summary: Turn any document into an AI Agent Skill. PDF, DOCX, URL → production-ready SKILL.md
5
+ Author-email: Li Defang <lidefang@gmail.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://any2skill.ai
8
+ Project-URL: Repository, https://github.com/nicolelidefang/any2skill
9
+ Keywords: ai,agent,skill,llm,document,conversion,claude-code,cursor
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Topic :: Software Development :: Libraries
15
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
16
+ Requires-Python: >=3.10
17
+ Description-Content-Type: text/markdown
18
+
19
+ # any2skill
20
+
21
+ Turn any document into an AI Agent Skill.
22
+
23
+ Upload a PDF, Word doc, or paste a URL. Get back a production-ready `SKILL.md` for Claude Code, Cursor, and any AI agent platform.
24
+
25
+ ## Website
26
+
27
+ https://any2skill.ai
28
+
29
+ ## Features
30
+
31
+ - **Multi-format input**: PDF, DOCX, URL
32
+ - **Smart clarification**: AI asks targeted questions before generating
33
+ - **Quality assurance**: Spec compliance, security scanning, content validation
34
+ - **Multi-language**: English and Chinese output
35
+ - **AI refinement**: Iterate with natural language instructions
36
+
37
+ ## Status
38
+
39
+ Early development. Full CLI and SDK coming soon.
@@ -0,0 +1,21 @@
1
+ # any2skill
2
+
3
+ Turn any document into an AI Agent Skill.
4
+
5
+ Upload a PDF, Word doc, or paste a URL. Get back a production-ready `SKILL.md` for Claude Code, Cursor, and any AI agent platform.
6
+
7
+ ## Website
8
+
9
+ https://any2skill.ai
10
+
11
+ ## Features
12
+
13
+ - **Multi-format input**: PDF, DOCX, URL
14
+ - **Smart clarification**: AI asks targeted questions before generating
15
+ - **Quality assurance**: Spec compliance, security scanning, content validation
16
+ - **Multi-language**: English and Chinese output
17
+ - **AI refinement**: Iterate with natural language instructions
18
+
19
+ ## Status
20
+
21
+ Early development. Full CLI and SDK coming soon.
@@ -0,0 +1,3 @@
1
+ """any2skill - Turn any document into an AI Agent Skill."""
2
+
3
+ __version__ = "0.1.0"
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: any2skill
3
+ Version: 0.1.0
4
+ Summary: Turn any document into an AI Agent Skill. PDF, DOCX, URL → production-ready SKILL.md
5
+ Author-email: Li Defang <lidefang@gmail.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://any2skill.ai
8
+ Project-URL: Repository, https://github.com/nicolelidefang/any2skill
9
+ Keywords: ai,agent,skill,llm,document,conversion,claude-code,cursor
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Topic :: Software Development :: Libraries
15
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
16
+ Requires-Python: >=3.10
17
+ Description-Content-Type: text/markdown
18
+
19
+ # any2skill
20
+
21
+ Turn any document into an AI Agent Skill.
22
+
23
+ Upload a PDF, Word doc, or paste a URL. Get back a production-ready `SKILL.md` for Claude Code, Cursor, and any AI agent platform.
24
+
25
+ ## Website
26
+
27
+ https://any2skill.ai
28
+
29
+ ## Features
30
+
31
+ - **Multi-format input**: PDF, DOCX, URL
32
+ - **Smart clarification**: AI asks targeted questions before generating
33
+ - **Quality assurance**: Spec compliance, security scanning, content validation
34
+ - **Multi-language**: English and Chinese output
35
+ - **AI refinement**: Iterate with natural language instructions
36
+
37
+ ## Status
38
+
39
+ Early development. Full CLI and SDK coming soon.
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ any2skill/__init__.py
4
+ any2skill.egg-info/PKG-INFO
5
+ any2skill.egg-info/SOURCES.txt
6
+ any2skill.egg-info/dependency_links.txt
7
+ any2skill.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ any2skill
@@ -0,0 +1,27 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "any2skill"
7
+ version = "0.1.0"
8
+ description = "Turn any document into an AI Agent Skill. PDF, DOCX, URL → production-ready SKILL.md"
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ requires-python = ">=3.10"
12
+ authors = [
13
+ {name = "Li Defang", email = "lidefang@gmail.com"},
14
+ ]
15
+ keywords = ["ai", "agent", "skill", "llm", "document", "conversion", "claude-code", "cursor"]
16
+ classifiers = [
17
+ "Development Status :: 3 - Alpha",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Programming Language :: Python :: 3",
21
+ "Topic :: Software Development :: Libraries",
22
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
23
+ ]
24
+
25
+ [project.urls]
26
+ Homepage = "https://any2skill.ai"
27
+ Repository = "https://github.com/nicolelidefang/any2skill"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+