blast-search — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited blast-search (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Run NCBI BLAST+ searches inside the BioClaw container.
| Input | Database | Program |
|---|---|---|
| Nucleotide query | Nucleotide DB | blastn |
| Protein query | Protein DB | blastp |
| Nucleotide query | Protein DB | blastx |
| Protein query | Nucleotide DB | tblastn |
# Create query file
cat > /tmp/query.fa << 'EOF'
>query_sequence
ATGCGATCGATCGATCG...
EOF
# Create subject file (if user provides reference)
cat > /tmp/subject.fa << 'EOF'
>reference
ATGCGATCGATCGATCG...
EOF
# Run BLAST
blastn -query /tmp/query.fa -subject /tmp/subject.fa -outfmt 6 -evalue 1e-5Use BioPython's NCBIWWW module:
from Bio.Blast import NCBIWWW, NCBIXML
from Bio import SeqIO
# Read sequence
sequence = "ATGCGATCGATCGATCG..."
# Run remote BLAST
result_handle = NCBIWWW.qblast("blastn", "nt", sequence)
blast_records = NCBIXML.parse(result_handle)
for record in blast_records:
for alignment in record.alignments[:10]:
print(f"Title: {alignment.title}")
for hsp in alignment.hsps:
print(f" Score: {hsp.score}, E-value: {hsp.expect}")
print(f" Identity: {hsp.identities}/{hsp.align_length} ({hsp.identities/hsp.align_length*100:.1f}%)")Present results in a clear table:
*BLAST Results (top 10 hits)*
• Hit 1: Homo sapiens TP53 gene (98.5% identity, E=1e-45)
• Hit 2: Mus musculus Trp53 gene (89.2% identity, E=1e-38)
...After showing results, suggest:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.