ms-ai-architect/tests/test-cost-output.sh
Kjell Tore Guttormsen baa2d0220b feat(ultraplan-local): v1.6.0 — /ultraresearch-local deep research command
Add /ultraresearch-local for structured research combining local codebase
analysis with external knowledge via parallel agent swarms. Produces research
briefs with triangulation, confidence ratings, and source quality assessment.

New command: /ultraresearch-local with modes --quick, --local, --external, --fg.
New agents: research-orchestrator (opus), docs-researcher, community-researcher,
security-researcher, contrarian-researcher, gemini-bridge (all sonnet).
New template: research-brief-template.md.

Integration: --research flag in /ultraplan-local accepts pre-built research
briefs (up to 3), enriches the interview and exploration phases. Planning
orchestrator cross-references brief findings during synthesis.

Design principle: Context Engineering — right information to right agent at
right time. Research briefs are structured artifacts in the pipeline:
ultraresearch → brief → ultraplan --research → plan → ultraexecute.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-08 08:58:35 +02:00

39 lines
1.4 KiB
Bash
Executable file

#!/bin/bash
# test-cost-output.sh — Validate cost-estimation-agent output structure
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
source "$SCRIPT_DIR/lib/e2e-helpers.sh"
FIXTURE="$SCRIPT_DIR/fixtures/cost-estimation/fixture.md"
if [ ! -f "$FIXTURE" ]; then
echo "ERROR: Fixture not found: $FIXTURE"
echo "Run: bash tests/capture-fixture.sh to generate fixtures"
exit 1
fi
init_suite "Cost Estimation Agent"
# Structure checks
assert_has_section "$FIXTURE" "Kostnad" "Has cost section header"
assert_has_section "$FIXTURE" "TCO" "Has TCO section"
assert_has_section "$FIXTURE" "Konfidens" "Has confidence grading section"
assert_has_section "$FIXTURE" "Gevinst" "Has benefit realization section"
# Content quality
assert_min_lines "$FIXTURE" 30 "Minimum 30 lines"
assert_min_tables "$FIXTURE" 2 "Minimum 2 tables (TCO, confidence)"
assert_has_nok_amounts "$FIXTURE" 3 "At least 3 NOK amounts"
# Encoding
assert_encoding_ok "$FIXTURE" "UTF-8 encoding valid"
assert_no_ascii_approximation "$FIXTURE" "No ASCII approximation of Norwegian chars"
# Domain-specific
assert_matches_pattern "$FIXTURE" "(Alt|Alternativ)\s*[0-9]" "References numbered alternatives"
assert_matches_pattern "$FIXTURE" "(Etablering|etablering)" "Has establishment cost section"
assert_matches_pattern "$FIXTURE" "(drift|Drift)" "Has operational cost section"
assert_matches_pattern "$FIXTURE" "(MCP-verifisert|Verifisert|verifisert)" "Has verification markers"
print_summary