communication-testing-communication-skills

Sub-skill of communication: Testing Communication Skills.

5 stars

Best use case

communication-testing-communication-skills is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Sub-skill of communication: Testing Communication Skills.

Teams using communication-testing-communication-skills should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/testing-communication-skills/SKILL.md --create-dirs "https://raw.githubusercontent.com/vamseeachanta/workspace-hub/main/.agents/skills/_archive/business/communication/communication/testing-communication-skills/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/testing-communication-skills/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How communication-testing-communication-skills Compares

Feature / Agentcommunication-testing-communication-skillsStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Sub-skill of communication: Testing Communication Skills.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Testing Communication Skills

## Testing Communication Skills


Validate integrations without spamming channels:

```bash
#!/bin/bash
# test_communication.sh

# Test Slack connection
test_slack_auth() {
    response=$(curl -s "https://slack.com/api/auth.test" \
        -H "Authorization: Bearer $SLACK_BOT_TOKEN")

    ok=$(echo "$response" | jq -r '.ok')
    [ "$ok" = "true" ] && echo "PASS: Slack auth" || echo "FAIL: Slack auth - $(echo "$response" | jq -r '.error')"
}

# Test Teams connection
test_teams_auth() {
    response=$(curl -s "https://graph.microsoft.com/v1.0/me" \
        -H "Authorization: Bearer $TEAMS_ACCESS_TOKEN" \
        -o /dev/null -w "%{http_code}")

    [ "$response" = "200" ] && echo "PASS: Teams auth" || echo "FAIL: Teams auth - HTTP $response"
}

# Test Calendly connection

*See sub-skills for full details.*

Related Skills

extract-skills-from-hermes-sessions

5
from vamseeachanta/workspace-hub

Automatically analyze Codex session transcripts to identify and extract reusable skills using LLM analysis via OpenRouter

extract-skills-from-Codex-sessions

5
from vamseeachanta/workspace-hub

Automatically extract reusable skills from Codex session transcripts using LLM analysis and wire them into a Stop hook

webapp-testing

5
from vamseeachanta/workspace-hub

Web application testing toolkit using Playwright with Python. Use for verifying frontend functionality, debugging UI behavior, capturing browser screenshots, viewing browser logs, and automating web interactions.

testing-tdd-london

5
from vamseeachanta/workspace-hub

TDD London School (mockist) specialist for mock-driven, outside-in development. Use for behavior verification testing, contract-driven development, testing object collaborations, or when focusing on HOW objects interact rather than WHAT they contain.

testing-production

5
from vamseeachanta/workspace-hub

Production validation specialist ensuring applications are fully implemented and deployment-ready. Use to verify no mock/stub/fake implementations remain, validate against real databases and APIs, perform end-to-end testing with actual systems, and confirm production readiness.

improve-creating-new-skills

5
from vamseeachanta/workspace-hub

Sub-skill of improve: Creating New Skills (+3).

scientific-problem-selection-the-9-skills-overview

5
from vamseeachanta/workspace-hub

Sub-skill of scientific-problem-selection: The 9 Skills Overview.

github-actions-2-matrix-builds-for-cross-platform-testing

5
from vamseeachanta/workspace-hub

Sub-skill of github-actions: 2. Matrix Builds for Cross-Platform Testing.

orcaflex-static-debug-incremental-static-testing

5
from vamseeachanta/workspace-hub

Sub-skill of orcaflex-static-debug: Incremental Static Testing (+1).

doc-extraction-domain-sub-skills

5
from vamseeachanta/workspace-hub

Sub-skill of doc-extraction: Domain Sub-Skills.

webapp-testing-wait-for-dynamic-content

5
from vamseeachanta/workspace-hub

Sub-skill of webapp-testing: Wait for Dynamic Content (+5).

webapp-testing-static-html

5
from vamseeachanta/workspace-hub

Sub-skill of webapp-testing: Static HTML (+2).