create-devops-task

Installation
SKILL.md

Add Tasks to Devops Board

Add one or more draft issues to the Bythen Devops project board and assign them to novahariyabythen.

Board: https://github.com/orgs/tanookiai/projects/2/views/1 Project ID: PVT_kwDOCH3vl84BQ7Kd Default assignee: novahariyabythen (U_kgDOCiMHIQ)

Task Template

Each task should follow this format:

Title:   <concise action phrase — verb + object, max ~60 chars>
Context: <one-liner on why, include any relevant URL> (optional)

Examples:

  • Request updated Replicate API key for dev testing
  • Create Gemini API key for agent-svc + context: https://aistudio.google.com/apikey
  • Request write access to Google Pub/Sub staging

Workflow

For each task the user provides:

  1. Parse the title (and optional context/body) from the user's request
  2. Create a draft issue on the board:
gh api graphql -f query='
mutation {
  addProjectV2DraftIssue(input: {
    projectId: "PVT_kwDOCH3vl84BQ7Kd"
    title: "<title>"
    body: "<context if any>"
  }) {
    projectItem { id }
  }
}'
  1. Capture the returned projectItem.id, then get the draft issue content ID:
gh api graphql -f query='
{
  organization(login: "tanookiai") {
    projectV2(number: 2) {
      items(last: 5) {
        nodes {
          id
          content {
            ... on DraftIssue { id title }
          }
        }
      }
    }
  }
}'
  1. Assign novahariyabythen using the draft issue content ID (DI_...):
gh api graphql -f query='
mutation {
  updateProjectV2DraftIssue(input: {
    draftIssueId: "<DI_...>"
    assigneeIds: ["U_kgDOCiMHIQ"]
  }) {
    draftIssue { title }
  }
}'

Run independent tasks in parallel where possible.

Output

After all tasks are created, confirm with a concise list:

Added to Devops board (https://github.com/orgs/tanookiai/projects/2/views/1):
- <task title> → assigned: novahariyabythen
- <task title> → assigned: novahariyabythen
Related skills

More from sultanfarizbythen/skills

Installs
5
First Seen
Apr 8, 2026