stackprep-pro 0.2.1__tar.gz → 0.2.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.
- stackprep_pro-0.2.2/.github/workflows/publish.yml +46 -0
- {stackprep_pro-0.2.1 → stackprep_pro-0.2.2}/PKG-INFO +1 -1
- {stackprep_pro-0.2.1 → stackprep_pro-0.2.2}/pyproject.toml +1 -1
- {stackprep_pro-0.2.1 → stackprep_pro-0.2.2}/src/stackprep_pro/server.py +1 -1
- stackprep_pro-0.2.1/.github/workflows/publish.yml +0 -48
- {stackprep_pro-0.2.1 → stackprep_pro-0.2.2}/.claude/settings.json +0 -0
- {stackprep_pro-0.2.1 → stackprep_pro-0.2.2}/.githooks/pre-commit +0 -0
- {stackprep_pro-0.2.1 → stackprep_pro-0.2.2}/.gitignore +0 -0
- {stackprep_pro-0.2.1 → stackprep_pro-0.2.2}/.mcp.json +0 -0
- {stackprep_pro-0.2.1 → stackprep_pro-0.2.2}/README.md +0 -0
- {stackprep_pro-0.2.1 → stackprep_pro-0.2.2}/scripts/bump_version.sh +0 -0
- {stackprep_pro-0.2.1 → stackprep_pro-0.2.2}/scripts/generate_readme.py +0 -0
- {stackprep_pro-0.2.1 → stackprep_pro-0.2.2}/src/stackprep_pro/__init__.py +0 -0
- {stackprep_pro-0.2.1 → stackprep_pro-0.2.2}/src/stackprep_pro/skills/certification.md +0 -0
- {stackprep_pro-0.2.1 → stackprep_pro-0.2.2}/src/stackprep_pro/skills/interview.md +0 -0
- {stackprep_pro-0.2.1 → stackprep_pro-0.2.2}/uv.lock +0 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
publish:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
environment: pypi
|
|
12
|
+
permissions:
|
|
13
|
+
id-token: write
|
|
14
|
+
contents: write
|
|
15
|
+
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/checkout@v5
|
|
18
|
+
with:
|
|
19
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
20
|
+
|
|
21
|
+
- name: Bump patch version in pyproject.toml
|
|
22
|
+
id: version
|
|
23
|
+
run: |
|
|
24
|
+
CURRENT=$(grep '^version' pyproject.toml | sed 's/version = "\(.*\)"/\1/')
|
|
25
|
+
IFS='.' read -r MAJOR MINOR PATCH <<< "$CURRENT"
|
|
26
|
+
NEW="$MAJOR.$MINOR.$((PATCH + 1))"
|
|
27
|
+
sed -i "s/^version = \"$CURRENT\"/version = \"$NEW\"/" pyproject.toml
|
|
28
|
+
echo "VERSION=$NEW" >> $GITHUB_OUTPUT
|
|
29
|
+
|
|
30
|
+
- name: Commit and tag new version
|
|
31
|
+
run: |
|
|
32
|
+
git config user.name "github-actions[bot]"
|
|
33
|
+
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
34
|
+
git add pyproject.toml
|
|
35
|
+
git commit -m "chore: bump version to ${{ steps.version.outputs.VERSION }}"
|
|
36
|
+
git tag "v${{ steps.version.outputs.VERSION }}"
|
|
37
|
+
git push origin main --follow-tags
|
|
38
|
+
|
|
39
|
+
- name: Install uv
|
|
40
|
+
uses: astral-sh/setup-uv@v5
|
|
41
|
+
|
|
42
|
+
- name: Build
|
|
43
|
+
run: uv build
|
|
44
|
+
|
|
45
|
+
- name: Publish to PyPI
|
|
46
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: stackprep-pro
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: stackprep-pro — interview & certification prep MCP server for any AI client
|
|
5
5
|
Project-URL: Homepage, https://github.com/youngpada1/stackprep-pro
|
|
6
6
|
Project-URL: Repository, https://github.com/youngpada1/stackprep-pro
|
|
@@ -81,7 +81,7 @@ def start_session(
|
|
|
81
81
|
|
|
82
82
|
Args:
|
|
83
83
|
mode: "interview" or "certification"
|
|
84
|
-
cert_name: For certification mode — the exam name (e.g. "AWS SAA-C03")
|
|
84
|
+
cert_name: For certification mode — the exam name exactly as the user typed it (e.g. "AWS SAA-C03"). NEVER modify, correct, or substitute the cert name — use the user's exact input verbatim.
|
|
85
85
|
cv: For interview mode — the user's CV/resume text
|
|
86
86
|
jd: For interview mode — the job description text
|
|
87
87
|
extra_topics: Optional comma-separated extra topics to focus on
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
name: Publish to PyPI
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- main
|
|
7
|
-
|
|
8
|
-
jobs:
|
|
9
|
-
publish:
|
|
10
|
-
runs-on: ubuntu-latest
|
|
11
|
-
environment: pypi
|
|
12
|
-
permissions:
|
|
13
|
-
id-token: write
|
|
14
|
-
contents: write
|
|
15
|
-
|
|
16
|
-
steps:
|
|
17
|
-
- uses: actions/checkout@v4
|
|
18
|
-
|
|
19
|
-
- name: Get version from pyproject.toml
|
|
20
|
-
id: version
|
|
21
|
-
run: echo "VERSION=$(grep '^version' pyproject.toml | sed 's/version = \"\(.*\)\"/\1/')" >> $GITHUB_OUTPUT
|
|
22
|
-
|
|
23
|
-
- name: Check if tag already exists
|
|
24
|
-
id: tag_check
|
|
25
|
-
run: |
|
|
26
|
-
if git ls-remote --tags origin "refs/tags/v${{ steps.version.outputs.VERSION }}" | grep -q .; then
|
|
27
|
-
echo "EXISTS=true" >> $GITHUB_OUTPUT
|
|
28
|
-
else
|
|
29
|
-
echo "EXISTS=false" >> $GITHUB_OUTPUT
|
|
30
|
-
fi
|
|
31
|
-
|
|
32
|
-
- name: Create and push tag
|
|
33
|
-
if: steps.tag_check.outputs.EXISTS == 'false'
|
|
34
|
-
run: |
|
|
35
|
-
git tag "v${{ steps.version.outputs.VERSION }}"
|
|
36
|
-
git push origin "v${{ steps.version.outputs.VERSION }}"
|
|
37
|
-
|
|
38
|
-
- name: Install uv
|
|
39
|
-
if: steps.tag_check.outputs.EXISTS == 'false'
|
|
40
|
-
uses: astral-sh/setup-uv@v4
|
|
41
|
-
|
|
42
|
-
- name: Build
|
|
43
|
-
if: steps.tag_check.outputs.EXISTS == 'false'
|
|
44
|
-
run: uv build
|
|
45
|
-
|
|
46
|
-
- name: Publish to PyPI
|
|
47
|
-
if: steps.tag_check.outputs.EXISTS == 'false'
|
|
48
|
-
uses: pypa/gh-action-pypi-publish@release/v1
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|