CSP Compliance (complete): - Install Tailwind CSS v3 locally (24KB build) - Replace CDN with /css/tailwind.css in all HTML files - Extract all inline scripts to external JS files - Created 6 external JS files for demos & docs - All pages now comply with script-src 'self' Three Audience Paths (complete): - Created /researcher.html (academic/theoretical) - Created /implementer.html (practical integration) - Created /advocate.html (mission/values/community) - Updated homepage links to audience pages - Each path has dedicated nav, hero, resources, CTAs Files Modified (20): - 7 HTML files (CSP compliance) - 3 audience landing pages (new) - 6 external JS files (extracted) - package.json (Tailwind v3) - tailwind.config.js (new) - Built CSS (24KB minified) All resources CSP-compliant, all pages tested 200 OK 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
145 lines
5.9 KiB
JavaScript
145 lines
5.9 KiB
JavaScript
// Mock classification function (in production, this would call the API)
|
|
function classifyInstruction(text) {
|
|
// Simple pattern matching for demo purposes
|
|
const lower = text.toLowerCase();
|
|
|
|
let quadrant, persistence, temporal, verification, explicitness, reasoning;
|
|
|
|
// Detect quadrant
|
|
if (lower.includes('privacy') || lower.includes('values') || lower.includes('mission') || lower.includes('ethics')) {
|
|
quadrant = 'STRATEGIC';
|
|
persistence = 'HIGH';
|
|
temporal = 'PERMANENT';
|
|
verification = 'MANDATORY';
|
|
explicitness = 0.90;
|
|
reasoning = 'Contains values-related keywords indicating strategic importance';
|
|
} else if (lower.includes('port') || lower.includes('database') || lower.includes('mongodb') || lower.includes('server')) {
|
|
quadrant = 'SYSTEM';
|
|
persistence = 'HIGH';
|
|
temporal = 'PROJECT';
|
|
verification = 'MANDATORY';
|
|
explicitness = 0.85;
|
|
reasoning = 'Technical infrastructure configuration that must persist across project';
|
|
} else if (lower.includes('all') || lower.includes('must') || lower.includes('always') && (lower.includes('api') || lower.includes('format'))) {
|
|
quadrant = 'OPERATIONAL';
|
|
persistence = 'MEDIUM';
|
|
temporal = 'PROJECT';
|
|
verification = 'REQUIRED';
|
|
explicitness = 0.75;
|
|
reasoning = 'Standard operating procedure for consistent project implementation';
|
|
} else if (lower.includes('console.log') || lower.includes('debug') || lower.includes('here')) {
|
|
quadrant = 'TACTICAL';
|
|
persistence = 'LOW';
|
|
temporal = 'TASK';
|
|
verification = 'OPTIONAL';
|
|
explicitness = 0.70;
|
|
reasoning = 'Specific task-level instruction with limited temporal scope';
|
|
} else if (lower.includes('explore') || lower.includes('try') || lower.includes('different approaches')) {
|
|
quadrant = 'STOCHASTIC';
|
|
persistence = 'VARIABLE';
|
|
temporal = 'PHASE';
|
|
verification = 'NONE';
|
|
explicitness = 0.50;
|
|
reasoning = 'Exploratory directive with open-ended outcome';
|
|
} else {
|
|
quadrant = 'OPERATIONAL';
|
|
persistence = 'MEDIUM';
|
|
temporal = 'PROJECT';
|
|
verification = 'REQUIRED';
|
|
explicitness = 0.65;
|
|
reasoning = 'General instruction defaulting to operational classification';
|
|
}
|
|
|
|
return {
|
|
quadrant,
|
|
persistence,
|
|
temporal_scope: temporal,
|
|
verification_required: verification,
|
|
explicitness,
|
|
reasoning
|
|
};
|
|
}
|
|
|
|
// Description mappings
|
|
const descriptions = {
|
|
quadrant: {
|
|
STRATEGIC: 'Mission-critical decisions affecting values, privacy, or core principles',
|
|
OPERATIONAL: 'Standard procedures and conventions for consistent operation',
|
|
TACTICAL: 'Specific tasks with defined scope and completion criteria',
|
|
SYSTEM: 'Technical configuration and infrastructure settings',
|
|
STOCHASTIC: 'Exploratory, creative, or experimental work with variable outcomes'
|
|
},
|
|
persistence: {
|
|
HIGH: 'Must persist for entire project or permanently',
|
|
MEDIUM: 'Should persist for project phase or major component',
|
|
LOW: 'Applies to single task or session only',
|
|
VARIABLE: 'Depends on context and outcomes'
|
|
},
|
|
temporal: {
|
|
PERMANENT: 'Never expires, fundamental to project',
|
|
PROJECT: 'Entire project lifespan',
|
|
PHASE: 'Current development phase',
|
|
SESSION: 'Current session only',
|
|
TASK: 'Specific task only'
|
|
}
|
|
};
|
|
|
|
// Event listeners
|
|
document.getElementById('classify-btn').addEventListener('click', () => {
|
|
const input = document.getElementById('instruction-input').value.trim();
|
|
if (!input) return;
|
|
|
|
displayResults(classifyInstruction(input));
|
|
});
|
|
|
|
document.querySelectorAll('.example-btn').forEach(btn => {
|
|
btn.addEventListener('click', () => {
|
|
const example = btn.getAttribute('data-example');
|
|
document.getElementById('instruction-input').value = example;
|
|
displayResults(classifyInstruction(example));
|
|
});
|
|
});
|
|
|
|
function displayResults(result) {
|
|
// Show results container
|
|
document.getElementById('results-container').classList.remove('hidden');
|
|
document.getElementById('empty-state').classList.add('hidden');
|
|
|
|
// Quadrant
|
|
const quadrantEl = document.getElementById('result-quadrant');
|
|
quadrantEl.textContent = result.quadrant;
|
|
quadrantEl.className = `quadrant-badge quadrant-${result.quadrant}`;
|
|
document.getElementById('result-quadrant-desc').textContent = descriptions.quadrant[result.quadrant];
|
|
|
|
// Persistence
|
|
const persistenceEl = document.getElementById('result-persistence');
|
|
persistenceEl.textContent = result.persistence;
|
|
persistenceEl.className = `px-4 py-2 rounded-lg text-white font-semibold persistence-${result.persistence}`;
|
|
document.getElementById('result-persistence-desc').textContent = descriptions.persistence[result.persistence];
|
|
|
|
const persistenceFill = document.getElementById('persistence-fill');
|
|
const persistenceWidths = { HIGH: '100%', MEDIUM: '66%', LOW: '33%', VARIABLE: '50%' };
|
|
persistenceFill.style.width = persistenceWidths[result.persistence];
|
|
persistenceFill.className = `h-full transition-all duration-500 persistence-${result.persistence}`;
|
|
|
|
// Temporal Scope
|
|
document.getElementById('result-temporal').textContent = result.temporal_scope;
|
|
document.getElementById('result-temporal-desc').textContent = descriptions.temporal[result.temporal_scope];
|
|
|
|
// Verification
|
|
document.getElementById('result-verification').textContent = result.verification_required;
|
|
|
|
// Explicitness
|
|
document.getElementById('result-explicitness').textContent = result.explicitness.toFixed(2);
|
|
document.getElementById('explicitness-fill').style.width = (result.explicitness * 100) + '%';
|
|
|
|
const storageDecision = document.getElementById('storage-decision');
|
|
if (result.explicitness >= 0.6) {
|
|
storageDecision.innerHTML = '<strong class="text-green-600">✓ Will be stored</strong> in persistent instruction database';
|
|
} else {
|
|
storageDecision.innerHTML = '<strong class="text-orange-600">⚠ Too vague</strong> to store - needs more explicit phrasing';
|
|
}
|
|
|
|
// Reasoning
|
|
document.getElementById('result-reasoning').textContent = result.reasoning;
|
|
}
|