- Hourly: $30.00 - $41.00
- Intermediate
- Est. time: 1 to 3 months, Not sure
Role Level: IC3 Role Title: Security Administrator II (US Contract) Reports to: Manager of Engineering Services Salary: $41/h Job Description The Security Administrator role supports BEMO managed service customers and internal teams by assisting in the implementation, management, and monitoring of security and compliance solutions across Microsoft 365 and hybrid environments. This role is focused on a security-centric customer base, and we are specifically seeking candidates with experience working in GCC High tenants. In this role, you will also have the opportunity to lead compliance frameworks, including SOC 2, ISO, and CMMC, by maintaining security and compliance requirements across regulated environments. The Security Administrator II IC3 will demonstrate the ability to conduct routine work with specialist and commercial knowledge in the following areas: • Microsoft 365 Security Administration • Azure • GRC Platforms • AI tools • Customer Service • Managed Services • Team Communication • Data Gathering and Analysis At BEMO, the Security Administrator IC3 competencies require: • Understanding of prioritization and time management of tasks • Building effective working relationships within the team and with peers • Demonstrates skill to influence other peers • Conducts complex tasks autonomously • Works on problems of moderate scope and uses multiple known practices and procedures to solve problems with the support of manager and peers • The ability to respond to customers’ security and compliance needs proactively and reactively in the alignment of BEMO’s products and service scope • Clear and open communicator with wider teams and stakeholders • Maintains transactional communication with customers or partners • Builds self-awareness about strengths and areas of development by being open to feedback from your manager and peers. • Consistently seeks to improve technical knowledge in the Microsoft technology and security areas Responsibilities & Primary Goals • Monitoring and Maintenance o Proactively secure Microsoft 365 and Azure environments o Monitor all security systems and provide advice on strategy and implementation for the customer base o Conduct security risk and vulnerability assessments on security package customers o Enforce data governance o Patch and vulnerability-managed life cycle o Implement updates programmatically on different security packages offered by BEMO o Send out customer communications on security improvements and maintenance • Automation and Implementation of Managed Service Solutions o Create and document repeatable processes through automation across our managed service maintenance activities o Manage internal projects, provide technical guidance o Must be comfortable performing multiple initiatives simultaneously in a fast-paced environment o Leverage AI and automation technologies to optimize processes, improve response times, and enhance overall managed service delivery • Cross-Group Collaboration and Support o Support the Customer Success team with customer-specific data for security scores and value realization efforts o Provide T1-T2 Team members support for tickets and issues relevant to managed service customers' security and compliance o Working with the BEMO IT Manager to align security policies and processes o Work collaboratively with delivery engineers, operations team members, customer success managers, support engineers, and our BEMO customers o Manage support queue during designated times • Managed Security o Triage: Working with our SOC team and Microsoft Sentinel, you will help filter the noise to prioritize incidents and alerts that matter to alleviate alert fatigue. o Investigate: Investigate and analyze the most critical incidents, and document progress and findings. You will be analyzing logs within M365 tools and Sentinel. o Respond: Contain and mitigate incidents faster with managed response and proactive remediation. o Prevent: Provide detailed recommendations and best practices to go beyond detection and response to prevent future attacks Requirements • Educational degree or diploma in Computer Science, Engineering, or the equivalent in proven experience • 2 + years of experience administrating, managing, and implementing Microsoft Azure and Microsoft 365 as an implementation, security, or support engineer. • Experience analyzing M365 usage data to identify issues and usage patterns • Strong critical thinking, analysis, and problem-solving skills • Strong competency in core professional skills, especially attention to detail, responsiveness, follow-through, and flexibility, with a high degree of emotional intelligence and tact • Ability to work independently and collaboratively with other internal teams when needed • Proven customer service experience with clear and consistent writing, presentation, and communication skills • Azure Cloud experience Specialized Knowledge or Skills Preferred • A Bachelor of Science or Engineering in Computer Science or a related field preferred • Other Microsoft certifications are preferred (AZ-500, SC-300, SC-400, etc.)
- Fixed price
- Expert
- Est. budget: $5,000.00
We are looking for an expert backend developer and automation engineer to extend an existing, production-grade Model Context Protocol (MCP) server and overhaul its orchestration layer. The headline correction for this project: the existing Lawfather MCP is to be retained and extended, not rebuilt. It already exposes deterministic, parameterized Playwright tools for every required county portal (District Clerk, HCSO, HCDAO) and a client database. Those backend tools are the reliable layer and are not the source of the instability this project exists to fix. The instability lives entirely in the orchestration layer — the model-driven layer that decides when and how to call the tools. The fix is to move deterministic control out of model-followed prose and into code, and to host the agent on an always-on machine with persistent memory. Core Project Principles • Extend, Don't Rebuild: Retain and extend the existing MCP; do not re-implement portal scrapers from scratch. • Code Over Prompts: Deterministic logic lives strictly in tool code, never in instructions the model must remember each session. • No Caller Loops: Batch operations must run to completion server-side. No operation may require the caller (model) to loop. • Agnostic Architecture: The system must remain model-agnostic and host-agnostic. No single provider — Anthropic, OpenAI, Z.ai/GLM, or Nous — may be a hard dependency. • Privilege First: Client data stays on owned hardware; the model is never the gatekeeper of which case a file belongs to. Existing Tool Inventory (To Be Inherited As-Is) The following tools already exist on the production MCP (containerized on a local Synology NAS) and are in daily use. Re-deriving their behavior is completely out of scope: • hcdc_get_docket: Court settings by date range + bar number (District Clerk). • hcdc_check_filings: Per case: standard defense filings present vs. missing. • hcdc_download_filings: Images-tab documents: bulk OR selective by filters; dest_subfolder; dry_run. Note: The parameterized download tools already cover most retrieval requests. "All filings," "this filing," "all subpoenas," "all resets," and "everything filed that day" are argument combinations on this tool, not separate features. • hcso_locate: Defendant custody location (facility / floor / pod) by SPN. • hcdao_grab_file: Download a single named file from the DA portal Files tab. • hcdao_download_discovery: Batch / delta discovery download from the DA portal. • hcdao_download_media_alert: Batch-download files listed in a 'New Media Available' portal email. • hcdao_case_summary: Scrape the Case Jacket quick summary / DAO narrative. • hcdao_plea_offer: Scrape current plea offer + full offer history. • hcdao_assigned_ada: Assigned ADA name / email / phone on a case. • lookup_client / list_clients: Resolve / list clients from the shared client database. Scoped Work (Paid Deliverables) 1. County Case Resolver (New Tool): Find a case from partial identifiers — any subset of (name, SPN, DOB, court, cause). Searches county systems (not just the local client DB). MUST return a ranked candidate list for the user to choose from; MUST NEVER auto-select. Wrong-defendant selection is a privilege failure, not a cosmetic bug. 2. Latest-Version Retrieval: Add scope=latest to hcdao_grab_file so 'most recent' selects the newest among supplements instead of the first match. 3. Async Transcribe Tool (Skill to Tool Promotion): Build a deterministic MCP tool using Gemini 3.1 Pro Preview for transcription, followed by a second pass that sends the transcript back with case context for cleanup (speaker mapping, defense-moment preamble). Long-running: implement as an async job (submit to job id to poll to fetch), NOT a synchronous call. 4. OCR Tool (Skill to Tool Promotion): Implement a readability check on ingest. If a document is not cleanly readable, FLAG it and ASK before sending to Gemini 3.1 Pro Preview for OCR. OCR must be gated and confirmed, never automatic. 5. Server-Side Batch Jobs: Move all chunk, loop, delta, and throttle logic OFF the caller and INTO the tool code. One call runs the batch to completion. 6. Queued HCDAO Fixes: For hcdao_download_discovery, add a portal_ids filter for targeted single-file pulls and a custom output-path / Drive-folder destination feature. Known Portal Quirks to Handle from Day One • hcdc_get_docket returns a broader date range than requested; results must be filtered to the requested window. • hcdao_download_discovery delta detection is blind to files organized into dated subfolders and must be explicitly handled. • Court DG7 does not surface through standard bar-number docket lookup and requires separate handling. • The Playwright Node.js driver subprocess can die silently while database tools respond; you must health-check the driver proactively. Orchestration, Host Layer, & Deployment Topology • Target Host: Hermes Agent (Nous Research) running as the persistent shell, providing persistent memory, the scheduler, and messaging surfaces. The MCP server will plug directly into it. • Agnostic LLM Routing: Default the agent/dispatch role to the most reliable tool-calling model (currently Claude Opus). Route bulk, non-critical generations (draft summaries, transcript cleanup) to a cheaper model (e.g., GLM-5.2). No provider may be hard-wired. Per-tool pins are allowed strictly for transcription/OCR tasks (pinned to Gemini 3.1 Pro Preview). • Memory Fencing: Hermes's persistent memory and learning loops must remain enabled to accumulate facts and user preferences. However, the agent must be strictly fenced from self-editing or rewriting its own mechanical execution paths (portals, downloads, filings), which must remain frozen in MCP tool code. • Hardware Deployment Infrastructure: • Always-on Brain: M1 Pro MacBook Pro (16 GB, mains-powered, lid open) running the Hermes gateway, Messages.app, and a BlueBubbles iMessage bridge. Must be fully automated via launchd services to handle headless crash recovery, auto-login, and sleep prevention (pmset autorestart / caffeinate). • Tools and Storage: Synology NAS (10.0.0.149) hosting the Lawfather MCP container, local client folders, and Drive sync. • Private Network: Tailscale mesh across all devices for secure remote access without open inbound ports. Acceptance Criteria for Sign-Off • No batch operation requires the caller to iterate. • The case resolver returns ranked candidates and never auto-selects. • Transcription runs seamlessly as an async two-stage job surviving multi-hour files without timing out. • OCR never fires automatically on low-readability files without gated confirmation. • Zero regressions on the existing MCP tool inventory. • The Resiliency Test: The full stack successfully restarts completely unattended after a host reboot or simulated power loss, and is reachable via iMessage/SMS immediately after. • Self-editing is fenced on mechanical download/filing paths. Hard Guardrails • Privilege: Downloads route strictly to the correct client folder; a wrong-case match is treated as a severe defect, not a warning. Privileged audio/discovery data stays on owned hardware where the chosen model allows. • Determinism: Repeatable steps live entirely in tool code, never in prompts. • Agnosticism: Model and host layers must remain fully swappable without modifying the core MCP tools. Before quoting "done," you will be expected to confirm live portal behaviors regarding District Clerk document labels, DA portal stable identifiers, and county search surfaces. How to Apply Please submit a proposal detailing your specific experience with MCP architectures, Playwright browser automation, and macOS/Docker DevOps automation. Anti-Bot Filtering: To prove you read this entire scope, please start your application with the phrase "PROTECT THE LAW" in all caps. Automated or generic copy-paste applications will be instantly rejected.
- Hourly
- Intermediate
- Est. time: 1 to 3 months, Less than 30 hrs/week
Hi, I'm Kasendy Benjamin. I'm building a small, focused team for a new consumer appliance project in the early prototype stage. The project involves developing a smart home device with a focus on energy efficiency and user experience. We need freelancers who can contribute to the development process, including design, testing, and integration. If you have experience in consumer electronics and are passionate about innovation, we'd love to hear from you.
- Hourly: $50.00 - $80.00
- Intermediate
- Est. time: 1 to 3 months, Less than 30 hrs/week
Role Overview You will serve as the lead mechanical engineer for Ondela LLC, a medical device startup developing a wearable pneumatic bilateral hip compression device for labor pain relief. Working directly with the founder, you will take an existing proof-of-concept prototype to a fully engineered, manufacturable design ready for CNC machining and 3D printing. Responsibilities • Review existing prototype and renders to fully understand the device architecture and mechanical requirements • Produce a complete CAD model of all components in SolidWorks or Fusion 360, including the curved lumbar support bar, telescoping adjustable arms, elbow brackets with cephalad tilt, bladder pad assemblies with pivot/rotation joint, and integrated control module housing • Design all pneumatic routing internally within the arm structure — no external tubing • Engineer the pad pivot and rotation joint mechanism for multi-axis angular adjustment • Ensure all components are designed for manufacturability (DFM) using aluminum, medical-grade TPU, and engineering plastics • Produce full assembly drawings with tolerances and fit specifications • Deliver a complete bill of materials with recommended materials, suppliers, and cost estimates • Prepare machine-ready files suitable for CNC machining and 3D printing • Produce at least one photorealistic KeyShot or equivalent render for marketing purposes • Communicate proactively with the founder throughout the project and flag any structural, safety, or manufacturability concerns
- Hourly: $30.00 - $60.00
- Intermediate
- Est. time: 1 to 3 months, Less than 30 hrs/week
We are seeking a skilled freelancer to design and develop a mechanical industrial product or prototype for a robotics system. The project involves creating detailed designs, preparing files for 3D printing/CNC/Sheet Metal Prototyping, and ensuring manufacturability through CAD and DFM processes. The ideal candidate should have experience in mechanical design and be able to deliver a functional prototype that meets industrial standards.
- Hourly: $20.00 - $30.00
- Intermediate
- Est. time: 1 to 3 months, Less than 30 hrs/week
We are seeking a skilled designer to create a prototype for our upcoming project. The ideal candidate will have a strong background in design principles and experience with prototype development. You will be responsible for translating our ideas into tangible designs, ensuring that the prototype meets functional and aesthetic requirements. Collaboration with our team will be essential to refine concepts and deliver an exceptional end product. If you are passionate about design and have the necessary expertise, we would love to hear from you!
- Hourly
- Intermediate
- Est. time: 3 to 6 months, Less than 30 hrs/week
# Premium Modular 1:64 Garage System – Product Development Project I am building a premium brand focused on highly realistic 1:64 scale garage systems and accessories for adult diecast collectors, customizers, photographers, and diorama builders. This is **not** intended to be a toy. My goal is to create the highest-quality modular garage ecosystem on the market. ## The Vision I want to develop a modular garage system that customers can continually expand over time. Think of it like LEGO meets high-end garage equipment, but with a realistic aesthetic instead of a toy aesthetic. Customers should be able to start with a single garage bay and later add additional service bays, paint booths, detailing areas, showrooms, offices, warehouses, parking lots, and other modules. The system should feel like a professional architectural product rather than a simple diorama. ## What I Need I am looking for an experienced Industrial Designer or Mechanical Product Designer who can help develop the product architecture from concept through manufacturing. This first phase is focused on concept development—not final engineering. ## Phase 1 Deliverables Please develop **three different modular garage concepts**. Each concept should include: * One-bay garage module * Floor system * Wall system * Roof system * Garage door concept * Expansion method * Connection mechanism between modules * Lighting integration concept * Mounting system for future accessories * Basic dimensions * Material recommendations * Manufacturing recommendations * Preliminary CAD models or concept renderings ## Design Goals The product should prioritize: * Premium appearance * Realistic proportions * High durability * Expandability * Ease of assembly * Hidden connection points * Minimal visible hardware * Manufacturability * Long product lifespan ## Future Product Ecosystem The garage system should eventually support products such as: * Paint booth * Detailing bay * Service bay * Showroom * Four-post lift * Two-post lift * Engine hoist * Toolboxes * Tire machines * Alignment rack * Wheel storage * Air compressor * Workbenches * Office module * Mezzanine * Warehouse * Parking lot * Display platforms * Lighting kits * Wall accessories * Signage The architecture should make it easy to continue releasing compatible products for many years. ## Manufacturing Please design with manufacturing in mind. I would like recommendations regarding: * Injection molding * Die-cast components * Aluminum * Steel * Acrylic * ABS * Polycarbonate * TPU/Rubber * Magnets * LEDs * Standard hardware I am interested in a design that can eventually be mass-produced while maintaining a premium feel. ## Inspiration I want the realism of professional architectural models combined with the functionality of real automotive shop equipment. The finished product should be something that makes collectors say: *"This is the garage I've always wanted."* ## What I'm Looking For Please include in your proposal: * Examples of mechanical or consumer products you've designed * Experience with modular systems * Experience designing products for manufacturing * CAD software used (SOLIDWORKS preferred) * Estimated timeline * Questions you have about the project * Suggestions you think would improve the product I value creativity and engineering equally. I don't simply want someone to model my ideas—I want a collaborative partner who can help create a product that stands out in the diecast hobby for years to come.
- Hourly: $40.00 - $90.00
- Intermediate
- Est. time: 1 to 3 months, Less than 30 hrs/week
MUST BE LOCAL TO SF BAY AREA Looking for help with a "works-like" prototype sensor mount to attach to the roof of heavy equipment cab. We'd like assistance creating the design and fabricating an initial version to test the concept. Does not need to be pretty - just minimally functional. We prefer to use off-the-shelf materials when possible. E.g. one idea would be to base the design off aluminum pre-drilled telescoping square tubing bolted together. There's still a fair amount of work in selecting other components and potentially designing and fabricating sensor mounts We can provide dimensions and details of mounting location and product details showing mounting screw locations for sensors such as cameras and GPS antennas. Ideally you act as single point of contact for any suppliers and fabricators and we reimburse you for expenses and your time in managing the process. Final deliverable would be the prototype mount and details needed to create it such as CAD files, BOM, etc. This could likely turn into a longer relationship building multiple iterations to handle different scenarios and improve the design based upon testing
- Fixed price
- Expert
- Est. budget: $250.00
I am seeking a product designer with strong CAD experience to help develop a novel consumer accessory concept. The project involves evaluating product architecture, developing manufacturable design concepts, and creating initial CAD models suitable for prototyping and manufacturing discussions. The product concept will be shared only with shortlisted candidates. Ideal candidates have experience with consumer products, accessories, injection-molded products, and bringing new physical products from concept to prototype. Deliverables: - Product architecture recommendation - Mounting system recommendation - Folding mechanism recommendation - Rough manufacturing cost estimate - Initial CAD assembly - STEP files - Basic renders
- Hourly: $80.00 - $170.00
- Expert
- Est. time: 1 to 3 months, Less than 30 hrs/week
We're building Dori (dorigoods.com), a design‑forward, stainless steel, plastic‑free water filter pitcher based in New York, and looking for a senior industrial/product designer to take it from strong concepts to a manufacturable product. The goal is a minimal, analog‑feeling “water processing appliance” that looks at home on a counter or in the fridge, with stainless plus light cream ceramic coating and high‑tech internals hidden from view. You’ll own the physical product design: refining the overall form language, handle/lid/spout details, ergonomics, and CMF, then translating that into clean CAD, exploded views, and documentation ready for prototyping and DFM. Ideal background is 5+ years designing physical consumer products (appliances, kitchenware, hardware), strong CAD skills (SolidWorks/Fusion/Rhino), experience with metal and coated finishes, and a portfolio that leans minimal, “less is more,” and quietly luxurious. A big plus is comfort working with manufacturers: helping identify and evaluate suitable metal/assembly partners, preparing design packages for quoting, and iterating based on factory feedback to balance design intent with real‑world constraints and COGS targets. This is a freelance/contract role with flexible hours; for the right senior‑level partner I’m comfortable with premium rates and potentially extending the work into packaging and broader product system. Let me know how you can help! Thanks