The System Security Plan (SSP) workflow in Judge API is a sophisticated multi-stage pipeline that generates, transforms, and stores OSCAL-compliant SSP documents. This workflow leverages native Dapr activities for better resource isolation, error handling, and reliability.
This command is used to instruct Claude to generate GitHub issues in the specific house style and structure used by TestifySec. It is optimized for creating clean, actionable, well-structured GitHub issues for engineering planning, with consistent formatting across feat, fix, chore, docs, and epic types.
create-github-issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| PROJECT_NAME=${PWD#"${PWD%/*/*}/"} | |
| CONTAINER_NAME=${PROJECT_NAME//\//_} | |
| docker run -it --rm \ | |
| -v $PWD:/workspace \ | |
| -v /var/run/docker.sock:/var/run/docker.sock \ | |
| -v ~/.ssh:/home/me/.ssh \ | |
| -v ~/.tmux/ressurect/${PROJECT_NAME}:/home/me/.tmux/resurrect \ | |
| -e HOST_PATH=$PWD \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Task: Show Customer Cells with the following behaviors: | |
| // - Customer Name as Cell Title | |
| // - Customer Address as Cell Subtitle | |
| // - Customer Logo as Cell Image | |
| // - Implement Swipe action to delete customers | |
| public class MyEZTableViewSource : EZTableViewSource<EZRow> | |
| { | |
| List<Customer> _customers; | |