# bitwise-media-group

> Open-source publisher. Listings imported from github.com/bitwise-media-group — credited to the original author with their license.

- **Listings:** 22
- **Total installs:** 0
- **Profile:** https://agentstack.voostack.com/s/bitwise-media-group
- **Website:** https://github.com/bitwise-media-group

## Published listings

- [Python Release](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-python-release) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-python-release`
  Release engineering for Python projects on uv — static versioning in pyproject.toml exposed via importlib.metadata, building the sdist and wheel with uv build, publishing to PyPI with uv publish via Trusted Publishing (OIDC, no token), tag-triggered GitHub Actions releases, CI running ruff/ty (or pyright)/pytest with SHA-pinned actions, and Dependabot coverage for uv and Actions. Use when releasi…
- [Demo Greeter](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-demo-greeter) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-demo-greeter`
  Render a friendly greeting banner for a named person into a GREETING.txt file. Use when asked to greet someone, write a welcome banner, or produce a personalized hello message saved to a file.
- [Python Testing](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-python-testing) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-python-testing`
  Python test authoring and review with pytest. Use when writing, adding, generating, or reviewing Python tests or unit tests for a function, module, or class; running pytest or a single test (the -k flag and other invocation flags for a Makefile or CI); parametrizing test cases into the table-driven pattern; setting up pytest fixtures or using the built-in tmp_path, monkeypatch, or capsys; choosin…
- [Actions Validate](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-actions-validate) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-actions-validate`
  Validate GitHub Actions workflow files locally with the actionlint then zizmor loop — actionlint for syntax, expression typing, and shellcheck of run steps; zizmor for security audits (expression injection, pull_request_target risks, unpinned actions, over-broad permissions). Use after editing any .github/workflows/*.yaml or action.yml, before committing workflow changes, when asked to lint, vali…
- [Go Style](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-go-style) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-go-style`
  Modern Go code style for stdlib-first programs — error wrapping with %w, sentinel errors, structured logging with log/slog, context threading, consumer-defined interfaces, nil-safe constructors, net/http servers with method-pattern routing, flag/env configuration for services, and cobra commands with viper configuration for CLI tools. Use when writing, reviewing, or refactoring any Go code (.go f…
- [Python Style](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-python-style) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-python-style`
  Modern Python house style: ruff is the single formatter and linter (replacing black, isort, flake8, pylint, pyupgrade) with an opinionated lint select set, plus idioms ruff cannot enforce — pathlib over os.path, module-level logging instead of print, specific chained exceptions, dataclasses for data, comprehensions and context managers. Use when formatting, linting, reviewing, or refactoring Pyth…
- [Actions Style](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-actions-style) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-actions-style`
  GitHub Actions workflow authoring conventions for readable, least-privilege workflows — .github/workflows/*.yaml layout, explicit scoped triggers, boolean logic with truthy/falsey expressions (if ${{ inputs.flag }} over == 'true'), concurrency, matrix builds, job outputs, and authoring reusable (workflow_call) and composite actions. Use when writing, reviewing, or refactoring GitHub Actions workf…
- [Actions Security](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-actions-security) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-actions-security`
  Security hardening for GitHub Actions workflows with a least-privilege posture — default-deny permissions ({} then minimal per-job scopes), SHA-pinning every third-party action, avoiding pull_request_target (and the safe trusted-event allowlist pattern when an elevated trigger is unavoidable), preventing expression/script injection via env indirection, explicit secrets (no inherit), and OIDC over…
- [Workflow Security Report](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-workflow-security-report) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-workflow-security-report`
  Triage a GitHub code-scanning (CodeQL) finding and produce an immutable Markdown triage report plus an index row, recommending remediation or dismissal, with a permalink pinned to the finding's commit SHA for every code reference so the report stays valid after the code moves. Use when triaging, dismissing, or remediating a code-scanning or CodeQL alert or finding; writing a security finding repo…
- [Workflow Commit](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-workflow-commit) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-workflow-commit`
  Commit changes the way a sandboxed agent must — write Conventional Commit messages and, because commit signing fails inside the sandbox, hand the real commit off through a generated commit.sh script. Inside a git worktree, commit normally (unsigned) and emit a commit.sh that re-signs the range; in the main checkout, do not commit at all — emit a commit.sh containing the exact git add and git comm…
- [Python Docs](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-python-docs) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-python-docs`
  Python documentation conventions — a Google-style docstring on every public module, class, and function, enforced by ruff's pydocstyle (D) rules with the google convention, and LLM-ready markdown CLI reference generation for Click or Typer tools via a reproducible docgen helper. Use when writing or reviewing docstrings, choosing or enforcing a docstring style, configuring ruff's D rules, deciding…
- [Terraform Validate](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-terraform-validate) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-terraform-validate`
  Format and validate Terraform code with the fmt / init / validate / tflint loop. Use after editing any .tf file, before committing Terraform changes, when asked to lint, format, validate, or check Terraform modules and root configurations, or when setting up tflint for a repository.
- [Go Release](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-go-release) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-go-release`
  Release engineering for Go projects — GoReleaser v2 with version ldflags into an internal/version package, SBOMs and multi-arch container images, tag-triggered GitHub Actions releases, CI running build/vet/test -race/govulncheck with SHA-pinned actions, and Dependabot coverage for gomod, tools, npm, and Actions. Use when adding GitHub Actions CI for a Go repository; writing a release workflow tha…
- [Terraform Module](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-terraform-module) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-terraform-module`
  Scaffold a new Terraform module with the canonical file layout — terraform.tf, main.tf, variables.tf, outputs.tf, README.md — and house style. Use when creating a new Terraform module, adding a module under a modules/ directory, or restructuring an existing module to the standard layout.
- [Go Docs](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-go-docs) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-go-docs`
  Go documentation conventions — a doc comment on every exported function, struct, type, and package, package comments in a dedicated doc.go for multi-file packages, godoc style (complete sentences beginning with the identifier's name), and LLM-ready CLI reference generation for cobra tools via a docgen helper built on cobra/doc. Use when writing or reviewing doc comments or godoc in Go code, addin…
- [Actions Reusable Workflows](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-actions-reusable-workflows) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-actions-reusable-workflows`
  Wire a repository to the bitwise-media-group/github-workflows reusable workflows — thin caller workflows for CI, CodeQL, release (release-please/GoReleaser), and the signature-preserving fast-forward /merge, merge-notice, and Dependabot auto-merge flows — plus the Makefile consumer contract, @v2 pinning, and FF Merge org setup. Use when setting up CI, CodeQL, releases, or auto-merge for a repo, a…
- [Workflow Skill Evals](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-workflow-skill-evals) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-workflow-skill-evals`
  Write the evolve evaluation suite for an agent skill: its triggers (triggers.json — Tier 1 activation tests) and behavioral evals (evals.json — Tier 2 task tests), under evals/<skill>/. Use when asked to generate, write, author, scaffold, or balance an eval suite, evals, or triggers for a skill; to create or edit a triggers.json or evals.json; to add behavioral evals to a SKILL.md; to add or reba…
- [Python Typing](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-python-typing) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-python-typing`
  Python static typing and type annotations, checked with a static type checker — ty (Astral) or pyright (Microsoft/Pylance). Use when adding, writing, or reviewing type hints or annotations on Python functions, methods, parameters, or return values; adding return type annotations across a module; fixing or resolving Python type errors; making a function or class generic with a type parameter; mode…
- [Terraform Style](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-terraform-style) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-terraform-style`
  Terraform/HCL style conventions for writing readable, reusable modules — collection types, resource naming, name_prefix, for_each toggles, variable and output grouping, null defaults, and canonical file layout. Use when writing, reviewing, or refactoring Terraform code (.tf files, modules, root configurations), or when deciding how to name resources, structure variables, or shape module outputs.
- [Python Project](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-python-project) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-python-project`
  Scaffold and modernize a Python project with uv. Sets up the src/ layout; a pyproject.toml on uv's native uv_build backend; runtime deps plus a dev dependency group (PEP 735) pinning developer tooling like ruff, ty (or pyright), and pytest; a committed uv.lock and pinned interpreter; a thin __main__ entry point; and a Makefile whose pr target runs the full local gate. Use when: creating a new Pyt…
- [Go Project](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-go-project) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-go-project`
  Scaffold a Go project with the canonical layout — cmd/ entrypoints with a thin main, private packages under internal/ (no pkg/), a separate tools module pinning Go developer CLIs (invoked directly via go tool -modfile=tools/go.mod, no GOBIN), Node tools pinned in package.json and run from node_modules/.bin, and a Makefile whose pr target runs the full local gate. Use when creating a new Go projec…
- [Go Testing](https://agentstack.voostack.com/l/skill-bitwise-media-group-skills-go-testing) — Skill · Free · security-reviewed — `agentstack add skill-bitwise-media-group-skills-go-testing`
  Use when writing, reviewing, or running Go tests in _test.go files — writing tests for a Go package, adding table-driven tests with t.Run subtests, testing a Go HTTP handler with httptest, adding a Go fuzz test or seed corpus, running or choosing go test flags (-race, -fuzz, -fuzztime), or deciding whether to use testify. Covers Go testing conventions: table-driven tests, plain stdlib assertions…

---
Seller on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Install any with `agentstack add <slug>`.
