Personal branding poster
Generate a personal branding poster from one portrait photo and one PDF resume by running the bundled FastAPI and Python pipeline in this repository, then return the poster image plus metadata in the conversation.From its SKILL.md
npx -y skills add ce-dric/personal-branding-posterAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.6 KB, 312 tokens by cl100k_base, as published. Nobody here has run it
Personal Branding Poster
Use this skill when the user wants you to generate a poster from:
- 1 portrait photo (
jpg,jpeg,png) - 1 resume PDF (
pdf) - or the built-in sample inputs for a demo run
Default Behavior
When the user supplies the input files, run:
python scripts/run_branding_poster.py \
--image /path/to/photo.jpg \
--resume /path/to/resume.pdf \
--output-dir output
If the user asks for a sample result or demo output, run:
python scripts/run_branding_poster.py --sample --output-dir output
The script should:
- Create a local virtual environment if needed.
- Install the repository requirements if needed.
- Run the bundled CLI generator.
- Return the generated poster and metadata paths in chat.
Response Format
After generation finishes, answer with:
- a short success summary
- the absolute path to the poster
- the absolute path to the metadata JSON
- an inline local image preview using Markdown
- the generated summary and hashtags
Notes
- This repository is both the app and the skill bundle.
- Prefer
scripts/run_branding_poster.pyfor execution so the environment is prepared consistently. - If the user asks for a sample poster, prefer
--sampleinstead of asking for files. - If the user asks for code changes or customization, edit this repository directly rather than creating another copy.
What ships with it: 26 files
1591.7 KB alongside SKILL.md, 14 of them executable
agents/
- openai.yaml340 B
app/
- __init__.pyruns50 B
- main.pyruns1.2 KB
- models/__init__.pyruns31 B
- models/schemas.pyruns839 B
- routes/__init__.pyruns18 B
- routes/poster.pyruns1.5 KB
- services/hashtag_generator.pyruns3.7 KB
- services/image_processor.pyruns4.1 KB
- services/__init__.pyruns43 B
- services/pipeline.pyruns2.5 KB
- services/poster_generator.pyruns6.4 KB
- services/resume_parser.pyruns7.2 KB
assets/
- readme-overview.png424.9 KB
sample_inputs/
- lenna_resume_sample.md1.2 KB
- lenna_resume_sample.pdf6.9 KB
- lenna_test_image.png462.7 KB
sample_output/
scripts/
- run_branding_poster.pyruns4.1 KB
tests/
- test_hashtag_generator.pyruns674 B
- .gitignore339 B
- pytest.ini24 B
- README.ko.md3.3 KB
- README.md3.0 KB
- requirements.txt193 B