add-skills 0.0.2__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.
- add_skills-0.0.2/.github/workflows/release.yml +146 -0
- add_skills-0.0.2/.gitignore +50 -0
- add_skills-0.0.2/LICENSE +21 -0
- add_skills-0.0.2/PKG-INFO +71 -0
- add_skills-0.0.2/README.md +17 -0
- add_skills-0.0.2/pyproject.toml +62 -0
- add_skills-0.0.2/setup.cfg +4 -0
- add_skills-0.0.2/src/add_skills/__init__.py +3 -0
- add_skills-0.0.2/src/add_skills/__main__.py +10 -0
- add_skills-0.0.2/src/add_skills.egg-info/PKG-INFO +71 -0
- add_skills-0.0.2/src/add_skills.egg-info/SOURCES.txt +13 -0
- add_skills-0.0.2/src/add_skills.egg-info/dependency_links.txt +1 -0
- add_skills-0.0.2/src/add_skills.egg-info/entry_points.txt +2 -0
- add_skills-0.0.2/src/add_skills.egg-info/requires.txt +5 -0
- add_skills-0.0.2/src/add_skills.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
name: Release to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- 'v*'
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
build:
|
|
11
|
+
name: Build package
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@v4
|
|
15
|
+
with:
|
|
16
|
+
fetch-depth: 0 # Required for setuptools_scm
|
|
17
|
+
|
|
18
|
+
- name: Set up Python
|
|
19
|
+
uses: actions/setup-python@v5
|
|
20
|
+
with:
|
|
21
|
+
python-version: '3.12'
|
|
22
|
+
|
|
23
|
+
- name: Install build tools
|
|
24
|
+
run: pip install build twine
|
|
25
|
+
|
|
26
|
+
- name: Build package
|
|
27
|
+
run: python -m build
|
|
28
|
+
|
|
29
|
+
- name: Check package
|
|
30
|
+
run: twine check dist/*
|
|
31
|
+
|
|
32
|
+
- name: Upload artifacts
|
|
33
|
+
uses: actions/upload-artifact@v4
|
|
34
|
+
with:
|
|
35
|
+
name: dist
|
|
36
|
+
path: dist/
|
|
37
|
+
retention-days: 7
|
|
38
|
+
|
|
39
|
+
test:
|
|
40
|
+
name: Test installation
|
|
41
|
+
needs: build
|
|
42
|
+
runs-on: ${{ matrix.os }}
|
|
43
|
+
strategy:
|
|
44
|
+
matrix:
|
|
45
|
+
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
46
|
+
python-version: ['3.9', '3.12']
|
|
47
|
+
steps:
|
|
48
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
49
|
+
uses: actions/setup-python@v5
|
|
50
|
+
with:
|
|
51
|
+
python-version: ${{ matrix.python-version }}
|
|
52
|
+
|
|
53
|
+
- name: Download artifacts
|
|
54
|
+
uses: actions/download-artifact@v4
|
|
55
|
+
with:
|
|
56
|
+
name: dist
|
|
57
|
+
path: dist/
|
|
58
|
+
|
|
59
|
+
- name: Install package
|
|
60
|
+
run: pip install dist/*.whl
|
|
61
|
+
shell: bash
|
|
62
|
+
|
|
63
|
+
- name: Test CLI
|
|
64
|
+
run: add-skills
|
|
65
|
+
shell: bash
|
|
66
|
+
|
|
67
|
+
publish-pypi:
|
|
68
|
+
name: Publish to PyPI
|
|
69
|
+
needs: [build, test]
|
|
70
|
+
runs-on: ubuntu-latest
|
|
71
|
+
if: startsWith(github.ref, 'refs/tags/v')
|
|
72
|
+
|
|
73
|
+
environment:
|
|
74
|
+
name: pypi
|
|
75
|
+
url: https://pypi.org/p/add-skills
|
|
76
|
+
|
|
77
|
+
permissions:
|
|
78
|
+
contents: read
|
|
79
|
+
id-token: write
|
|
80
|
+
|
|
81
|
+
steps:
|
|
82
|
+
- name: Download artifacts
|
|
83
|
+
uses: actions/download-artifact@v4
|
|
84
|
+
with:
|
|
85
|
+
name: dist
|
|
86
|
+
path: dist/
|
|
87
|
+
|
|
88
|
+
- name: Publish to PyPI
|
|
89
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
90
|
+
with:
|
|
91
|
+
packages-dir: dist/
|
|
92
|
+
verbose: true
|
|
93
|
+
|
|
94
|
+
publish-test-pypi:
|
|
95
|
+
name: Publish to Test PyPI
|
|
96
|
+
needs: [build, test]
|
|
97
|
+
runs-on: ubuntu-latest
|
|
98
|
+
if: github.event_name == 'workflow_dispatch'
|
|
99
|
+
|
|
100
|
+
environment:
|
|
101
|
+
name: testpypi
|
|
102
|
+
url: https://test.pypi.org/p/add-skills
|
|
103
|
+
|
|
104
|
+
permissions:
|
|
105
|
+
contents: read
|
|
106
|
+
id-token: write
|
|
107
|
+
|
|
108
|
+
steps:
|
|
109
|
+
- name: Download artifacts
|
|
110
|
+
uses: actions/download-artifact@v4
|
|
111
|
+
with:
|
|
112
|
+
name: dist
|
|
113
|
+
path: dist/
|
|
114
|
+
|
|
115
|
+
- name: Publish to Test PyPI
|
|
116
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
117
|
+
with:
|
|
118
|
+
repository-url: https://test.pypi.org/legacy/
|
|
119
|
+
packages-dir: dist/
|
|
120
|
+
verbose: true
|
|
121
|
+
|
|
122
|
+
create-release:
|
|
123
|
+
name: Create GitHub Release
|
|
124
|
+
needs: [build, test]
|
|
125
|
+
runs-on: ubuntu-latest
|
|
126
|
+
if: startsWith(github.ref, 'refs/tags/v')
|
|
127
|
+
|
|
128
|
+
permissions:
|
|
129
|
+
contents: write
|
|
130
|
+
|
|
131
|
+
steps:
|
|
132
|
+
- uses: actions/checkout@v4
|
|
133
|
+
|
|
134
|
+
- name: Download artifacts
|
|
135
|
+
uses: actions/download-artifact@v4
|
|
136
|
+
with:
|
|
137
|
+
name: dist
|
|
138
|
+
path: dist/
|
|
139
|
+
|
|
140
|
+
- name: Create Release
|
|
141
|
+
uses: softprops/action-gh-release@v1
|
|
142
|
+
with:
|
|
143
|
+
files: dist/*
|
|
144
|
+
generate_release_notes: true
|
|
145
|
+
draft: false
|
|
146
|
+
prerelease: false
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# Build output
|
|
2
|
+
/dist/
|
|
3
|
+
/build/
|
|
4
|
+
*.egg-info/
|
|
5
|
+
|
|
6
|
+
# IDE specific files
|
|
7
|
+
.idea/
|
|
8
|
+
*.swp
|
|
9
|
+
*.swo
|
|
10
|
+
*~
|
|
11
|
+
.vscode/
|
|
12
|
+
*.iml
|
|
13
|
+
|
|
14
|
+
# OS specific files
|
|
15
|
+
.DS_Store
|
|
16
|
+
Thumbs.db
|
|
17
|
+
|
|
18
|
+
# Test coverage
|
|
19
|
+
coverage.txt
|
|
20
|
+
coverage.html
|
|
21
|
+
*.prof
|
|
22
|
+
|
|
23
|
+
# Local Environment & config files
|
|
24
|
+
.env
|
|
25
|
+
.env.local
|
|
26
|
+
|
|
27
|
+
# Python
|
|
28
|
+
__pycache__/
|
|
29
|
+
*.py[cod]
|
|
30
|
+
*$py.class
|
|
31
|
+
.pytest_cache/
|
|
32
|
+
.mypy_cache/
|
|
33
|
+
|
|
34
|
+
# Python virtual environments
|
|
35
|
+
*_env/
|
|
36
|
+
venv/
|
|
37
|
+
.venv/
|
|
38
|
+
env/
|
|
39
|
+
|
|
40
|
+
# Temporary files
|
|
41
|
+
*.tmp
|
|
42
|
+
*.bak
|
|
43
|
+
*.log
|
|
44
|
+
|
|
45
|
+
# Claude Code setting
|
|
46
|
+
.claude/
|
|
47
|
+
|
|
48
|
+
# Internal documentation (sensitive/private)
|
|
49
|
+
AGENTS.md
|
|
50
|
+
CLAUDE.md
|
add_skills-0.0.2/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 DaisukeYoda
|
|
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.
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: add-skills
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: A tool for managing Claude Code skills
|
|
5
|
+
Author-email: DaisukeYoda <daisukeyoda@users.noreply.github.com>
|
|
6
|
+
Maintainer-email: DaisukeYoda <daisukeyoda@users.noreply.github.com>
|
|
7
|
+
License: MIT License
|
|
8
|
+
|
|
9
|
+
Copyright (c) 2025 DaisukeYoda
|
|
10
|
+
|
|
11
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
+
in the Software without restriction, including without limitation the rights
|
|
14
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
+
furnished to do so, subject to the following conditions:
|
|
17
|
+
|
|
18
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19
|
+
copies or substantial portions of the Software.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
+
SOFTWARE.
|
|
28
|
+
|
|
29
|
+
Project-URL: Homepage, https://github.com/ludo-technologies/add-skills
|
|
30
|
+
Project-URL: Repository, https://github.com/ludo-technologies/add-skills
|
|
31
|
+
Project-URL: Issues, https://github.com/ludo-technologies/add-skills/issues
|
|
32
|
+
Keywords: claude,claude-code,skills,cli,automation
|
|
33
|
+
Classifier: Development Status :: 3 - Alpha
|
|
34
|
+
Classifier: Environment :: Console
|
|
35
|
+
Classifier: Intended Audience :: Developers
|
|
36
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
37
|
+
Classifier: Operating System :: OS Independent
|
|
38
|
+
Classifier: Programming Language :: Python :: 3
|
|
39
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
40
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
41
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
42
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
43
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
44
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
45
|
+
Classifier: Typing :: Typed
|
|
46
|
+
Requires-Python: >=3.9
|
|
47
|
+
Description-Content-Type: text/markdown
|
|
48
|
+
License-File: LICENSE
|
|
49
|
+
Provides-Extra: dev
|
|
50
|
+
Requires-Dist: pytest>=6.0; extra == "dev"
|
|
51
|
+
Requires-Dist: build>=0.7.0; extra == "dev"
|
|
52
|
+
Requires-Dist: twine>=3.0.0; extra == "dev"
|
|
53
|
+
Dynamic: license-file
|
|
54
|
+
|
|
55
|
+
# add-skills
|
|
56
|
+
|
|
57
|
+
A tool for managing Claude Code skills.
|
|
58
|
+
|
|
59
|
+
## Installation
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
pip install add-skills
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## Usage
|
|
66
|
+
|
|
67
|
+
Coming soon.
|
|
68
|
+
|
|
69
|
+
## License
|
|
70
|
+
|
|
71
|
+
MIT
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=64", "setuptools_scm>=8", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "add-skills"
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
description = "A tool for managing Claude Code skills"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {file = "LICENSE"}
|
|
11
|
+
authors = [
|
|
12
|
+
{name = "DaisukeYoda", email = "daisukeyoda@users.noreply.github.com"}
|
|
13
|
+
]
|
|
14
|
+
maintainers = [
|
|
15
|
+
{name = "DaisukeYoda", email = "daisukeyoda@users.noreply.github.com"}
|
|
16
|
+
]
|
|
17
|
+
keywords = [
|
|
18
|
+
"claude",
|
|
19
|
+
"claude-code",
|
|
20
|
+
"skills",
|
|
21
|
+
"cli",
|
|
22
|
+
"automation"
|
|
23
|
+
]
|
|
24
|
+
classifiers = [
|
|
25
|
+
"Development Status :: 3 - Alpha",
|
|
26
|
+
"Environment :: Console",
|
|
27
|
+
"Intended Audience :: Developers",
|
|
28
|
+
"License :: OSI Approved :: MIT License",
|
|
29
|
+
"Operating System :: OS Independent",
|
|
30
|
+
"Programming Language :: Python :: 3",
|
|
31
|
+
"Programming Language :: Python :: 3.9",
|
|
32
|
+
"Programming Language :: Python :: 3.10",
|
|
33
|
+
"Programming Language :: Python :: 3.11",
|
|
34
|
+
"Programming Language :: Python :: 3.12",
|
|
35
|
+
"Programming Language :: Python :: 3.13",
|
|
36
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
37
|
+
"Typing :: Typed",
|
|
38
|
+
]
|
|
39
|
+
requires-python = ">=3.9"
|
|
40
|
+
dependencies = []
|
|
41
|
+
|
|
42
|
+
[project.optional-dependencies]
|
|
43
|
+
dev = [
|
|
44
|
+
"pytest>=6.0",
|
|
45
|
+
"build>=0.7.0",
|
|
46
|
+
"twine>=3.0.0",
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[project.scripts]
|
|
50
|
+
add-skills = "add_skills.__main__:main"
|
|
51
|
+
|
|
52
|
+
[project.urls]
|
|
53
|
+
Homepage = "https://github.com/ludo-technologies/add-skills"
|
|
54
|
+
Repository = "https://github.com/ludo-technologies/add-skills"
|
|
55
|
+
Issues = "https://github.com/ludo-technologies/add-skills/issues"
|
|
56
|
+
|
|
57
|
+
[tool.setuptools]
|
|
58
|
+
packages = ["add_skills"]
|
|
59
|
+
package-dir = {"" = "src"}
|
|
60
|
+
|
|
61
|
+
[tool.setuptools_scm]
|
|
62
|
+
# Default configuration - gets version from git tags
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: add-skills
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: A tool for managing Claude Code skills
|
|
5
|
+
Author-email: DaisukeYoda <daisukeyoda@users.noreply.github.com>
|
|
6
|
+
Maintainer-email: DaisukeYoda <daisukeyoda@users.noreply.github.com>
|
|
7
|
+
License: MIT License
|
|
8
|
+
|
|
9
|
+
Copyright (c) 2025 DaisukeYoda
|
|
10
|
+
|
|
11
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
+
in the Software without restriction, including without limitation the rights
|
|
14
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
+
furnished to do so, subject to the following conditions:
|
|
17
|
+
|
|
18
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19
|
+
copies or substantial portions of the Software.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
+
SOFTWARE.
|
|
28
|
+
|
|
29
|
+
Project-URL: Homepage, https://github.com/ludo-technologies/add-skills
|
|
30
|
+
Project-URL: Repository, https://github.com/ludo-technologies/add-skills
|
|
31
|
+
Project-URL: Issues, https://github.com/ludo-technologies/add-skills/issues
|
|
32
|
+
Keywords: claude,claude-code,skills,cli,automation
|
|
33
|
+
Classifier: Development Status :: 3 - Alpha
|
|
34
|
+
Classifier: Environment :: Console
|
|
35
|
+
Classifier: Intended Audience :: Developers
|
|
36
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
37
|
+
Classifier: Operating System :: OS Independent
|
|
38
|
+
Classifier: Programming Language :: Python :: 3
|
|
39
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
40
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
41
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
42
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
43
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
44
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
45
|
+
Classifier: Typing :: Typed
|
|
46
|
+
Requires-Python: >=3.9
|
|
47
|
+
Description-Content-Type: text/markdown
|
|
48
|
+
License-File: LICENSE
|
|
49
|
+
Provides-Extra: dev
|
|
50
|
+
Requires-Dist: pytest>=6.0; extra == "dev"
|
|
51
|
+
Requires-Dist: build>=0.7.0; extra == "dev"
|
|
52
|
+
Requires-Dist: twine>=3.0.0; extra == "dev"
|
|
53
|
+
Dynamic: license-file
|
|
54
|
+
|
|
55
|
+
# add-skills
|
|
56
|
+
|
|
57
|
+
A tool for managing Claude Code skills.
|
|
58
|
+
|
|
59
|
+
## Installation
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
pip install add-skills
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## Usage
|
|
66
|
+
|
|
67
|
+
Coming soon.
|
|
68
|
+
|
|
69
|
+
## License
|
|
70
|
+
|
|
71
|
+
MIT
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
.gitignore
|
|
2
|
+
LICENSE
|
|
3
|
+
README.md
|
|
4
|
+
pyproject.toml
|
|
5
|
+
.github/workflows/release.yml
|
|
6
|
+
src/add_skills/__init__.py
|
|
7
|
+
src/add_skills/__main__.py
|
|
8
|
+
src/add_skills.egg-info/PKG-INFO
|
|
9
|
+
src/add_skills.egg-info/SOURCES.txt
|
|
10
|
+
src/add_skills.egg-info/dependency_links.txt
|
|
11
|
+
src/add_skills.egg-info/entry_points.txt
|
|
12
|
+
src/add_skills.egg-info/requires.txt
|
|
13
|
+
src/add_skills.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
add_skills
|