Install
$ agentstack add skill-abrahamvallez-skills-1on1-coach ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
1on1 Meeting Analyzer
Analyzes a 1on1 transcript and produces three output files using portable prompts in ./references/.
When to Use
- Processing a 1on1 meeting transcript
- Generating a shareable summary for the team member
- Creating private coaching material for the manager
Procedure
Step 1 — Read the transcript
Read the transcript file the user indicated. If no file was specified, ask for the path. Verify the file exists and has content. If it is empty or missing, inform the user and stop.
Step 2 — Extract metadata
From the transcript content, extract:
- Meeting date: look for an explicit date in the text or filename. If not found, use today's date in
YYYY-MM-DDformat. - Team member name: the participant who is NOT the manager.
- Manager name: the other participant (the one conducting the 1on1).
- Base filename:
{date}-{member-name-lowercase-no-spaces}(e.g.2026-04-28-carlos) - Output language: if the user specified a language (e.g.
lang=fr, "en español"), use that. Otherwise detect the transcript language automatically. - 1on1 type: classify the meeting using the type taxonomy in [base-rules.md](./references/base-rules.md). Examples:
check-in,career,unblocking,feedback,conflict,onboarding, ormixed: [type1] + [type2].
Step 3 — Ensure output folders exist
Make sure these folders exist, create them if needed:
outputs/shareable/outputs/coaching/
Step 4 — Generate the three outputs
For each output, load the corresponding reference prompt and apply it to the transcript:
| Output file | Reference prompt | Audience | |---|---|---| | outputs/shareable/{base-name}-summary.md | [prompt-summary.md](./references/prompt-summary.md) | Team member (shareable) | | outputs/coaching/{base-name}-analysis.md | [prompt-analysis.md](./references/prompt-analysis.md) | Manager (private) | | outputs/coaching/{base-name}-coaching.md | [prompt-coaching.md](./references/prompt-coaching.md) | Manager (private) |
> Output file names always use English suffixes (-summary, -analysis, -coaching) regardless of the output language. Only the file content is translated.
Apply shared formatting and language rules from [base-rules.md](./references/base-rules.md) to all three outputs.
Pass to each prompt:
- Full transcript content
- Extracted metadata (date, team member name, manager name, base filename)
- Resolved output language
- Detected
1on1-type
Step 5 — Confirm results
Report to the user:
✅ Analysis complete for the meeting on {date} with {member-name}. [Language: {language}]
Generated files:
📄 SHAREABLE (send to the team member):
outputs/shareable/{base-name}-summary.md
🔒 PRIVATE (Manager only):
outputs/coaching/{base-name}-analysis.md
outputs/coaching/{base-name}-coaching.md
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: abrahamvallez
- Source: abrahamvallez/skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.