NI

Stevedore Supervisor

Permanent _ NDMT Lagos, Lagos, NG
Posted 3 weeks, 4 days ago 32 views 0 applications

Job Description

Here's a thinking process: 1. **Analyze User Input:** - User is acting as a job listing editor. - I receive raw scraped text from a job website. - Job is to extract ONLY actual job information, return clean, readable format. - Must REMOVE: social sharing, author bylines, "you may also like", navigation, comments, ads, cookie notices, duplicate text, category labels not part of job, stray numbers/formatting artifacts. - Must KEEP and STRUCTURE: job title, company name, location, job description/responsibilities, requirements/qualifications, how to apply, salary (if mentioned), deadline/closing date, job ID/reference number, contract type/level. - Return ONLY the cleaned job text. No commentary, no headers like "Here is the cleaned version", no markdown. Wait, the user actually gave me a specific task in the second part: "You receive a plain-text job description. Your ONLY job is to format it as clean semantic HTML." - Rules for HTML formatting: - Use `

` for intro paragraphs and general text - Use `

` for section headers (Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role) - Use `
  • ` for list items (duties, requirements, qualifications, skills) - No CSS classes, no inline styles, no `
    `s, no `
    ` tags - Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase - If text has no clear sections, just wrap paragraphs in `

    ` tags - Return ONLY the HTML. No markdown fences, no explanation, no preamble. Then they provide the job description text. I need to parse this text, identify sections, and convert it to the specified HTML format, preserving all content word-for-word, using the specified tags, no `
    `, no `

    `, no classes/inline styles. Let me carefully read and extract the structure from the provided job description text. Text provided: ```


    The Company


    We operate a free zone and port facilitating global trade with Africa.


    The Role


    The Stevedore Supervisor is responsible for supervising and coordinating stevedoring activities to ensure cargo loading and discharge operations are carried out safely, efficiently, and in compliance with approved stowage plans, HSE standards, and port regulations. The role provides direct oversight of stevedore gangs, ensures effective manpower deployment, and serves as the operational link between vessel officers and terminal management.


    Reporting To


    • Senior Operations Manager


    Responsibilities

    • Supervise daily stevedoring operations including cargo loading, discharge, lashing, unlashing, and tallying activities.
    • Computation and preparation of labour payments input information.
    • Enforce strict compliance with HSE policies, PPE usage, toolbox talks, and safe work procedures.
    • Oversee the labour operations on the vessels, giving safety related instructions, guides and advise to forestall minor and major accidents/incidents.
    • Work in conjunction with the shipping agents to meet the expected time of departure ETD target.
    • Take proper records of vessels operation analysis in regarding to IDLE TIME at berth.
    • Control the labour work force onboard and ashore and guide them against overloading of nets/slings to avoid accident and operational hazard.
    • Keep/report detailed operational events of the vessels regarding commencement and close of operation, number of manpower utilization, idle time and other related information.

     

    Requirements


    Qualifications & Experience:


    • Bachelor’s degree in Logistics, Port Operations, Maritime Studies or related field.
    • Minimum of 5 years’ experience in stevedoring or port operations, logistics planning, or maritime documentation.
    • Ability to supervise stevedores, assign gangs, and manage shifts.
    • Working knowledge of HSE standards, Experience enforcing PPE usage, toolbox talks, and incident reporting
    • Strong knowledge of loading, offloading, lashing, tallying.
    • Strong knowledge of cargo handling procedures and stevedoring operations.
    • Basic understanding of vessel stowage plans and cargo documentation.
    • Proficiency in MS Office Suite and operational documentation tools.
    • Excellent organizational, analytical, and communication skills.
    • Strong attention to detail and ability to manage multiple priorities in a fast-paced environment.
    ``` Wait, the user says: "Your ONLY job is to format it as clean semantic HTML." and gives rules. I need to output ONLY the HTML. No markdown fences, no explanation, no preamble. Let me process the text carefully. First, I should remove any `


    `, `


    `, and standalone `
    ` tags. The rules say: "No CSS classes, no inline styles, no
    s, no
    tags". So I must strip all `
    ` tags and any inline styles. Also `


    ` should probably be removed or just not included. The content inside `

    ` tags is what I need to reformat. Actually, the rule: "Use

    for introductory paragraphs and general text" and "If text has no clear sections, just wrap paragraphs in

    tags". Also "No ... no
    tags". So I should remove all `
    ` tags, and not use `
    ` in output. The input has `


    ` and `


    `. I need to ignore those empty/break lines, and just use `

    ` for text content, and `

    ` for section headers, and `
    • ` for lists. Let me parse the content: - The text starts with `


      ` - ignore. - `

      The Company

      ` - This is a heading/section. The rule says use `

      ` for section headers like Responsibilities, Qualifications, etc. "The Company" might be a section header. But the rule lists: "Use

      for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role)". "The Company" and "The Role" aren't in that exact list, but they are section headers. I think I should use `

      ` for them too, as they are section headers. The rule says "e.g.", so it's not exhaustive. I'll use `

      ` for any clear section header. - `

      We operate a free zone and port facilitating global trade with Africa.

      ` - introductory paragraph. Keep as `

      `. - `


      ` - ignore/remove br. - `

      The Role

      ` - section header. Use `

      `? Or maybe keep as `

      `? The rule says use `

      ` for section headers. I'll use `

      The Role

      `. But need to preserve content word-for-word. The original has `` tags for underline. The rule says "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". But HTML tags like ``, ``, `
      ` are not "content" per se, but formatting. The rule also says "No CSS classes, no inline styles, no
      s, no
      tags". So I need to strip ``, ``, `
      `, etc., but keep the text content. "Preserve ALL original content word-for-word" means the textual content must be exactly preserved, but HTML tags for formatting can be removed/normalized per the rules. I'll extract the text and re-wrap in the appropriate tags. Let me go through systematically, extract text content, and rebuild HTML. Structure identification: 1. "The Company" section heading + text "We operate a free zone and port facilitating global trade with Africa." 2. "The Role" section heading + text "The Stevedore Supervisor is responsible..." 3. "Reporting To" + list item "Senior Operations Manager" 4. "Responsibilities" section heading + list of 8 li items 5. "Requirements" section heading + sub-headings/paragraphs then lists of li items. Let me list all textual content in order, stripping tags: - "The Company" (heading) - "We operate a free zone and port facilitating global trade with Africa." - "The Role" (heading) - "The Stevedore Supervisor is responsible for supervising and coordinating stevedoring activities to ensure cargo loading and discharge operations are carried out safely, efficiently, and in compliance with approved stowage plans, HSE standards, and port regulations. The role provides direct oversight of stevedore gangs, ensures effective manpower deployment, and serves as the operational link between vessel officers and terminal management." - "Reporting To" - "Senior Operations Manager" (this is a list item, but under Reporting To) - "Responsibilities" (heading) - li: "Supervise daily stevedoring operations including cargo loading, discharge, lashing, unlashing, and tallying activities." - li: "Computation and preparation of labour payments input information." - li: "Enforce strict compliance with HSE policies, PPE usage, toolbox talks, and safe work procedures." - li: "Oversee the labour operations on the vessels, giving safety related instructions, guides and advise to forestall minor and major accidents/incidents." - li: "Work in conjunction with the shipping agents to meet the expected time of departure ETD target." - li: "Take proper records of vessels operation analysis in regarding to IDLE TIME at berth." - li: "Control the labour work force onboard and ashore and guide them against overloading of nets/slings to avoid accident and operational hazard." - li: "Keep/report detailed operational events of the vessels regarding commencement and close of operation, number of manpower utilization, idle time and other related information." - "Requirements" (heading) - "Qualifications & Experience:" (this appears as a paragraph, maybe sub-heading) - "Bachelor’s degree in Logistics, Port Operations, Maritime Studies or related field." - "Minimum of 5 years’ experience in stevedoring or port operations, logistics planning, or maritime documentation." - "Ability to supervise stevedores, assign gangs, and manage shifts." - "Working knowledge of HSE standards, Experience enforcing PPE usage, toolbox talks, and incident reporting" - "Strong knowledge of loading, offloading, lashing, tallying." - "Strong knowledge of cargo handling procedures and stevedoring operations." - "Basic understanding of vessel stowage plans and cargo documentation." - "Proficiency in MS Office Suite and operational documentation tools." - "Excellent organizational, analytical, and communication skills." - "Strong attention to detail and ability to manage multiple priorities in a fast-paced environment." Now, mapping to HTML rules: - Use `

      ` for introductory paragraphs and general text. - Use `

      ` for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role) - Use `
      • ` for list items (duties, requirements, qualifications, skills) - No CSS classes, no inline styles, no `
        `s, no `
        ` tags - Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase - If text has no clear sections, just wrap paragraphs in `

        ` tags I need to output ONLY the HTML. No markdown fences. So just raw HTML. Let me decide on the structure: ```

        The Company

        We operate a free zone and port facilitating global trade with Africa.

        The Role

        The Stevedore Supervisor is responsible for supervising and coordinating stevedoring activities to ensure cargo loading and discharge operations are carried out safely, efficiently, and in compliance with approved stowage plans, HSE standards, and port regulations. The role provides direct oversight of stevedore gangs, ensures effective manpower deployment, and serves as the operational link between vessel officers and terminal management.

        Reporting To

        • Senior Operations Manager

        Responsibilities

        • Supervise daily stevedoring operations including cargo loading, discharge, lashing, unlashing, and tallying activities.
        • Computation and preparation of labour payments input information.
        • Enforce strict compliance with HSE policies, PPE usage, toolbox talks, and safe work procedures.
        • Oversee the labour operations on the vessels, giving safety related instructions, guides and advise to forestall minor and major accidents/incidents.
        • Work in conjunction with the shipping agents to meet the expected time of departure ETD target.
        • Take proper records of vessels operation analysis in regarding to IDLE TIME at berth.
        • Control the labour work force onboard and ashore and guide them against overloading of nets/slings to avoid accident and operational hazard.
        • Keep/report detailed operational events of the vessels regarding commencement and close of operation, number of manpower utilization, idle time and other related information.

        Requirements

        Qualifications & Experience:

        • Bachelor’s degree in Logistics, Port Operations, Maritime Studies or related field.
        • Minimum of 5 years’ experience in stevedoring or port operations, logistics planning, or maritime documentation.
        • Ability to supervise stevedores, assign gangs, and manage shifts.
        • Working knowledge of HSE standards, Experience enforcing PPE usage, toolbox talks, and incident reporting
        • Strong knowledge of loading, offloading, lashing, tallying.
        • Strong knowledge of cargo handling procedures and stevedoring operations.
        • Basic understanding of vessel stowage plans and cargo documentation.
        • Proficiency in MS Office Suite and operational documentation tools.
        • Excellent organizational, analytical, and communication skills.
        • Strong attention to detail and ability to manage multiple priorities in a fast-paced environment.
        ``` Wait, the rule says: "Use

        for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role)". It doesn't explicitly say to use `

        ` for "The Company" or "The Role" or "Reporting To", but those are section headers. The rule says "e.g.", so I can use `

        ` for any section header. However, I need to be careful: "Preserve ALL original content word-for-word". Does that mean the text inside `

        ` should be exactly as original? The original has `The Company` which is "The Company" with underline. I'll just put "The Company" as text inside `

        `. Also, note: "No ... no
        tags". I must ensure no `
        ` appears in output. I'll remove all `
        ` and `` etc. Let me double-check the input for any `
        ` that might slip in. The input has `


        ` and `


        ` and `


        ` and `

         

        `. I'll completely ignore those. Also, the input has `

         

        ` which has a non-breaking space and br. I'll ignore. Now, about "Qualifications & Experience:" - it's inside a `

        ` tag in input: `

        Qualifications & Experience:

        `. I'll output `

        Qualifications & Experience:

        `? Wait, the rule says "Preserve ALL original content word-for-word". The original has `Qualifications & Experience:` which renders as "Qualifications

    Apply Now ↗

    How well do you match?

    Get an instant AI match score for this role — free, takes 3 minutes.

    Tailor your CV for this role

    The concierge rewrites your whole CV and writes a matching cover letter for this job — opens right here, nothing to paste.

    Tailor My CV to This Job ✍️

    Free cover letter for this job

    Upload your CV and get a tailored cover letter in seconds — free, no account needed.

    Generate a Cover Letter 📝

    Join Our Nigeria Channels

    Get free job alerts on your phone

MJC
ECHO
Your MJC Assistant

I'm ECHO, your MJC career assistant. I can help you find jobs, explore career tools, and connect with opportunities across Africa.

How was your experience with ECHO?