Business Development Advisor - Garissa (17/8)
Inkomoko
Job Description
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
- Return ONLY the HTML. No markdown fences, no explanation, no preamble.
Important: "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase"
This is tricky because the input has a lot of text that might not be strictly "job listing" in the traditional sense (it has company info, values, etc.), but the rules say to preserve ALL original content word-for-word, and format as clean semantic HTML.
Let me look at the input text carefully. It starts with:
`
ABOUT INKOMOKO
Inkomoko supports entrepreneurs...
...` Actually, the input is already partially HTML? Wait, the user says: "Job description:" then pastes text. The text itself contains HTML tags like `...`. But the instruction says: "You receive a plain-text job description." But the content has HTML. Hmm.
Actually, looking at the prompt: The user says "You receive a plain-text job description." Then gives rules for HTML formatting. Then says "Job description:" and pastes text that appears to already have some HTML tags (`ABOUT INKOMOKO
` etc.). But maybe the pasted text is just plain text that happened to include some formatting from the source, but the tags are part of the text? Let me check the exact input:
```
ABOUT INKOMOKO
Inkomoko supports entrepreneurs to grow their businesses in order to improve livelihoods, create jobs, and help communities thrive.
In 2025, Inkomoko was listed by the Financial Times as the 8th fastest-growing company in Africa, supporting entrepreneurs across East and Central Africa to grow thriving businesses and build inclusive, resilient economies.
Founded in 2012, Inkomoko has worked with more than 100,000 entrepreneurs, including thousands of refugee entrepreneurs. Inkomoko provides a combination of training, consulting, access to finance, and market-level systems change. We are the largest investor to refugee entrepreneurs in Africa.
Inkomoko has 750+ staff in 40 offices across Chad, Ethiopia, Kenya, Rwanda, and South Sudan. Through Inkomoko’s 2030 strategic plan, we are adding 3 additional countries to serve more than 550,000 entrepreneurs and growing our $30M loan fund to impact 7M lives.
INKOMOKO VALUES
All staff at Inkomoko are connected to a shared set of organizational values:
- Purpose: be solutions-oriented, produce high-quality work, be a global leader.
- Achievement: push yourself to reach beyond what you previously thought possible.
- Improvement: be humble, engage in continuous growth through open & accurate feedback.
- Bravery: willing to take risks, create a safe space for others, be compassionate, inclusive.
- We Eat Goat: we celebrate success and support each other in hard times. We do this work together in the spirit of turikumwe, tuko pamoja, abren nen, urang babarengan.
Inkomoko reflects the communities we serve. Displaced persons and women are strongly encouraged to apply.
ABOUT THE OPPORTUNITY AND RESPONSIBILITIES
This position provides you with the opportunity to work directly with our entrepreneur clients in Inkomoko communities. As a member of the Business Growth Services team this role will contribute to the direct impact of Kenyan micro and small entrepreneurs to create thriving communities.
Specifically, the positions responsibilities include:
CLIENT MOBILIZATION (10%)
- Identify and enroll entrepreneurs based on the criteria to be enrolled in the program.
- Communicate program details to the community participants and confirm messages have been received.
- Represent Inkomoko as an Ambassador, outreach to existing structures in the communities.
- Advise on participants’ criteria to fit the culture and existing businesses in the community.
- Communicate to Inkomoko leadership about any challenge faced by participants during program implementation
TRAINING (40%)
- Ensure that all the entrepreneurs in the program are informed and attend all the training
- Organize all the training logistics: printing training materials, setting up the training venue, recording attendance, and starting the training on time
- Provide the training using Inkomoko training materials in Somali, Kiswahili and English
- Review and advise the Senior trainer on necessary changes to the training modules.
- Complete all the training programs in the due time and within budget.
BUSINESS CONSULTING & CLIENT RELATIONSHIP MANAGEMENT (40%)
- The intake process for entrepreneurs, including baseline M&E and tracking in our electronic system
- Conducting monthly site visits to assess business need and opportunity
- Generate cash flow statements and profitability analyses with clients
- Provide informed, strategic, and realistic advice to help the client meet their objectives, or shift their objectives towards better sustainability/profitability
- Ongoing site visits to provide real-time advising to solve business changes and grow businesses
- Connect clients to other Inkomoko services, including training and access to finance
- Keep up-to-date the clients’ business information in an accurate manner
- Assist investment colleagues with investment applications, due diligence, and clients’ credit Payment
COMMUNITY ACTIVITIES COORDINATION AND ADMINISTRATION (10%)
- Develop a good relationship with all partners and local authorities in Garissa.
- Provide weekly and monthly reports on time.
- Represent Inkomoko in Garissa.
- Work closely with the Senior Business Development Advisor and Senior Trainer to organize community activities
- Assist Inkomoko staff with all in-county communications.
- Make sure activities in the community are done in a timely manner.
- Assist the M&E team with surveys and data collection in Garissa.
- Provide administrative support as needed.
- Perform any other duties as assigned
```
Wait, the input already contains HTML tags (``, ``, ``, `- `, ``). But the instruction says: "You receive a plain-text job description. Your ONLY job is to format it as clean semantic HTML." and "Use
for introductory paragraphs and general text", "Use
for section headers", "Use - for list items", "No CSS classes, no inline styles, no s, no
tags", "Preserve ALL original content word-for-word".
There's a conflict: the input already has HTML, but the task is to reformat it as clean semantic HTML using specific tags. I need to interpret this as: take the textual content, ignore the existing HTML structure (or maybe clean it up), and re-output using the specified tags (,
, , - ), preserving all content word-for-word.
But wait: "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". This means I must keep every word, every punctuation, every HTML entity like ` `, `&`, etc. But the output should use
,
, , - .
Let me parse the input structure:
- It starts with `
ABOUT INKOMOKO
` - this is a paragraph with bold text.
- Then several `` paragraphs with content.
- Then `INKOMOKO VALUES ` followed by `
All staff...
` then `- Purpose:...` etc.
- Then `
Inkomoko reflects...
`
- Then `ABOUT THE OPPORTUNITY AND RESPONSIBILITIES
`
- Then more paragraphs and section headers like `CLIENT MOBILIZATION (10%)
` followed by `- ...
`
- And so on.
The rule says: "Use for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role)". So I need to identify section headers and wrap them in . But the input has various bolded headings like "CLIENT MOBILIZATION (10%)", "TRAINING (40%)", "BUSINESS CONSULTING & CLIENT RELATIONSHIP MANAGEMENT (40%)", "COMMUNITY ACTIVITIES COORDINATION AND ADMINISTRATION (10%)", also "ABOUT INKOMOKO", "INKOMOKO VALUES", "ABOUT THE OPPORTUNITY AND RESPONSIBILITIES".
I need to output clean semantic HTML. The rules say: "If text has no clear sections, just wrap paragraphs in
tags". But this text has clear sections.
Let me think about how to structure this. I need to go through the text, identify headings, paragraphs, lists, and re-markup using
,
, , - . I must preserve all content word-for-word. That means I cannot remove or change any text, including ` `, `&`, etc. But I need to output valid HTML with the specified tags.
Important: The input already has some HTML. Should I strip it and re-create? The instruction says "You receive a plain-text job description." but the provided text has HTML. I think the intent is that the raw text might have HTML artifacts, and I need to clean/format it as semantic HTML. Since the rules say "No CSS classes, no inline styles, no s, no
tags", I should avoid those. The input has ``, ``, ``, `- `, ``. I might need to keep the content but re-structure into the required tag set.
However, "Preserve ALL original content word-for-word" is key. I must not alter the text content. So I will keep all words, but change the tags to comply.
Let me outline a plan:
- Parse the text block by block.
- Identify paragraphs, headings, lists.
- Output using
,
, , - as specified.
- Ensure no ,
, inline styles, classes.
- Keep all content exactly as is.
Let me go through the input sequentially and decide how to mark up each part.
Input blocks (I'll list them as they appear, stripping the existing tags for analysis, but I'll need to output with new tags):
1. `ABOUT INKOMOKO
` -> This is a heading-like paragraph. Should I use ? The rule says for section headers like Responsibilities, Qualifications, etc. "ABOUT INKOMOKO" is a company description heading. Maybe it should be ? But the rule examples: "Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role". "About the Role" could match "ABOUT INKOMOKO". However, "ABOUT INKOMOKO" is more company info. I need to decide. 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 say these are the only headers, but examples. I think "ABOUT INKOMOKO" and "INKOMOKO VALUES" and "ABOUT THE OPPORTUNITY AND RESPONSIBILITIES" should be . But let's see.
Actually, re-reading: "Use for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role)". This implies that whenever there's a section header matching those patterns, use . I'll use for any bolded or clearly section-heading text.
2. `
Inkomoko supports entrepreneurs...
` ->
3. `
In 2025, Inkomoko was listed...
` ->
4. `
Founded in 2012...
` ->
5. `
Inkomoko has 750+ staff...
` ->
6. `
INKOMOKO VALUES
` -> This is a heading. Should be maybe? But then the values follow.
7. `
All staff at Inkomoko are connected to a shared set of organizational values:
` ->
8. `
- Purpose: be solutions-oriented...
...` -> These are list items. Rule: use - . The content inside
- includes bolded labels like "Purpose:". I need to preserve "Purpose:" etc. The rule says use
- for list items (duties, requirements, qualifications, skills). So I'll keep the
- structure, but ensure the tags are exactly
and - . The existing
and - are already there, but I need to make sure there are no nested ? Actually, the rule says "Use
- for list items". It doesn't forbid inside
- , but maybe I should keep the content as is, including ? Wait, "Preserve ALL original content word-for-word" - if I keep tags, that's adding tags not in the original? The original has `Purpose:`. If I strip all existing HTML and re-markup only with
,
, , - , then I need to decide how to handle the bold labels. The instruction says "No CSS classes, no inline styles, no s, no
tags". It doesn't say I can't use , but the allowed tags listed are only ,
, , - . Actually, it says "Use
for introductory paragraphs and general text - Use
for section headers - Use - for list items". It doesn't explicitly forbid , but the spirit might be to only use those tags. However, "Preserve ALL original content word-for-word" might mean I should keep the text content including any emphasis, but I can use if needed? Hmm.
Let me re-read carefully: "Rules: - Use
for introductory paragraphs and general text - Use
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 📝
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. Important: "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase" This is tricky because the input has a lot of text that might not be strictly "job listing" in the traditional sense (it has company info, values, etc.), but the rules say to preserve ALL original content word-for-word, and format as clean semantic HTML. Let me look at the input text carefully. It starts with: `
ABOUT INKOMOKO
Inkomoko supports entrepreneurs...
...` Actually, the input is already partially HTML? Wait, the user says: "Job description:" then pastes text. The text itself contains HTML tags like `...`. But the instruction says: "You receive a plain-text job description." But the content has HTML. Hmm.
Actually, looking at the prompt: The user says "You receive a plain-text job description." Then gives rules for HTML formatting. Then says "Job description:" and pastes text that appears to already have some HTML tags (` ABOUT INKOMOKO ABOUT INKOMOKO Inkomoko supports entrepreneurs to grow their businesses in order to improve livelihoods, create jobs, and help communities thrive. In 2025, Inkomoko was listed by the Financial Times as the 8th fastest-growing company in Africa, supporting entrepreneurs across East and Central Africa to grow thriving businesses and build inclusive, resilient economies. Founded in 2012, Inkomoko has worked with more than 100,000 entrepreneurs, including thousands of refugee entrepreneurs. Inkomoko provides a combination of training, consulting, access to finance, and market-level systems change. We are the largest investor to refugee entrepreneurs in Africa. Inkomoko has 750+ staff in 40 offices across Chad, Ethiopia, Kenya, Rwanda, and South Sudan. Through Inkomoko’s 2030 strategic plan, we are adding 3 additional countries to serve more than 550,000 entrepreneurs and growing our $30M loan fund to impact 7M lives. INKOMOKO VALUES All staff at Inkomoko are connected to a shared set of organizational values: Inkomoko reflects the communities we serve. Displaced persons and women are strongly encouraged to apply. ABOUT THE OPPORTUNITY AND RESPONSIBILITIES This position provides you with the opportunity to work directly with our entrepreneur clients in Inkomoko communities. As a member of the Business Growth Services team this role will contribute to the direct impact of Kenyan micro and small entrepreneurs to create thriving communities. Specifically, the positions responsibilities include: CLIENT MOBILIZATION (10%) TRAINING (40%) BUSINESS CONSULTING & CLIENT RELATIONSHIP MANAGEMENT (40%) COMMUNITY ACTIVITIES COORDINATION AND ADMINISTRATION (10%) `, ``, ` for introductory paragraphs and general text", "Use , , ABOUT INKOMOKO ` paragraphs with content.
- Then `INKOMOKO VALUES ` followed by ` All staff... Inkomoko reflects... ABOUT THE OPPORTUNITY AND RESPONSIBILITIES CLIENT MOBILIZATION (10%) tags". But this text has clear sections.
Let me think about how to structure this. I need to go through the text, identify headings, paragraphs, lists, and re-markup using , `, ``, ` , ABOUT INKOMOKO Inkomoko supports entrepreneurs...
3. ` In 2025, Inkomoko was listed...
4. ` Founded in 2012...
5. ` Inkomoko has 750+ staff...
6. ` INKOMOKO VALUES All staff at Inkomoko are connected to a shared set of organizational values:
8. ` , , for introductory paragraphs and general text - Use for introductory paragraphs and general text - Use Get an instant AI match score for this role — free, takes 3 minutes. The concierge rewrites your whole CV and writes a matching cover letter for this job — opens right here, nothing to paste. Upload your CV and get a tailored cover letter in seconds — free, no account needed.
```
Wait, the input already contains HTML tags (``, `
for section headers", "Use
tags", "Preserve ALL original content word-for-word".
There's a conflict: the input already has HTML, but the task is to reformat it as clean semantic HTML using specific tags. I need to interpret this as: take the textual content, ignore the existing HTML structure (or maybe clean it up), and re-output using the specified tags (,
,
,
,
`
- And so on.
The rule says: "Use for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role)". So I need to identify section headers and wrap them in
. But the input has various bolded headings like "CLIENT MOBILIZATION (10%)", "TRAINING (40%)", "BUSINESS CONSULTING & CLIENT RELATIONSHIP MANAGEMENT (40%)", "COMMUNITY ACTIVITIES COORDINATION AND ADMINISTRATION (10%)", also "ABOUT INKOMOKO", "INKOMOKO VALUES", "ABOUT THE OPPORTUNITY AND RESPONSIBILITIES".
I need to output clean semantic HTML. The rules say: "If text has no clear sections, just wrap paragraphs in
,
,
tags", I should avoid those. The input has ``, `
,
,
, inline styles, classes.
- Keep all content exactly as is.
Let me go through the input sequentially and decide how to mark up each part.
Input blocks (I'll list them as they appear, stripping the existing tags for analysis, but I'll need to output with new tags):
1. `? The rule says
for section headers like Responsibilities, Qualifications, etc. "ABOUT INKOMOKO" is a company description heading. Maybe it should be
? But the rule examples: "Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role". "About the Role" could match "ABOUT INKOMOKO". However, "ABOUT INKOMOKO" is more company info. I need to decide. 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 say these are the only headers, but examples. I think "ABOUT INKOMOKO" and "INKOMOKO VALUES" and "ABOUT THE OPPORTUNITY AND RESPONSIBILITIES" should be
. But let's see.
Actually, re-reading: "Use
for section headers (e.g. Responsibilities, Qualifications, Requirements, Education, Experience, Skills, How to Apply, Key Duties, About the Role)". This implies that whenever there's a section header matching those patterns, use
. I'll use
for any bolded or clearly section-heading text.
2. `
maybe? But then the values follow.
7. `
and
and
,
,
tags". It doesn't say I can't use , but the allowed tags listed are only ,
,
for section headers - Use
How well do you match?
Tailor your CV for this role
Free cover letter for this job
Let jobs find you
Leave your email and our AI matches you to new jobs across 24 African markets — free. You wait for the call.
Add your CV for real matches
Upload your CV and we score every new job against your real experience — only strong matches reach your inbox. Optional, but it makes your matches far sharper.
You're in.
We'll email you the moment a job matches your profile. Check your inbox for a welcome from My Job Concierge.
I'm ECHO, your MJC career assistant. I can help you find jobs, explore career tools, and connect with opportunities across Africa.